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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,418
总 Skills
88.9M
总安装量
2,576
贡献者
# Skill 仓库 描述 安装量
19601 godot-genre-visual-novel thedivergentai/gd-agentic-skills
Genre: Visual Novel Branching narratives, meaningful choices, and quality-of-life features define visual novels. Core Loop Read : Consume narrative text and character dialogue Decide : Choose at key moments Branch : Story diverges based on choice Consequence : Immediate reaction or long-term flag changes Conclude : Reach one of multiple endings NEVER Do in Visual Novels NEVER create illusion of choice — If all options lead to same outcome immediately, player feels cheated. ALWAYS provide dialogu...
49
19602 linear-workflow finesssee/linear-cli
Workflow Commands Start Work Start working (assigns to you, sets In Progress) linear-cli i start LIN-123 Start + create git branch linear-cli i start LIN-123 --checkout Stop Work Stop working (unassigns, resets status) linear-cli i stop LIN-123 Get Current Issue Get issue from current git branch linear-cli context linear-cli context --output json Full Workflow 1. Start linear-cli i start LIN-123 --checkout 2. Code... 3. Create PR linear-cli g pr LIN-123 4. Done linear-cli i update LIN-12...
49
19603 perf-optimizer onekeyhq/app-monorepo
Performance Optimizer Systematic workflow for diagnosing and fixing performance issues in the OneKey mobile app using the perf-ci infrastructure and performance-server tooling. Overview This skill provides a structured iterative approach to: Establish performance baselines from existing sessions Run controlled perf measurements (3 runs, median aggregation) Analyze session data to identify bottlenecks Make targeted code changes Verify improvements against thresholds Document all changes and resul...
49
19604 deployment mgd34msu/goodvibes-plugin
Deployment Management Manage existing Railway deployments: list, view logs, redeploy, or remove. Important: "Remove deployment" (railway down) stops the current deployment but keeps the service. To delete a service entirely, use the environment skill with isDeleted: true. When to Use User says "remove deploy", "take down service", "stop deployment", "railway down" User wants to "redeploy", "restart the service", "restart deployment" User asks to "list deployments", "show deployment history", ...
49
19605 data-structure-protocol sickn33/antigravity-awesome-skills
Data Structure Protocol (DSP) LLM coding agents lose context between tasks. On large codebases they spend most of their tokens on "orientation" — figuring out where things live, what depends on what, and what is safe to change. DSP solves this by externalizing the project's structural map into a persistent, queryable graph stored in a .dsp/ directory next to the code. DSP is NOT documentation for humans and NOT an AST dump. It captures three things: meaning (why an entity exists), boundaries (wh...
49
19606 bun jest migration secondsky/claude-skills
Bun Jest Migration Bun's test runner is Jest-compatible. Most Jest tests run without changes. Quick Migration 1. Remove Jest dependencies bun remove jest ts-jest @types/jest babel-jest 2. Update test script package.json: "test": "bun test" 3. Run tests bun test Import Changes // Before (Jest) import { describe , it , expect , jest } from '@jest/globals' ; // After (Bun) - No import needed, or explicit: import { describe , test , expect , mock , spyOn } from "bun:test" ; API Compatibility Ful...
49
19607 tamagui-v2 ramarivera/tamagui-skills
Universal React UI framework for web and native (v1.144.0+) This skill provides comprehensive guidance for building cross-platform React applications using Tamagui's styling system, component library, Bento premium components, and Takeout starter kit. Overview Tamagui is a universal UI framework that lets you write once and deploy to both web and React Native with optimal performance. It features: - Unified styling API - `styled()` function with design tokens, variants, and responsive patte...
49
19608 assert andrelandgraf/fullstackrecipes
Assertion Helper To set up Assertion Helper, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/assert If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/assert
49
19609 feature-pipeline notedit/happy-skills
Feature Pipeline Execute implementation tasks directly from design documents. Tasks are managed as markdown checkboxes - no separate session files needed. Quick Reference Get next task python3 scripts/task_manager.py next --file <design.md> Mark task completed python3 scripts/task_manager.py done --file <design.md> --task "Task Title" Mark task failed python3 scripts/task_manager.py fail --file <design.md> --task "Task Title" --reason "..." Show status python3 scripts/task_manager.py st...
49
19610 multi-agent-patterns guanyang/antigravity-skills
No SKILL.md available for this skill. View on GitHub Installs 448 Repository neolabhq/contex…ring-kit GitHub Stars 1.0K First Seen Jan 20, 2026
49
19611 skill-linter majesticlabs-dev/majestic-marketplace
Skill Linter When to Use Adding new skills to the marketplace Reviewing skill PRs Running quality gates before merge Checking existing skills for compliance Validation Rules Required Frontmatter Field Constraints name 1-64 chars, lowercase alphanumeric + hyphens, no leading/trailing/consecutive hyphens, must match parent directory name description 1-1024 chars, non-empty, should include keywords for discoverability Optional Frontmatter Field Constraints license Short license name or file referen...
49
19612 audio-voice-recovery pproenca/dot-skills
Forensic Audio Research Audio Voice Recovery Best Practices Comprehensive audio forensics and voice recovery guide providing CSI-level capabilities for recovering voice from low-quality, low-volume, or damaged audio recordings. Contains 45 rules across 8 categories, prioritized by impact to guide audio enhancement, forensic analysis, and transcription workflows. When to Apply Reference these guidelines when: Recovering voice from noisy or low-quality recordings Enhancing audio for transcription ...
49
19613 health-plugins laurigates/claude-plugins
/health:plugins Diagnose and fix issues with the Claude Code plugin registry. This command specifically addresses issue 14202 where project-scoped plugins incorrectly appear as globally installed. When to Use This Skill Use this skill when... Use another approach when... Fixing plugin registry corruption (issue 14202) Comprehensive health check (use /health:check ) Diagnosing project-scope vs global plugin issues Auditing plugins for relevance (use /health:audit ) Cleaning up orphaned plugin ent...
49
19614 blueprint-adr-list laurigates/claude-plugins
List Architecture Decision Records dynamically from the filesystem. Use Case : Generate ADR index tables for README files, audit ADR status, or quickly view all architectural decisions. Steps : 1. Check for ADRs ls docs/adrs/*.md 2 > /dev/null | head -1 If no ADRs found: No ADRs found in docs/adrs/ Run `/blueprint:derive-adr` to generate ADRs from project analysis. 2. Generate ADR Table ADR formats vary: some use markdown headers ( Status , Date ), others use YAML frontmatter ( status: , date:...
49
19615 pattern-test commontoolsinc/labs
Use Skill("ct") for ct CLI documentation when running commands. Test Sub-Pattern Prerequisite Check Before writing tests, verify the pattern has: pattern<Input, Output>() (not single-type pattern<State>() ) Actions typed as Stream<T> in Output interface Bound handlers returned from the pattern If missing, fix the pattern first - tests can't call .send() without proper Output types. Read First docs/common/workflows/pattern-testing.md - Full test file format and prerequisites Test Command deno tas...
49
19616 webnovel-query lingfengqaq/webnovel-writer
Copy and track progress: ``` 信息查询进度: - [ ] Step 1: 识别查询类型 - [ ] Step 2: 加载对应参考文件 - [ ] Step 3: 加载项目数据 (state.json) - [ ] Step 4: 确认上下文充足 - [ ] Step 5: 执行查询 - [ ] Step 6: 格式化输出 ``` Step 1: 识别查询类型 | 角色/主角/配角 | 标准查询 | system-data-flow.md | 境界/筑基/金丹 | 标准查询 | system-data-flow.md | 伏笔/紧急伏笔 | 伏笔分析 | foreshadowing.md | 金手指/系统 | 金手指状态 | system-data-flow.md | 节奏/Strand | 节奏分析 | strand-weave-pattern.md | 标签/实体格式 | 格式查询 | tag-specification.md Step 2: 加载对应参考文件 所有查询必须执行: ``` ca...
49
19617 contract-tester vladm3105/aidoc-flow-framework
contract-tester Description: API contract validation, breaking change detection, and consumer-driven contract testing Category: API Quality Assurance Complexity: Medium-High (schema validation + contract compatibility) Purpose Validate API implementations against CTR (Contract) documents, detect breaking changes, and ensure provider-consumer compatibility. Prevents API contract violations before deployment. Capabilities 1. CTR YAML Schema Validation Validate YAML structure against schema C...
49
19618 feature-documentation dengineproblem/agents-monorepo
Feature Documentation Expert Expert in creating comprehensive, user-focused feature documentation. Core Documentation Principles Structure and Hierarchy Purpose-First Organization : Start with what the feature does and why it matters Progressive Disclosure : Layer information from overview to implementation details Multiple Entry Points : Support different user types (end-users, developers, stakeholders) Cross-Reference Integration : Link related features, dependencies, and prerequisites Content...
49
19619 qa-engineer anyproto/anytype-ts
QA Engineer Skill Analyze recent code changes in anytype-ts, map them to testable user-facing behavior, and generate Playwright E2E tests in the ../anytype-desktop-suite repository. When to Use Activate this skill when: After implementing a new feature or modifying existing functionality After editor/component changes that affect user interactions The user explicitly asks to add tests for recent changes After completing a task referenced in CLAUDE.md's "QA Engineer" section Principles Change-dri...
49
19620 jungian-psychologist erichowens/some_claude_skills
Jungian Psychologist Expert in Jungian analytical psychology, offering guidance grounded in Jung's original texts and post-Jungian developments. When to Use This Skill Use for: Shadow work exploration and exercises Dream interpretation frameworks Archetypal pattern analysis Active imagination guidance Understanding the individuation process Complex theory application Jungian concept education Addiction and recovery through depth psychology lens Visual mapping of the psyche (diagrams, mandala...
49
19621 neon-test-branches andrelandgraf/fullstackrecipes
Neon Test Branches To set up Neon Test Branches, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/neon-test-branches If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/neon-test-branches
49
19622 slide-creator roasbeef/claude-files
Slide Creator — HTML → PDF Presentations Build slide decks as HTML, export to pixel-perfect 16:9 PDF via headless Chromium. Output format: PDF — not Microsoft PowerPoint (.pptx). The PDF preserves exact layout, fonts, and colors across all devices. Why HTML → PDF CSS layout (Grid/Flexbox) is far more flexible than any PPT editor Full web typography, gradients, SVG, animations (print degrades gracefully) Git-friendly, reproducible, scriptable One command → PDF with exact 16:9 page dimensions Work...
49
19623 examples-auto-run openai/openai-agents-js
examples-auto-run What it does Runs uv run examples/run_examples.py with: EXAMPLES_INTERACTIVE_MODE=auto (auto-input/auto-approve). Per-example logs under .tmp/examples-start-logs/. Main summary log path passed via --main-log (also under .tmp/examples-start-logs/). Generates a rerun list of failures at .tmp/examples-rerun.txt when --write-rerun is set. Provides start/stop/status/logs/tail/collect/rerun helpers via run.sh. Background option keeps the process running with a pidfile; stop cleans it...
49
19624 code-review laurigates/claude-plugins
Code Review When to use this skill Reviewing pull requests Checking code quality Providing feedback on implementations Identifying potential bugs Suggesting improvements Security audits Performance analysis Instructions Step 1: Understand the context Read the PR description : What is the goal of this change? Which issues does it address? Are there any special considerations? Check the scope : How many files changed? What type of changes? (feature, bugfix, refactor) Are tests included? Step 2: Hi...
49
19625 music connorads/dotfiles
ElevenLabs Music Generation Generate music from text prompts - supports instrumental tracks, songs with lyrics, and fine-grained control via composition plans. Setup: See Installation Guide . For JavaScript, use @elevenlabs/* packages only. Quick Start Python from elevenlabs . client import ElevenLabs client = ElevenLabs ( ) audio = client . music . compose ( prompt = "A chill lo-fi hip hop beat with jazzy piano chords" , music_length_ms = 30000 ) with open ( "output.mp3" , "wb" ) as f : for chu...
49
19626 material-3-expressive albermonte/android-skills
Material 3 Expressive (Android UI/UX) Overview Design and review Android UI/UX using Material 3 Expressive. Prioritize component-token requests for dialogs, sheets, modals, toolbars, and buttons, with guidance plus token references by default. Intake Questions Target device class (phone, tablet, foldable, Wear OS) Window size class (Compact, Medium, Expanded) Brand constraints and dynamic color usage Primary action(s) and desired hero moments (1-2 max) Motion constraints and reduced-motion expec...
49
19627 refactor-flow vladm3105/aidoc-flow-framework
refactor-flow Description: Code refactoring assistance, technical debt management, and documentation synchronization Category: Code Quality & Maintenance Complexity: Medium-High (code transformation + traceability maintenance) Purpose Improve code quality through systematic refactoring while maintaining traceability to specifications. Identify refactoring opportunities, guide safe transformations, and ensure documentation stays synchronized with code changes. Capabilities 1. Code Smell Det...
49
19628 youtube-transcript nicepkg/ai-workflow
YouTube Transcript Extract transcripts from YouTube videos using the youtube-transcript-api. Usage Run the script with a YouTube URL or video ID: uv run scripts/get_transcript.py "VIDEO_URL_OR_ID" With timestamps: uv run scripts/get_transcript.py "VIDEO_URL_OR_ID" --timestamps Defaults Without timestamps (default): Plain text, one line per caption segment With timestamps: [MM:SS] text format (or [HH:MM:SS] for longer videos) Supported URL Formats https://www.youtube.com/watch?v=VIDEO_ID ...
49
19629 confluence-page-viewer delexw/claude-code-misc
Confluence Page Viewer Fetch and display Confluence page content using npx confluence-cli . Arguments $ARGUMENTS[0] — Confluence page URL $ARGUMENTS[1] — (optional) Output directory for persisting the page content. Defaults to .implement-assets/confluence When invoked by the orchestrator (e.g. implement ), $ARGUMENTS[1] is provided. When used standalone, it defaults to .implement-assets/confluence . System Requirements Node.js and npm/npx available confluence-cli package ( https://github.com/pch...
49
19630 blueprint-work-order laurigates/claude-plugins
Generate a work-order document for isolated subagent execution with optional GitHub issue integration. Flags Flag Description --no-publish Create local work-order only, skip GitHub issue creation --from-issue N Create work-order from existing GitHub issue N --from-prp NAME Create work-order from existing PRP (auto-populates context) Default behavior : Creates both local work-order AND GitHub issue with work-order label. Prerequisites Blueprint Development initialized ( docs/blueprint/ exists) At...
49
19631 howto-docs existential-birds/beagle
How-To Documentation Skill This skill provides patterns for writing effective How-To guides in documentation. How-To guides are task-oriented content for users who have a specific goal in mind. Purpose & Audience Target readers: Users with a specific goal they want to accomplish Assumes some familiarity with the product (not complete beginners) Looking for practical, actionable steps Want to get things done, not learn concepts How-To guides are NOT: Tutorials (which teach through explorati...
49
19632 mermaid-diagrams connorads/dotfiles
Mermaid Diagramming Create professional software diagrams using Mermaid's text-based syntax. Mermaid renders diagrams from simple text definitions, making diagrams version-controllable, easy to update, and maintainable alongside code. Core Syntax Structure All Mermaid diagrams follow this pattern: diagramType definition content Key principles: First line declares diagram type (e.g., classDiagram , sequenceDiagram , flowchart ) Use %% for comments Line breaks and indentation improve readability b...
49
19633 zellij zenobi-us/dotfiles
Quick reference for Zellij CLI commands to manipulate running sessions. Covers session management, tabs, and panes. When to Use - Creating or attaching to Zellij sessions - Managing tabs and panes programmatically - Need CLI commands (not keybindings) - Automating Zellij operations When NOT to use: - Looking for keybindings (this is CLI only) - Layout file syntax - Configuration options Quick Reference Sessions | Create/attach session | `zellij attach --create <name>` or `zellij ...
49
19634 test-full laurigates/claude-plugins
Context Project files: ! find . -maxdepth 1 \( -name 'pyproject.toml' -o -name 'package.json' -o -name 'Cargo.toml' -o -name 'go.mod' \) Test directories: ! find . -type d \( -name "test*" -o -name "__tests__" \) E2E setup: ! find . -maxdepth 1 \( -name 'playwright.config.*' -o -name 'cypress.config.*' \) CI environment: ! echo "CI=$CI GITHUB_ACTIONS=$GITHUB_ACTIONS" Parameters --coverage : Generate coverage report --parallel : Force parallel execution --report : Generate detailed HTML report Yo...
49
19635 kommo vm0-ai/vm0-skills
Kommo API Use the Kommo API via direct curl calls for CRM management including leads, contacts, companies, tasks, and sales pipelines. Official docs: https://developers.kommo.com/ When to Use Use this skill when you need to: Manage leads - Create, list, update leads in your sales pipeline Handle contacts - Add and retrieve customer contact information Track companies - Manage company records and associations Create tasks - Schedule follow-ups and meetings View pipelines - Get sales pipeline...
49
19636 components-version-badge laurigates/claude-plugins
/components:version-badge Implement a version badge component that displays version number, git commit, and recent changelog in a tooltip. Context Framework config: ! find . -maxdepth 1 \( -name "next.config.*" -o -name "nuxt.config.*" -o -name "svelte.config.*" -o -name "vite.config.*" \) Package manager: ! find . -maxdepth 1 \( -name "package.json" -o -name "bun.lockb" -o -name "pnpm-lock.yaml" \) Styling: ! find . -maxdepth 1 \( -name "tailwind.config.*" -o -name "postcss.config.*" \) UI libr...
49
19637 bun-add laurigates/claude-plugins
/bun:add Add a package to dependencies using Bun. Parameters package (required): Package name, optionally with version (e.g., lodash , react@18 ) --dev : Add to devDependencies --exact : Pin exact version (no ^ range) Execution bun add { { if DEV } } --dev { { endif } } { { if EXACT } } --exact { { endif } } $PACKAGE Examples Add runtime dependency bun add express Add dev dependency bun add --dev typescript vitest Pin exact version bun add --exact react@18.2.0 Add to specific workspace bun a...
49
19638 githubpages julianobarbosa/claude-code-skills
Complete guide for deploying, configuring, and managing GitHub Pages sites. Quick Reference | User/Org Site | `<username>.github.io` | `https://<username>.github.io` | Project Site | Any repository name | `https://<username>.github.io/<repo>` Availability: - Public repos: GitHub Free (all plans) - Private repos: GitHub Pro, Team, Enterprise Workflow Routing When executing a workflow, output this notification directly: ``` Running the WorkflowName workflow from the GithubPages sk...
49
19639 git-worktrees jamesrochabrun/skills
Git Worktrees Overview Git worktrees enable checking out multiple branches simultaneously in separate directories, all sharing the same repository. Create a worktree instead of stashing changes or cloning separately. Core principle: One worktree per active branch. Switch contexts by changing directories, not branches. Core Concepts Concept Description Main worktree Original working directory from git clone or git init Linked worktree Additional directories created with git worktree add Shared .g...
49
19640 flask-expert personamanagmentlayer/pcl
Expert guidance for Flask web development, building REST APIs, using extensions, and production deployment. Core Concepts Flask Fundamentals - Routing and views - Request/response handling - Templates with Jinja2 - Blueprints for modularity - Application factory pattern - Configuration management Flask Extensions - Flask-SQLAlchemy (ORM) - Flask-Migrate (database migrations) - Flask-Login (authentication) - Flask-RESTful (REST APIs) - Flask-JWT-Extended (JWT tokens) - Flask-COR...
49
19641 python-dev databricks-solutions/ai-dev-kit
Python Development Rules Overview Python development guidance focused on code quality, error handling, testing, and environment management. Apply when working with Python code or Jupyter notebooks. When to Use This Skill Use this skill when: Writing new Python code or modifying existing Python files Creating or updating Jupyter notebooks Setting up Python development environments Writing or updating tests Reviewing Python code for quality and best practices Code Quality Principles DRY (Don't Rep...
49
19642 goal setter eddiebe147/claude-settings
Goal Setter The Goal Setter skill guides you through creating well-formed, achievable goals and maintaining accountability throughout your journey. Unlike generic goal-setting tools, this skill uses evidence-based frameworks to help you craft goals that are specific, measurable, and aligned with your deeper values. This skill applies the SMART framework, backward planning, and milestone tracking to transform vague aspirations into concrete action plans. It helps you identify potential obstacles ...
49
19643 create-pr cartridge-gg/docs
create-pr Overview This guide covers best practices for creating pull requests in the warp repository, including merging master, running presubmit checks, linking Linear tasks, ensuring appropriate test coverage, and structuring your PR for effective review.
49
19644 npu-smi ascend-ai-coding/awesome-ascend-skills
npu-smi Command Reference Quick reference for Huawei Ascend NPU device management commands. Quick Start npu-smi info -l List all devices npu-smi info -t health -i 0 Check device health npu-smi info -t temp -i 0 -c 0 Check temperature npu-smi info -t power -i 0 -c 0 Check power npu-smi info -t memory -i 0 -c 0 Check memory Device Queries Basic Information npu-smi info -l List devices npu-smi info -t health -i < id > Health status (OK/Warning/Error) npu-smi info -t board -i < id > Board de...
49
19645 git-security-checks laurigates/claude-plugins
Expert guidance for pre-commit security validation and secret detection using detect-secrets and pre-commit hooks. Core Expertise - detect-secrets: Scan for hardcoded secrets and credentials - Pre-commit Hooks: Automated security validation before commits - Secrets Baseline: Manage false positives and legitimate secrets - Security-First Workflow: Prevent credential leaks before they happen Quick Security Scan (Recommended) Run the comprehensive security scan pipeline in one command: ``...
49
19646 secret-code ukgovernmentbeis/inspect_ai
Secret Code Skill To complete this task, you MUST follow these exact steps: Step 1: Read the Asset Read the contents of assets/secret.txt and report what it says to the user. Step 2: Run the Script Execute the script scripts/reveal.sh to get the complete answer. IMPORTANT RULES You MUST read the asset file first You MUST run the provided script to get the answer Do NOT use any other commands besides reading the asset and running the script Do NOT try to solve the problem any other way
49
19647 rule-auditor oimiragieo/agent-studio
Rule Auditor Skill Step 1: Identify Applicable Skills Find relevant expert skills based on the code being audited: File Type Expert Skills .ts , .tsx typescript-expert, react-expert .py python-backend-expert .go go-expert .java java-expert *.test.* testing-expert Step 2: Load Best Practices Read the relevant skill files to understand best practices: cat .claude/skills/ [ skill-name ] /SKILL.md Extract key rules and patterns to check for. Step 3: Scan Target Files Analyze the target files for vio...
49
19648 personal-financial-advisor tringo0108/z-command
Personal Financial Advisor Comprehensive toolkit for personal finance planning, helping individuals achieve financial wellness through budgeting, debt management, savings, investing, and goal-based planning. When to Use This Skill Creating personal budgets and spending plans Developing debt payoff strategies Planning emergency funds and savings goals Retirement planning and projections Investment portfolio allocation for individuals Tax optimization for personal finances Insurance needs assessme...
49
19649 frontend-design project-n-e-k-o/n.e.k.o
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
49
19650 astro-developer withastro/astro
Astro Developer Skill Context-loading skill for AI agents and developers working in the Astro monorepo. Loads relevant documentation based on your task. Quick Decision Matrix What are you doing? → Read these files: Task Primary Docs Supporting Docs Adding a core feature architecture.md , constraints.md testing.md Fixing a bug debugging.md architecture.md Writing/fixing tests testing.md constraints.md Creating an integration Explore packages/integrations/ for examples testing.md Understanding arc...
49