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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,425
总 Skills
89.4M
总安装量
2,578
贡献者
# Skill 仓库 描述 安装量
3851 unit-test-vue-pinia github/awesome-copilot
unit-test-vue-pinia Use this skill to create or review unit tests for Vue components, composables, and Pinia stores. Keep tests small, deterministic, and behavior-first. Workflow Identify the behavior boundary first: component UI behavior, composable behavior, or store behavior. Choose the narrowest test style that can prove that behavior. Set up Pinia with the least powerful option that still covers the scenario. Drive the test through public inputs such as props, form updates, button clicks, e...
1.5K
3852 scaffolding-oracle-to-postgres-migration-test-project github/awesome-copilot
Scaffolding an Integration Test Project for Oracle-to-PostgreSQL Migration Creates a compilable, empty xUnit test project with transaction management and seed data infrastructure for a single target project. Run once per project before writing tests. Workflow Progress: - [ ] Step 1: Inspect the target project - [ ] Step 2: Create the xUnit test project - [ ] Step 3: Implement transaction-rollback base class - [ ] Step 4: Implement seed data manager - [ ] Step 5: Verify the project compiles Step ...
1.5K
3853 flutter-architecture madteacher/mad-agents-skills
Flutter Architecture Overview Provides architectural guidance and best practices for building scalable Flutter applications using MVVM pattern, layered architecture, and recommended design patterns from the Flutter team. Project Structure: Feature-First vs Layer-First Choose the right project organization based on your app's complexity and team size. Feature-First (Recommended for teams) Organize code by business features: lib/ ├── features/ │ ├── auth/ │ │ ├── data/ │ │ ├── domain/ │ ...
1.5K
3854 social-media-image-sizes branding5/social-media-image-sizes
Social Media Image Sizes Check and resize images for 9 platforms / 60+ specs. Scripts mirror the logic at branding5.com/tools/social-media-cheat-sheet . Setup Run once after install: cd < skill-dir > npm install Check an image node scripts/check.js photo.jpg Outputs a ranked match list — perfect → close → usable → too small — with an inline node scripts/resize.js command for every non-perfect match. Filter by platform or match level: node scripts/check.js photo.jpg --platform instagram node scri...
1.5K
3855 agent-memory-systems sickn33/antigravity-awesome-skills
Agent Memory Systems You are a cognitive architect who understands that memory makes agents intelligent. You've built memory systems for agents handling millions of interactions. You know that the hard part isn't storing - it's retrieving the right memory at the right time. Your core insight: Memory failures look like intelligence failures. When an agent "forgets" or gives inconsistent answers, it's almost always a retrieval problem, not a storage problem. You obsess over chunking strategies, em...
1.5K
3856 pencil-design chiroro-jr/pencil-design-skill
Pencil Design Skill Design production-quality UIs in Pencil and generate clean, maintainable code from them. This skill enforces best practices for design system reuse, variable usage, layout correctness, visual verification, and design-to-code workflows. When to Use This Skill Designing screens, pages, or components in a .pen file Generating code (React, Next.js, Vue, Svelte, HTML/CSS) from Pencil designs Building or extending a design system in Pencil Syncing design tokens between Pencil and c...
1.5K
3857 compound-docs everyinc/compound-engineering-plugin
compound-docs Skill Purpose: Automatically document solved problems to build searchable institutional knowledge with category-based organization (enum-validated problem types). Overview This skill captures problem solutions immediately after confirmation, creating structured documentation that serves as a searchable knowledge base for future sessions. Organization: Single-file architecture - each problem documented as one markdown file in its symptom category directory (e.g., docs/solutions/...
1.5K
3858 flutter-accessibility-audit flutter/skills
Implementing Flutter Accessibility Contents Managing Semantics Auditing Accessibility Debugging the Semantics Tree Examples Managing Semantics Rely on Flutter's standard widgets (e.g., TabBar , MenuAnchor ) for automatic semantic role assignment whenever possible. When building custom components or overriding default behaviors, explicitly define the UI element's purpose using the Semantics widget. Wrap custom UI components in a Semantics widget. Assign the appropriate SemanticsRole enum value to...
1.5K
3859 status alirezarezvani/claude-skills
Check Research Status Run ID: $ARGUMENTS parallel-cli research status " $ARGUMENTS " --json If CLI not found, tell user to run /parallel:setup .
1.5K
3860 browserstack alirezarezvani/claude-skills
BrowserStack Integration Run Playwright tests on BrowserStack's cloud grid for cross-browser and cross-device testing. Prerequisites Environment variables must be set: BROWSERSTACK_USERNAME — your BrowserStack username BROWSERSTACK_ACCESS_KEY — your access key If not set, inform the user how to get them from browserstack.com/accounts/settings and stop. Capabilities 1. Configure for BrowserStack /pw:browserstack setup Steps: Check current playwright.config.ts Add BrowserStack connect options: // ...
1.5K
3861 migrate alirezarezvani/claude-skills
Migrate to Playwright Interactive migration from Cypress or Selenium to Playwright with file-by-file conversion. Input $ARGUMENTS can be: "from cypress" — migrate Cypress test suite "from selenium" — migrate Selenium/WebDriver tests A file path: convert a specific test file Empty: auto-detect source framework Steps 1. Detect Source Framework Use Explore subagent to scan: cypress/ directory or cypress.config.ts → Cypress selenium , webdriver in package.json deps → Selenium .py test files with sel...
1.5K
3862 validate-implementation-plan b-mendoza/agent-skills
Validate Implementation Plan You are an independent auditor reviewing an implementation plan written by another agent. Your job is to annotate the plan — not to rewrite or modify it. When to Use Reviewing an implementation plan generated by an AI agent before approving it Auditing a design proposal for scope creep, over-engineering, or unverified assumptions Validating that a plan maps back to the original user request or ticket requirements Arguments Position Name Type Default Description $0 pl...
1.5K
3863 swift-style johnrogers/claude-swift-engineering
Swift Style Guide Code style conventions for clean, readable Swift code. Core Principles Clarity > Brevity > Consistency Code should compile without warnings. Naming UpperCamelCase — Types, protocols lowerCamelCase — Everything else Clarity at call site No abbreviations except universal (URL, ID) // Preferred let maximumWidgetCount = 100 func fetchUser(byID id: String) -> User Golden Path Left-hand margin is the happy path. Don't nest if statements. // Preferred func process(value: Int?)...
1.5K
3864 status railwayapp/railway-skills
Check Research Status Run ID: $ARGUMENTS parallel-cli research status " $ARGUMENTS " --json If CLI not found, tell user to run /parallel:setup .
1.5K
3865 playwright-scraper alphaonedev/openclaw-graph
playwright-scraper Purpose This skill enables web scraping using Playwright, a Node.js library for browser automation. It focuses on handling dynamic content, authentication flows, pagination, data extraction, and screenshots to reliably scrape modern websites. When to Use Use this skill for scraping sites with JavaScript-rendered content (e.g., React or Angular apps), sites requiring login (e.g., dashboards), handling multi-page results (e.g., search results), or capturing visual data (e.g., sc...
1.5K
3866 testrail alirezarezvani/claude-skills
TestRail Integration Bidirectional sync between Playwright tests and TestRail test management. Prerequisites Environment variables must be set: TESTRAIL_URL — e.g., https://your-instance.testrail.io TESTRAIL_USER — your email TESTRAIL_API_KEY — API key from TestRail If not set, inform the user how to configure them and stop. Capabilities 1. Import Test Cases → Generate Playwright Tests /pw:testrail import --project <id> --suite <id> Steps: Call testrail_get_cases MCP tool to fetch test cases For...
1.5K
3867 sandbox-npm-install github/awesome-copilot
Sandbox npm Install When to Use This Skill Use this skill whenever: You need to install npm packages for the first time in a new sandbox session package.json or package-lock.json has changed and you need to reinstall You encounter native binary crashes with errors like SIGILL , SIGSEGV , mmap , or unaligned sysNoHugePageOS The node_modules directory is missing or corrupted Prerequisites A Docker sandbox environment with a virtiofs-mounted workspace Node.js and npm available in the container A pa...
1.5K
3868 humanizer daleseo/korean-skills
Humanizer: Remove AI Writing Patterns You are a writing editor that identifies and removes signs of AI-generated text to make writing sound more natural and human. This guide is based on Wikipedia's "Signs of AI writing" page, maintained by WikiProject AI Cleanup. Your Task When given text to humanize: Identify AI patterns - Scan for the patterns listed below Rewrite problematic sections - Replace AI-isms with natural alternatives Preserve meaning - Keep the core message intact Maintain voice - ...
1.5K
3869 document-writer onmax/nuxt-skills
Documentation Writer for Nuxt Ecosystem Writing guidance for blog posts and documentation following patterns from official Nuxt websites. When to Use Writing blog posts for Nuxt ecosystem projects Creating or editing documentation pages Ensuring consistent writing style across content Writing Standard Override: When writing documentation, maintain proper grammar and complete sentences. The "sacrifice grammar for brevity" rule does NOT apply here. Documentation must be: Grammatically correct...
1.5K
3870 ethskills austintgriffith/ethskills
ETHSKILLS — The missing knowledge between AI agents and production Ethereum. You are probably wrong about Ethereum. Gas prices, token decimals, L2 costs, what's deployed, what's deprecated — your training data is stale. This file tells you what you're wrong about and where to get the corrections. Say "onchain" not "on-chain." One word, no hyphen. Ethereum community convention. Start Here Building a dApp? Fetch ship/SKILL.md first. It routes you through all other skills phase by phase — from arch...
1.5K
3871 gstack-workflow-assistant aradotso/trending-skills
gstack Workflow Assistant Skill by ara.so — Daily 2026 Skills collection Transform Claude Code from a generic assistant into a team of specialists you can summon on demand. Eight opinionated workflow skills that act as CEO, Engineering Manager, Release Manager, and QA Engineer with slash commands for planning, review, shipping, and testing. What It Does gstack provides specialized AI personas and workflows: CEO Review : Rethink problems and find the 10-star product hiding in requests Engineering...
1.5K
3872 domain-hunter resciencelab/opc-skills
Domain Hunter Skill Help users find and purchase domain names at the best price. Workflow Step 1: Generate Domain Ideas & Check Availability Based on the user's project description, generate 5-10 creative domain name suggestions. Guidelines: Keep names short (under 15 characters) Make them memorable and brandable Consider: {action}{noun}, {noun}{suffix}, {prefix}{keyword} Common suffixes: app, io, hq, ly, ify, now, hub CRITICAL: Always check availability before presenting domains to user! ...
1.5K
3873 akshare succ985/openclaw-akshare-skill
AkShare - Chinese Financial Data Overview AkShare is a free, open-source Python library for accessing Chinese financial market data. This skill provides guidance for fetching data from Chinese exchanges including Shanghai Stock Exchange, Shenzhen Stock Exchange, Hong Kong Exchange, and more. Quick Start Install AkShare: pip install akshare Basic stock quote: import akshare as ak df = ak . stock_zh_a_spot_em ( ) Real-time A-share data Stock Data A-Shares (A股) Real-time quotes: All A-shares real...
1.5K
3874 bright-data-best-practices brightdata/skills
Bright Data APIs Bright Data provides infrastructure for web data extraction at scale. Four primary APIs cover different use cases — always pick the most specific tool for the job. Choosing the Right API Use Case API Why Scrape any webpage by URL (no interaction) Web Unlocker HTTP-based, auto-bypasses bot detection, cheapest Google / Bing / Yandex search results SERP API Specialized for SERP extraction, returns structured data Structured data from Amazon, LinkedIn, Instagram, TikTok, etc. Web Sc...
1.5K
3875 docx tfriedel/claude-office-skills
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
1.5K
3876 pr-triage xtone/ai_development_tools
PRトリアージ PRの変更内容を分析し、後続のコードレビューフェーズに必要な情報を構造化して出力するスキルです。 軽量モデル(Haiku)での実行を想定しており、CI環境でのコスト最適化に寄与します。 手順 gh pr view <PR番号> --json title,body,headRefName,baseRefName,changedFiles でPR情報を取得 gh pr diff <PR番号> --name-only で変更ファイル一覧を取得 差分の取得( changedFilesが15以上の場合、手順3はスキップしてファイル名とPR説明のみで分析する ): changedFilesが15未満の場合のみ gh pr diff <PR番号> でコード差分を取得 表層チェックが必要なファイル(.ts, .js, .tsx, .jsx)が多い場合は個別に gh pr diff <PR番号> -- <file> で取得 .pr-review-state.json が存在するか確認する(前回レビュー状態) 以下の分析を行う: 変更ファイルのカテゴリ分類(added/modified/d...
1.5K
3877 problem-definition refoundai/lenny-skills
Problem Definition Help the user define problems clearly before jumping to solutions using frameworks from 91 product leaders. How to Help When the user asks for help with problem definition: Understand the current framing - Ask how they're currently thinking about the problem Dig into the struggling moment - Help them articulate the specific context where users feel stuck Separate problem from solution - Ensure they haven't conflated a desired feature with the underlying need Validate the probl...
1.5K
3878 ts-library onmax/nuxt-skills
TypeScript Library Development Patterns for authoring high-quality TypeScript libraries, extracted from studying unocss, shiki, unplugin, vite, vitest, vueuse, zod, trpc, drizzle-orm, and more. When to Use Starting a new TypeScript library (single or monorepo) Setting up package.json exports for dual CJS/ESM Configuring tsconfig for library development Choosing build tools (tsdown, unbuild) Designing type-safe APIs (builder, factory, plugin patterns) Writing advanced TypeScript types Setting u...
1.5K
3879 usability-testing refoundai/lenny-skills
Usability Testing Help the user conduct effective usability testing using frameworks and insights from 11 product leaders. How to Help When the user asks for help with usability testing: Clarify the goal - Determine if they're validating a concept, finding friction points, or optimizing conversion Choose the right fidelity - Help them select between Wizard of Oz tests, fake doors, prototypes, or production testing Design the test - Guide them on recruiting users, creating scenarios, and what to ...
1.5K
3880 mcp-deepwiki aahl/skills
DeepWiki The DeepWiki MCP server provides programmatic access to DeepWiki’s public repository documentation and search capabilities (Ask Devin). MCP Server URL : https://mcp.deepwiki.com/mcp Ask Question (Recommended) The tool's results are generated by AI, requiring at least 1 minute or more of timeout time. npx -y mcporter call "${MCP_URL}.ask_question" repoName:owner/repo question:"User's questions" Read wiki structure npx -y mcporter call "${MCP_URL}.read_wiki_structure" repoName:owner/repo ...
1.5K
3881 db-generate medusajs/medusa-agent-skills
Generate Database Migrations Generate database migrations for the specified Medusa module. The user will provide the module name as an argument (e.g., brand , product , custom-module ). For example: /medusa-dev:db-generate brand Use the Bash tool to execute the command npx medusa db:generate <module-name> , replacing <module-name> with the provided argument. Report the results to the user, including: The module name for which migrations were generated Migration file name or location Any errors o...
1.5K
3882 web-development tencentcloudbase/skills
When to use this skill Use this skill for Web frontend project development when you need to: Develop web frontend pages and interfaces Deploy static websites to CloudBase static hosting Integrate CloudBase Web SDK for database, cloud functions, and authentication Set up modern frontend build systems (Vite, Webpack, etc.) Handle routing and build configurations for static hosting Do NOT use for: Mini-program development (use miniprogram-development skill) Backend service development (use cloudrun...
1.5K
3883 nestjs giuseppe-trisciuoglio/developer-kit
NestJS Framework with Drizzle ORM When to Use Building REST APIs or GraphQL servers with NestJS Setting up authentication and authorization Implementing middleware, guards, or interceptors Working with databases (TypeORM, Drizzle ORM) Creating microservices architecture Writing unit and integration tests Setting up OpenAPI/Swagger documentation Core Architecture Module Structure import { Module } from '@nestjs/common'; @Module({ imports: [/* other modules */], controllers: [/* controllers *...
1.5K
3884 writing-specs-designs refoundai/lenny-skills
Writing Specs & Designs Help the user write effective specs and design documents using frameworks and insights from 7 product leaders. How to Help When the user asks for help with specs and design docs: Determine the fidelity level - Ask if they need conceptual alignment (low-fi) or detailed implementation guidance (high-fi) Encourage prototyping over polish - Push toward functional prototypes where possible rather than static documentation Focus on moving pieces - Help them identify the key aff...
1.5K
3885 shannon-ai-pentester aradotso/trending-skills
Shannon AI Pentester Skill by ara.so — Daily 2026 Skills collection. Shannon is an autonomous, white-box AI pentester for web applications and APIs. It reads your source code to identify attack vectors, then executes real exploits (SQLi, XSS, SSRF, auth bypass, authorization flaws) against a live running application — only reporting vulnerabilities with a working proof-of-concept. How It Works Reconnaissance — Nmap, Subfinder, WhatWeb, and Schemathesis scan the target Code Analysis — Shannon rea...
1.5K
3886 open-prose openprose/prose
OpenProse Skill OpenProse has four load-bearing pieces: Piece File Role Contract Markdown contract-markdown.md Human-readable *.prose.md service and system format Forme forme.md Semantic dependency-injection container that wires contracts Prose VM prose.md Execution engine that runs service files, system manifests, and pinned execution blocks ProseScript prosescript.md Imperative scripting layer for Execution blocks and pattern delegation Use Contract Markdown when authors want declarations and...
1.5K
3887 conducting-user-interviews refoundai/lenny-skills
Conducting User Interviews Help the user run better discovery conversations and extract real insights using techniques from 43 product leaders. How to Help When the user asks for help with user interviews: Understand their goal - Ask what they're trying to learn (validating a problem, testing a solution, understanding behavior, pricing research) Help them prepare - Suggest questions, warn against common mistakes, help them find the right participants Coach on technique - Share principles for get...
1.5K
3888 vite onmax/nuxt-skills
Vite Based on Vite 8 beta (Rolldown-powered). Vite 8 uses Rolldown bundler and Oxc transformer. Vite is a next-generation frontend build tool with fast dev server (native ESM + HMR) and optimized production builds. Preferences Use TypeScript: prefer vite.config.ts Always use ESM, avoid CommonJS Core Topic Description Reference Configuration vite.config.ts , defineConfig , conditional configs, loadEnv core-config Features import.meta.glob , asset queries ( ?raw , ?url ), import.meta.env , HMR API...
1.5K
3889 cli-anything hkuds/cli-anything
CLI-Anything for Codex Use this skill when the user wants Codex to act like the CLI-Anything builder. If this skill is being used from inside the CLI-Anything repository, read ../cli-anything-plugin/HARNESS.md before implementation. That file is the full methodology source of truth. If it is not available, follow the condensed rules below. Inputs Accept either: A local source path such as ./gimp or /path/to/software A GitHub repository URL Derive the software name from the local directory name a...
1.5K
3890 astro-framework delineas/astro-framework-agents
Astro Framework Specialist Senior Astro specialist with deep expertise in islands architecture, content-driven websites, and hybrid rendering strategies. Role Definition You are a senior frontend engineer with extensive Astro experience. You specialize in building fast, content-focused websites using Astro's islands architecture, content collections, and hybrid rendering. You understand when to ship JavaScript and when to keep things static. When to Use This Skill Activate this skill when: ...
1.5K
3891 crypto-ta-analyzer dkyazzentwatwa/chatgpt-skills
Crypto & Stock Technical Analysis Multi-indicator technical analysis system that generates high-confidence trading signals by combining 29+ proven algorithms. Features divergence detection, Bollinger Band squeeze alerts, volume confirmation, and a 7-tier signal system. Ideal for cryptocurrency and stock market analysis. Core Workflow 1. Data Acquisition Fetch historical price data from any supported source: CoinGecko (via MCP tools): Use coingecko_get_historical_chart tool with: - coin_id: ...
1.5K
3892 observe-whatsapp gokapso/agent-skills
Use this skill for operational diagnostics: message delivery investigation, webhook delivery debugging, error triage, and WhatsApp health checks. Setup Env vars: - `KAPSO_API_BASE_URL` (host only, no `/platform/v1`) - `KAPSO_API_KEY` How to Investigate message delivery - List messages: `node scripts/messages.js --phone-number-id <id>` - Inspect message: `node scripts/message-details.js --message-id <id>` - Find conversation: `node scripts/lookup-conversation.js --phone-number <e164>`...
1.5K
3893 security-ownership-map openai/skills
Security Ownership Map Overview Build a bipartite graph of people and files from git history, then compute ownership risk and export graph artifacts for Neo4j/Gephi. Also build a file co-change graph (Jaccard similarity on shared commits) to cluster files by how they move together while ignoring large, noisy commits. Requirements Python 3 networkx (required; community detection is enabled by default) Install with: pip install networkx Workflow Scope the repo and time window (optional --since/--u...
1.5K
3894 manim-composer adithya-s-k/manim_skill
Workflow Phase 1: Understand the Concept Research the topic deeply before asking questions Use web search to understand the core concepts Identify the key insights that make this topic interesting Find the "aha moment" - what makes this click for learners Note common misconceptions to address Identify the narrative hook What question does this video answer? Why should the viewer care? What's the surprising or counterintuitive element? Phase 2: Clarify with User Ask targeted questions (not a...
1.5K
3895 sentry openai/skills
Sentry (Read-only Observability) Quick start If not already authenticated, ask the user to provide a valid SENTRY_AUTH_TOKEN (read-only scopes such as project:read , event:read ) or to log in and create one before running commands. Set SENTRY_AUTH_TOKEN as an env var. Optional defaults: SENTRY_ORG , SENTRY_PROJECT , SENTRY_BASE_URL . Defaults: org/project {your-org} / {your-project} , time range 24h , environment prod , limit 20 (max 50). Always call the Sentry API (no heuristics, no caching). I...
1.5K
3896 ios-debugger-agent dimillian/skills
iOS Debugger Agent Overview Use XcodeBuildMCP to build and run the current project scheme on a booted iOS simulator, interact with the UI, and capture logs. Prefer the MCP tools for simulator control, logs, and view inspection. Core Workflow Follow this sequence unless the user asks for a narrower action. 1) Discover the booted simulator Call mcp__XcodeBuildMCP__list_sims and select the simulator with state Booted. If none are booted, ask the user to boot one (do not boot automatically unles...
1.5K
3897 zai-tts aahl/skills
Zai-TTS Generate high-quality text-to-speech audio using GLM-TTS service via the uvx zai-tts command. Before using this skill, you need to configure the environment variables ZAI_AUDIO_USERID and ZAI_AUDIO_TOKEN , which can be obtained by login audio.z.ai and executing localStorage['auth-storage'] in the console via F12 Developer Tools. Usage uvx zai-tts -t "{msg}" -o { tempdir } / { filename } .wav uvx zai-tts -f path/to/file.txt -o { tempdir } / { filename } .wav Changing speed, volume uvx zai...
1.5K
3898 vendor-check anthropics/knowledge-work-plugins
/vendor-check -- Vendor Agreement Status If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Check the status of existing agreements with a vendor across all connected systems. Provides a consolidated view of the legal relationship. Important : This command assists with legal workflows but does not provide legal advice. Agreement status reports should be verified against original documents by qualified legal professionals. Invocation /vendor-check [...
1.5K
3899 earnings-analysis anthropics/financial-services-plugins
Equity Research Earnings Update Create professional EARNINGS UPDATE REPORTS analyzing quarterly results for companies already under coverage, following institutional standards (JPMorgan, Goldman Sachs, Morgan Stanley format). Key Characteristics: Length : 8-12 pages Word Count : 3,000-5,000 words Tables : 1-3 summary tables (NOT comprehensive) Figures : 8-12 charts Turnaround : 1-2 days (within 24-48 hours of earnings) Audience : Clients already familiar with the company Focus : What's NEW - bea...
1.5K
3900 process-doc anthropics/knowledge-work-plugins
/process-doc If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Document a business process as a complete standard operating procedure (SOP). Usage /process-doc $ARGUMENTS How It Works Walk me through the process — describe it, paste existing docs, or just tell me the name and I'll ask the right questions. I'll produce a complete SOP. Output Process Document: [Process Name] Owner: [Person/Team] | Last Updated: [Date] | Review Cadence: [Quart...
1.5K