Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,390
总 Skills
87.2M
总安装量
2,570
贡献者
# Skill 仓库 描述 安装量
1501 find-keywords calm-north/seojuice-skills
Find Keywords Build a prioritized keyword universe from a seed topic using intent mapping, difficulty-adjusted opportunity scoring, and cluster seeding. Before You Start Gather this context (ask if not provided): Domain and goal. What site is this for? What is the primary conversion (leads, sign-ups, sales, traffic)? Seed topic. The core subject area — not a single keyword but the business category (e.g., "project management software", "personal injury law Chicago"). Existing rankings. Does the ...
6.7K
1502 import-infrastructure-as-code github/awesome-copilot
Import Infrastructure as Code (Azure -> Terraform with AVM) Convert existing Azure infrastructure into maintainable Terraform code using discovery data and Azure Verified Modules. When to Use This Skill Use this skill when the user asks to: Import existing Azure resources into Terraform Generate IaC from live Azure environments Handle any Azure resource type supported by AVM (and document justified non-AVM fallbacks) Recreate infrastructure from a subscription or resource group Map dependencies ...
6.6K
1503 research tavily-ai/skills
Research Skill Conduct comprehensive research on any topic with automatic source gathering, analysis, and response generation with citations. Authentication The script uses OAuth via the Tavily MCP server. No manual setup required - on first run, it will: Check for existing tokens in ~/.mcp-auth/ If none found, automatically open your browser for OAuth authentication Note: You must have an existing Tavily account. The OAuth flow only supports login — account creation is not available through thi...
6.6K
1504 trading-signal binance/binance-skills-hub
Trading Signal Skill Overview This skill retrieves on-chain Smart Money trading signals to help users track professional investors: Get smart money buy/sell signals Compare signal trigger price with current price Analyze max gain and exit rate of signals Get token tags (e.g., Pumpfun, DEX Paid) API Endpoint Get Smart Money Signals Method : POST URL : https://web3.binance.com/bapi/defi/v1/public/wallet-direct/buw/wallet/web/signal/smart-money Request Headers : Content-Type: application/json Accep...
6.6K
1505 twitter starchild-ai-agent/official-skills
🔴 HARD LIMITS — READ FIRST ⛔ CALL AT MOST 3 TWITTER TOOLS PER RESPONSE. STOP AFTER 3 CALLS. After each tool call, check: "Do I have enough data to answer?" If yes → STOP AND REPLY. ⛔ NEVER call bash or write_file for any twitter task — reason inline, no scripts. ⛔ NEVER paginate unless user explicitly asks for more — first page is enough. ⛔ NEVER call lunar_coin , lunar_coin_time_series , or any LunarCrush/CoinGecko tool — Twitter sentiment 问题只用 twitter_search_tweets 回答,不跨 skill。 ⛔ NEVER call co...
6.6K
1506 learn tw93/waza
Learn: From Raw Materials to Published Output Prefix your first line with 🥷 inline, not as its own paragraph. Your role: collect, organize, translate, explain, structure. You support the user's thinking; you do not replace it. Pre-check Check whether /read and /write skills are installed (look for their SKILL.md in the skills directories). Warn if missing, do not block: /read missing -- Phase 1 fetch falls back to native WebFetch / curl ; coverage on paywalled, JS-heavy, and Chinese-platform pag...
6.6K
1507 nuxt onmax/nuxt-skills
Nuxt is a full-stack Vue framework that provides server-side rendering, file-based routing, auto-imports, and a powerful module system. It uses Nitro as its server engine for universal deployment across Node.js, serverless, and edge platforms. The skill is based on Nuxt 3.x, generated at 2026-01-28. Core Topic Description Reference Directory Structure Project folder structure, conventions, file organization core-directory-structure Configuration nuxt.config.ts, app.config.ts, runtime config, env...
6.6K
1508 notebooklm pleaseprompto/notebooklm-skill
NotebookLM Research Assistant Skill Interact with Google NotebookLM to query documentation with Gemini's source-grounded answers. Each question opens a fresh browser session, retrieves the answer exclusively from your uploaded documents, and closes. When to Use This Skill Trigger when user: Mentions NotebookLM explicitly Shares NotebookLM URL ( https://notebooklm.google.com/notebook/... ) Asks to query their notebooks/documentation Wants to add documentation to NotebookLM library Uses phrases li...
6.6K
1509 pdf openai/skills
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
6.6K
1510 elysiajs elysiajs/skills
ElysiaJS Development Skill Always consult elysiajs.com/llms.txt for code examples and latest API. Overview ElysiaJS is a TypeScript framework for building Bun-first (but not limited to Bun) type-safe, high-performance backend servers. This skill provides comprehensive guidance for developing with Elysia, including routing, validation, authentication, plugins, integrations, and deployment. When to Use This Skill Trigger this skill when the user asks to: Create or modify ElysiaJS routes, han...
6.6K
1511 mentoring-juniors github/awesome-copilot
Mentoring Socratique Overview A comprehensive Socratic mentoring methodology designed to develop autonomy and reasoning skills in junior developers and AI newcomers. Guides through questions rather than answers — never solves problems for the learner. Persona: Sensei You are Sensei , a senior Lead Developer with 15+ years of experience , known for your exceptional teaching skills and kindness. You practice the Socratic method : guiding through questions rather than giving answers. "Give a dev a ...
6.5K
1512 skill-creator starchild-ai-agent/official-skills
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
6.5K
1513 seo-content-writer aaron-he-zhu/seo-geo-claude-skills
SEO Content Writer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · alert...
6.5K
1514 angular-signals analogjs/angular-skills
Angular Signals Signals are Angular's reactive primitive for state management. They provide synchronous, fine-grained reactivity. Core Signal APIs signal() - Writable State import { signal } from '@angular/core' ; // Create writable signal const count = signal ( 0 ) ; // Read value console . log ( count ( ) ) ; // 0 // Set new value count . set ( 5 ) ; // Update based on current value count . update ( c => c + 1 ) ; // With explicit type const user = signal < User | null > ( null ) ; user . set ...
6.5K
1515 twelvedata starchild-ai-agent/official-skills
Twelve Data Twelve Data provides stocks and forex market data including real-time quotes, historical time series, and reference data. Use for traditional markets (stocks, forex) instead of crypto. When to Use Twelve Data Use Twelve Data for: Stock prices - Real-time and historical stock quotes Forex prices - Currency pair quotes and time series Time series data - OHLCV historical data Reference data - Stock lists, forex pairs, exchanges Search - Find stock symbols and company names Important : U...
6.5K
1516 darwin-skill alchaincyf/darwin-skill
Darwin Skill 借鉴 Karpathy autoresearch 的自主实验循环,对 skills 进行持续优化。 核心理念: 评估 → 改进 → 实测验证 → 人类确认 → 保留或回滚 → 生成成果卡片 GitHub: https://github.com/alchaincyf/darwin-skill 设计哲学 autoresearch 的精髓: 单一可编辑资产 — 每次只改一个 SKILL.md 双重评估 — 结构评分(静态分析)+ 效果验证(跑测试看输出) 棘轮机制 — 只保留改进,自动回滚退步 独立评分 — 评分用子agent,避免「自己改自己评」的偏差 人在回路 — 每个skill优化完后暂停,用户确认再继续 与纯结构审查的区别:不只看 SKILL.md 写得规不规范,更看改完后 实际跑出来的效果是否更好 。 评估 Rubric(8维度,总分100) 结构维度(60分)— 静态分析 维度 权重 评分标准 1 Frontmatter质量 8 name规范、description包含做什么+何时用+触发词、≤1024字符 2 工作流清晰度 15 步骤明确可执行、有序...
6.5K
1517 optimize-for-ai calm-north/seojuice-skills
Optimize for AI Optimize for AI search engines (ChatGPT, Perplexity, Claude, Gemini, Google AI Overviews) using citation architecture, E-E-A-T signals, and brand entity building. The Shift: Ranked vs Cited Traditional SEO gets you ranked in a list of results. AI SEO gets you cited as a source in AI-generated answers. The difference matters: AI systems select sources based on content quality, structure, and authority — not just ranking position AI Overviews appear in a growing share of Google sea...
6.5K
1518 bmad-idea supercent-io/skills-template
bmad-idea - BMAD Creative Intelligence Suite When to use this skill Brainstorming ideas using structured creative techniques (36 methods across 7 categories) Running a human-centered design thinking process Identifying market disruption opportunities or designing new business models Diagnosing complex problems using systematic root cause analysis Crafting compelling narratives, product stories, or pitches Any creative front-end work before structured development begins Installation npx skills ad...
6.4K
1519 prd-to-plan mattpocock/skills
PRD to Plan Break a PRD into a phased implementation plan using vertical slices (tracer bullets). Output is a Markdown file in ./plans/ . Process 1. Confirm the PRD is in context The PRD should already be in the conversation. If it isn't, ask the user to paste it or point you to the file. 2. Explore the codebase If you have not already explored the codebase, do so to understand the current architecture, existing patterns, and integration layers. 3. Identify durable architectural decisions Before...
6.4K
1520 claude-to-im op7418/claude-to-im-skill
Claude-to-IM Bridge Skill You are managing the Claude-to-IM bridge. User data is stored at ~/.claude-to-im/ . The skill directory (SKILL_DIR) is at ~/.claude/skills/claude-to-im . If that path doesn't exist, fall back to Glob with pattern /skills//claude-to-im/SKILL.md and derive the root from the result. Command parsing Parse the user's intent from $ARGUMENTS into one of these subcommands: User says (examples) Subcommand setup , configure , 配置 , 我想在飞书上用 Claude , 帮我连接 Telegram setup start , star...
6.4K
1521 postgres-patterns affaan-m/everything-claude-code
PostgreSQL Patterns Quick reference for PostgreSQL best practices. For detailed guidance, use the database-reviewer agent. When to Activate Writing SQL queries or migrations Designing database schemas Troubleshooting slow queries Implementing Row Level Security Setting up connection pooling Quick Reference Index Cheat Sheet Query Pattern Index Type Example WHERE col = value B-tree (default) CREATE INDEX idx ON t (col) WHERE col > value B-tree CREATE INDEX idx ON t (col) WHERE a = x AND b > y C...
6.4K
1522 parallel-debugging wshobson/agents
Parallel Debugging Framework for debugging complex issues using the Analysis of Competing Hypotheses (ACH) methodology with parallel agent investigation. When to Use This Skill Bug has multiple plausible root causes Initial debugging attempts haven't identified the issue Issue spans multiple modules or components Need systematic root cause analysis with evidence Want to avoid confirmation bias in debugging Hypothesis Generation Framework Generate hypotheses across 6 failure mode categories: 1. L...
6.4K
1523 vue-testing-best-practices vuejs-ai/skills
Vue.js testing best practices, patterns, and common gotchas. Testing Setting up test infrastructure for Vue 3 projects → See testing-vitest-recommended-for-vue Tests keep breaking when refactoring component internals → See testing-component-blackbox-approach Tests fail intermittently with race conditions → See testing-async-await-flushpromises Composables using lifecycle hooks or inject fail to test → See testing-composables-helper-wrapper Getting "injection Symbol(pinia) not found" errors in te...
6.4K
1524 kami tw93/kami
kami · 紙 紙 · かみ - the paper your deliverables land on. One design language across six document types: warm parchment canvas, ink-blue accent, serif-led hierarchy, tight editorial rhythm. Inspired by Anthropic's product visuals. Part of Kaku · Waza · Kami - Kaku writes code, Waza drills habits, Kami delivers documents . Step 1 · Decide the language Match the user's language . If they write in Chinese -> use the Chinese templates ( .html , Chinese references). If they write in English -> use the E...
6.4K
1525 dbs-ai-check dontbesilent2025/dbskill
dbs-ai-check:AI 写作特征识别 你是 dontbesilent 的 AI 写作特征检测工具。你的任务是帮用户看清自己的文字里有哪些 AI 生成的痕迹。 你反对「去 AI 味」。 识别 AI 特征是帮人看清自己的文字,不是帮人伪装成人类。如果你像任何一个人,你就不像 AI。所以改写不是删掉 AI 特征,而是让用户找到自己的写法。 默认只识别,不改。 核心哲学 原则 1:AI 味的本质是「太完美」 AI 写作的问题不是写得差,是写得太好、太光滑、太均匀。没有毛边、没有卡顿、没有跑题、没有任何一处是作者自己也没想通的。完美本身就是不真实的信号。 原则 2:去 AI 味 ≠ 好内容 花时间去 AI 味不如花时间把事情搞清楚。关心自己的文案有没有 AI 味的人很多,关心自己的文案好不好的人很少。英雄不问出处。 原则 3:改写必须基于用户自己的偏好 每个 AI 特征背后都有一个用户本来想达成的目的。改写不是删掉特征,而是用用户自己的方式达成同一个目的。没搞清楚用户的意图之前,不改任何一个字。 识别模式(默认) 用户发来文案 → 逐条扫描 22 个特征 → 输出检测报告。 检测报告格式...
6.4K
1526 code-review-and-quality addyosmani/agent-skills
Code Review and Quality Overview Multi-dimensional code review with quality gates. Every change gets reviewed before merge — no exceptions. Review covers five axes: correctness, readability, architecture, security, and performance. The standard is: "Would a staff engineer approve this diff and the verification story?" When to Use Before merging any PR or change After completing a feature implementation When another agent or model produced code you need to evaluate When refactoring existing code ...
6.4K
1527 spring-boot-engineer jeffallan/claude-skills
Spring Boot Engineer Senior Spring Boot engineer with expertise in Spring Boot 3+, cloud-native Java development, and enterprise microservices architecture. Role Definition You are a senior Spring Boot engineer with 10+ years of enterprise Java experience. You specialize in Spring Boot 3.x with Java 17+, reactive programming, Spring Cloud ecosystem, and building production-grade microservices. You focus on creating scalable, secure, and maintainable applications with comprehensive testing and...
6.4K
1528 heroui-native heroui-inc/heroui
HeroUI Native Development Guide HeroUI Native is a component library built on Uniwind (Tailwind CSS for React Native) and React Native, providing accessible, customizable UI components for mobile applications. CRITICAL: Native Only - Do Not Use Web Patterns This guide is for HeroUI Native ONLY. Do NOT use any prior knowledge of HeroUI React (web) patterns. What Changed in Native Feature React (Web) Native (Mobile) Styling Tailwind CSS v4 Uniwind (Tailwind for React Native) Colors oklch forma...
6.4K
1529 parallel-feature-development wshobson/agents
Parallel Feature Development Strategies for decomposing features into parallel work streams, establishing file ownership boundaries, avoiding conflicts, and integrating results from multiple implementer agents. When to Use This Skill Decomposing a feature for parallel implementation Establishing file ownership boundaries between agents Designing interface contracts between parallel work streams Choosing integration strategies (vertical slice vs horizontal layer) Managing branch and merge workflo...
6.4K
1530 nblm magicseek/nblm
NotebookLM Quick Commands Query Google NotebookLM for source-grounded, citation-backed answers. Environment All dependencies and authentication are handled automatically by run.py: First run creates .venv and installs Python/Node.js dependencies If Google auth is missing or expired, a browser window opens automatically No manual pre-flight steps required Usage /nblm <command> [args] Commands Notebook Management Command Description login Authenticate with Google status Show auth and library...
6.3K
1531 bmad-gds supercent-io/skills-template
bmad-gds - BMAD Game Development Studio When to use this skill Starting a new game project and need a structured concept → production workflow Creating a Game Design Document (GDD), narrative design, or technical architecture Managing sprints and dev stories for a game team Setting up test frameworks for Unity, Unreal Engine, or Godot projects Quick prototyping or rapid feature work without full planning overhead Reviewing code or running retrospectives after development epics Installation npx s...
6.3K
1532 triage-issue mattpocock/skills
Triage Issue Investigate a reported problem, find its root cause, and create a GitHub issue with a TDD fix plan. This is a mostly hands-off workflow - minimize questions to the user. Process 1. Capture the problem Get a brief description of the issue from the user. If they haven't provided one, ask ONE question: "What's the problem you're seeing?" Do NOT ask follow-up questions yet. Start investigating immediately. 2. Explore and diagnose Use the Agent tool with subagent_type=Explore to deeply i...
6.3K
1533 build-links calm-north/seojuice-skills
Build Links Design a targeted link acquisition campaign using asset mapping, prospect scoring, and outreach sequence design. Before You Start Gather this context (ask if not provided): Domain and niche. What site needs links? What industry? Current backlink profile. Any idea of current referring domains count, domain rating/authority? Linkable assets. Does the site have: original research, tools, data, infographics, comprehensive guides? Budget and resources. Can the team invest in content creat...
6.3K
1534 brief calm-north/seojuice-skills
Content Brief Produce a complete, editor-ready content brief covering intent analysis, competitive SERP review, content outline, E-E-A-T requirements, and SEO targets. Before You Start Gather this context (ask if not provided): Target keyword or topic. The primary keyword this content should rank for. Business context. What does the company do? What should readers do after reading (sign up, buy, contact)? Content type preference. Blog post, landing page, guide, comparison, tutorial? Audience. Wh...
6.3K
1535 baoyu-image-cards jimliu/baoyu-skills
Image Card Series Generator Break down complex content into eye-catching image card series with multiple style options. Usage Auto-select style and layout based on content /baoyu-image-cards posts/ai-future/article.md Specify style /baoyu-image-cards posts/ai-future/article.md --style notion Specify layout /baoyu-image-cards posts/ai-future/article.md --layout dense Combine style and layout /baoyu-image-cards posts/ai-future/article.md --style notion --layout list Specify palette (override ...
6.3K
1536 reka-ui onmax/nuxt-skills
Reka UI Unstyled, accessible Vue 3 component primitives. WAI-ARIA compliant. Previously Radix Vue. Current version: v2.7.0 (December 2025) When to Use Building headless/unstyled components from scratch Need WAI-ARIA compliant components Using Nuxt UI, shadcn-vue, or other Reka-based libraries Implementing accessible forms, dialogs, menus, popovers For Vue patterns: use vue skill Available Guidance File Topics references/components.md Component index by category (Form, Date, Overlay, Menu, D...
6.3K
1537 rivetkit rivet-dev/skills
Rivet Actors Build high-performance, long-lived, in-memory processes on Rivet's actor runtime. Use this skill whenever HTTP endpoints, databases, or queues no longer meet the requirements for AI agents, realtime collaboration, workflow orchestration, or geo-distributed data. What To Do If You Get Stuck If something is not working as intended or you are stuck, prompt the user to join the Rivet Discord or file an issue on the Rivet GitHub to report an issue and get help. Provide the user with ...
6.3K
1538 vue onmax/nuxt-skills
Vue Based on Vue 3.5. Always use Composition API with <template> <div>{{ title }} - {{ doubled }}</div> </template> Key Imports // Reactivity import { ref , shallowRef , computed , reactive , readonly , toRef , toRefs , toValue } from 'vue' // Watchers import { watch , watchEffect , watchPostEffect , onWatcherCleanup } from 'vue' // Lifecycle import { onMounted , onUpdated , onUnmounted , onBeforeMount , onBeforeUpdate , onBeforeUnmount } from 'vue' // Utilities import { nextTick , defineCompon...
6.3K
1539 building-components vercel/components.build
Building Components When to use this skill Use when the user is: Building new UI components (primitives, components, blocks, templates) Implementing accessibility features (ARIA, keyboard navigation, focus management) Creating composable component APIs (slots, render props, controlled/uncontrolled state) Setting up design tokens and theming systems Publishing components to npm or a registry Writing component documentation Implementing polymorphism or as-child patterns Working with data attribute...
6.3K
1540 crypto-market-rank binance/binance-skills-hub
Crypto Market Rank Skill Overview API Function Use Case Social Hype Leaderboard Social buzz ranking Sentiment analysis, social summaries Unified Token Rank Multi-type token rankings Trending, Top Search, Alpha, Stock with filters Smart Money Inflow Rank Token rank by smart money buys Discover tokens smart money is buying most Meme Rank Top meme tokens from Pulse launchpad Find meme tokens most likely to break out Address Pnl Rank Top trader PnL leaderboard Top PnL traders / KOL performance ranki...
6.3K
1541 task-coordination-strategies wshobson/agents
Task Coordination Strategies Strategies for decomposing complex tasks into parallelizable units, designing dependency graphs, writing effective task descriptions, and monitoring workload across agent teams. When to Use This Skill Breaking down a complex task for parallel execution Designing task dependency relationships (blockedBy/blocks) Writing task descriptions with clear acceptance criteria Monitoring and rebalancing workload across teammates Identifying the critical path in a multi-task wor...
6.3K
1542 cloud-run-basics google/skills
Cloud Run Basics Cloud Run is a fully managed application platform for running your code, function, or container on top of Google's highly scalable infrastructure. It abstracts away infrastructure management, providing three primary resource types: Services: Responds to HTTP requests sent to a unique and stable endpoint, using stateless instances that autoscale based on a variety of key metrics, also responds to events and functions. Jobs: Executes parallelizable tasks that are executed manually...
6.3K
1543 dbs-slowisfast dontbesilent2025/dbskill
dbs-slowisfast:慢就是快 你是 dontbesilent 的慢方法诊断 AI。你的任务是帮用户在他正在做的事情里,找到那些「看起来更慢,但长期更快」的方法。 你不鼓吹慢。你帮人找到值得慢做的地方。 大部分事情应该快做,只有少数事情值得慢做。你的工作是帮用户区分这两类。 核心逻辑:慢方法 → 摩擦 → 判断 → 资产 → 复利。 如果一个慢方法不能产生可复利的资产,那它就只是慢。 核心哲学 公理 1:摩擦是信息 当你用工具绕开摩擦,你同时绕开了藏在摩擦里的信号。手动做一件事的过程中,你会被迫对每一步做判断——这个重要吗?这个结构为什么是这样?这种判断的积累,才是洞察的来源。快方法丢失的,恰恰是摩擦本身。 公理 2:短期的容易就是长期的痛苦 因为觉得 Claude Code 复杂所以选择其他工具,因为觉得做矩阵买手机办卡太麻烦所以选择一机多开——都是一回事。短期选了容易的路,长期反而更痛苦。创业者最常犯的错误不是选了慢方法,是选了看起来快但长期反噬的方法。 公理 3:资产是复利的基础 稳定产出的秘密不是 AI 技术本身,而是能够系统化地调用过去积累的所有资产。没有积累,AI ...
6.3K
1544 audit calm-north/seojuice-skills
Run systematic quality checks and generate a comprehensive audit report with prioritized issues and actionable recommendations. Don't fix issues - document them for other commands to address. First : Use the frontend-design skill for design principles and anti-patterns. Diagnostic Scan Run comprehensive checks across multiple dimensions: Accessibility (A11y) - Check for: Contrast issues : Text contrast ratios < 4.5:1 (or 7:1 for AAA) Missing ARIA : Interactive elements without proper roles, labe...
6.3K
1545 python-patterns affaan-m/everything-claude-code
Python Development Patterns Idiomatic Python patterns and best practices for building robust, efficient, and maintainable applications. When to Activate Writing new Python code Reviewing Python code Refactoring existing Python code Designing Python packages/modules Core Principles 1. Readability Counts Python prioritizes readability. Code should be obvious and easy to understand. Good: Clear and readable def get_active_users ( users : list [ User ] ) - > list [ User ] : """Return only active us...
6.3K
1546 noob-mode github/awesome-copilot
Noob Mode Activate Noob Mode to make Copilot CLI speak plain English. Designed for non-technical professionals (lawyers, PMs, business stakeholders, designers, writers) who use Copilot CLI but don't have a software engineering background. When Noob Mode is active, Copilot automatically translates every permission request, error message, and technical output into clear, jargon-free language — so you always know what you're agreeing to, what just happened, and what your options are. What It Does F...
6.2K
1547 api-design affaan-m/everything-claude-code
API Design When to use this skill Designing new REST APIs Creating GraphQL schemas Refactoring API endpoints Documenting API specifications API versioning strategies Defining data models and relationships Instructions Step 1: Define API requirements Identify resources and entities Define relationships between entities Specify operations (CRUD, custom actions) Plan authentication/authorization Consider pagination, filtering, sorting Step 2: Design REST API Resource naming : Use nouns, not verbs: ...
6.2K
1548 tdd-workflow affaan-m/everything-claude-code
Test-Driven Development Workflow This skill ensures all code development follows TDD principles with comprehensive test coverage. When to Activate Writing new features or functionality Fixing bugs or issues Refactoring existing code Adding API endpoints Creating new components Core Principles 1. Tests BEFORE Code ALWAYS write tests first, then implement code to make tests pass. 2. Coverage Requirements Minimum 80% coverage (unit + integration + E2E) All edge cases covered Error scenarios tested ...
6.2K
1549 rivetkit-client-javascript rivet-dev/skills
RivetKit JavaScript Client Use this skill when building JavaScript clients (browser, Node.js, or Bun) that connect to Rivet Actors with rivetkit/client. First Steps Install the client (latest: 2.0.42-rc.1) npm install rivetkit@2.0.42-rc.1 Create a client with createClient() and call actor actions. Getting Started See the backend quickstart guide for getting started. Minimal Client import { createClient } from "rivetkit/client"; import type { registry } from "./registry"; const client = cre...
6.2K
1550 skillmarketplace starchild-ai-agent/official-skills
Skill Market Searching & Installing Skills Always use the search_skills tool. Do NOT manually curl, browse GitHub, or download SKILL.md files. search_skills does everything automatically: Local — checks installed skills first Starchild community — searches community-skills index skills.sh — searches the global skills ecosystem (OpenClaw, Vercel, Anthropic, etc.) Auto-install — installs the best match via npx skills add (default: auto_install=true ) Usage search_skills(query="deploy") ...
6.2K