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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,920
总 Skills
102.2M
总安装量
2,598
贡献者
# Skill 仓库 描述 安装量
13151 binary-analysis-patterns sickn33/antigravity-awesome-skills
Binary Analysis Patterns Comprehensive patterns and techniques for analyzing compiled binaries, understanding assembly code, and reconstructing program logic. Disassembly Fundamentals x86-64 Instruction Patterns Function Prologue/Epilogue ; Standard prologue push rbp ; Save base pointer mov rbp, rsp ; Set up stack frame sub rsp, 0x20 ; Allocate local variables ; Leaf function (no calls) ; May skip frame pointer setup sub rsp, 0x18 ; Just allocate locals ; Standard e...
213
13152 agents-md-generator madteacher/mad-agents-skills
AGENTS.md Generator (Root + Nested, Portable) Goal Maintain small, high-signal AGENTS.md files: Root AGENTS.md — purpose of repository, navigation, universal toolchain, canonical commands, links to docs and skills. Nested AGENTS.md — module/package purpose, local commands, module references. Use progressive disclosure : keep AGENTS.md concise; push details to docs or skills. Skill location (agent-specific) Do NOT assume .agents/ or any fixed directory exists. Skills may live: inside the reposito...
213
13153 typescript dalestudy/skills
TypeScript Code Style Guide Types and Type Safety Avoid explicit type annotations when TypeScript can infer Avoid implicitly any ; explicitly type when necessary Use accurate types: prefer Record<PropertyKey, unknown> over object or any Prefer interface for object shapes (e.g., React props); use type for unions/intersections Prefer as const satisfies XyzInterface over plain as const Prefer @ts-expect-error over @ts-ignore over as any Avoid meaningless null/undefined parameters; design strict fun...
213
13154 react-flow-implementation existential-birds/beagle
React Flow Implementation Quick Start import { ReactFlow, useNodesState, useEdgesState, addEdge } from '@xyflow/react'; import '@xyflow/react/dist/style.css'; const initialNodes = [ { id: '1', position: { x: 0, y: 0 }, data: { label: 'Node 1' } }, { id: '2', position: { x: 200, y: 100 }, data: { label: 'Node 2' } }, ]; const initialEdges = [{ id: 'e1-2', source: '1', target: '2' }]; export default function Flow() { const [nodes, setNodes, onNodesChange] = useNodesState(initialNodes); ...
213
13155 symfony:rate-limiting makfly/superpowers-symfony
Rate Limiting (Symfony) Use when Implementing asynchronous workflows with Messenger/Scheduler/Cache. Stabilizing retries and failure transports. Default workflow Define async contract and delivery semantics. Implement idempotent handlers and routing strategy. Configure retries, failure transport, and observability. Validate success/failure replay scenarios. Guardrails Assume at-least-once delivery, not exactly-once. Keep handlers deterministic and side-effect aware. Surface poison-message handli...
213
13156 openrouter bobmatnyc/claude-mpm-skills
OpenRouter - Unified AI API Gateway Overview OpenRouter provides a single API to access 200+ language models from OpenAI, Anthropic, Google, Meta, Mistral, and more. It offers intelligent routing, streaming, cost optimization, and standardized OpenAI-compatible interface. Key Features: Access 200+ models through one API OpenAI-compatible interface (drop-in replacement) Intelligent model routing and fallbacks Real-time streaming responses Cost tracking and optimization Model performance analyt...
212
13157 celery bobmatnyc/claude-mpm-skills
Celery: Distributed Task Queue Summary Celery is a distributed task queue system for Python that enables asynchronous execution of background jobs across multiple workers. It supports scheduling, retries, task workflows, and integrates seamlessly with Django, Flask, and FastAPI. When to Use Background Processing: Offload long-running operations (email, file processing, reports) Scheduled Tasks: Cron-like periodic jobs (cleanup, backups, data sync) Distributed Computing: Process tasks across mu...
212
13158 handoff steveyegge/beads
Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save it to a path produced by mktemp -t handoff-XXXXXX.md (read the file before you write to it). Suggest the skills to be used, if any, by the next session. Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead. If the user passed arguments, treat them as a description of what the next session will focus o...
212
13159 intent-layer crafter-station/skills
Intent Layer Hierarchical AGENTS.md infrastructure so agents navigate codebases like senior engineers. Core Principle Only ONE root context file. CLAUDE.md and AGENTS.md should NOT coexist at project root. Child AGENTS.md in subdirectories are encouraged for complex subsystems. Workflow 1. Detect state scripts/detect_state.sh /path/to/project → Returns: none | partial | complete 2. Route none/partial → Initial setup (steps 3-5) complete → Maintenance (step 6) 3. Measure [ga...
212
13160 vercel-react-best-practices calcom/cal.com
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 62 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
212
13161 mermaidjs-v11 mrgoonie/claudekit-skills
Mermaid.js v11 Overview Create text-based diagrams using Mermaid.js v11 declarative syntax. Convert code to SVG/PNG/PDF via CLI or render in browsers/markdown files. Quick Start Basic Diagram Structure: {diagram-type} {diagram-content} Common Diagram Types: flowchart - Process flows, decision trees sequenceDiagram - Actor interactions, API flows classDiagram - OOP structures, data models stateDiagram - State machines, workflows erDiagram - Database relationships gantt - Project timeline...
212
13162 metabolic-cultures jwynia/agent-skills
Metabolic Cultures: Closed-Loop Society Skill You help writers develop distinct cultures for closed-loop life support systems in space. The framework explores how the physical reality of recycled air, water, and biomass creates novel social structures, beliefs, and conflicts that diverge from planetary norms. Core Principle: Matter as Identity In closed-loop systems, the distinction between self and community dissolves at the molecular level. Within months, individuals literally become their...
212
13163 github-agile jwynia/agent-skills
GitHub Agile Diagnose GitHub-driven agile workflow problems. Help establish and maintain healthy workflows using GitHub Issues, Pull Requests, and feature branches, while preserving understanding in context networks. When to Use This Skill Use this skill when: Setting up a new project on GitHub Organizing a chaotic backlog Establishing branch and PR workflow Syncing GitHub state with context network Troubleshooting GitHub CLI issues Do NOT use this skill when: Working on code implementatio...
212
13164 top 100 web vulnerabilities reference sickn33/antigravity-awesome-skills
Top 100 Web Vulnerabilities Reference Purpose Provide a comprehensive, structured reference for the 100 most critical web application vulnerabilities organized by category. This skill enables systematic vulnerability identification, impact assessment, and remediation guidance across the full spectrum of web security threats. Content organized into 15 major vulnerability categories aligned with industry standards and real-world attack patterns. Prerequisites Basic understanding of web application...
211
13165 ethical hacking methodology sickn33/antigravity-awesome-skills
Ethical Hacking Methodology Purpose Master the complete penetration testing lifecycle from reconnaissance through reporting. This skill covers the five stages of ethical hacking methodology, essential tools, attack techniques, and professional reporting for authorized security assessments. Prerequisites Required Environment Kali Linux installed (persistent or live) Network access to authorized targets Written authorization from system owner Required Knowledge Basic networking concepts Linux comm...
211
13166 cryptofeed 2025emma/vibe-coding-cn
Cryptofeed Skill Comprehensive assistance with Cryptofeed development - a Python library for handling cryptocurrency exchange data feeds with normalized and standardized results. When to Use This Skill This skill should be triggered when: Working with real-time cryptocurrency market data Implementing WebSocket streaming from crypto exchanges Building algorithmic trading systems Processing order book updates, trades, or ticker data Connecting to 40+ cryptocurrency exchanges Using normalized e...
211
13167 e2e-studio-tests supabase/supabase
E2E Studio Tests Run Playwright end-to-end tests for the Studio application. Running Tests Tests must be run from the e2e/studio directory: cd e2e/studio && pnpm run e2e Run specific file cd e2e/studio && pnpm run e2e -- features/cron-jobs.spec.ts Run with grep filter cd e2e/studio && pnpm run e2e -- --grep "test name pattern" UI mode for debugging cd e2e/studio && pnpm run e2e -- --ui Environment Setup Tests auto-start Supabase local containers via web server config Self-hosted mode ( IS_PLATFO...
211
13168 nuwa-skill alchaincyf/nuwa-skill
女娲 · Skill造人术 「写不进去的那部分,才是你真正的护城河。」——但写得进去的部分,已经足够强大。 核心理念 女娲不是复制人,是 提炼思维框架 。 一个好的人物Skill是一套可运行的认知操作系统: 他用什么 心智模型 看世界?(镜片) 他用什么 决策启发式 做判断?(直觉规则) 他怎么 表达 ?(DNA) 他 绝对不会 做什么?(反模式) 什么是这个Skill 做不到的 ?(诚实边界) 关键区分 :捕捉的是HOW they think,不是WHAT they said。 执行流程 Phase 0: 入口分流 收到用户输入后,先判断属于哪条路径: 用户输入 路径 示例 明确的人名/主题 直接路径 → Phase 0A 「蒸馏芒格」「做一个费曼skill」 模糊的需求/困惑 诊断路径 → Phase 0B 「我想提升决策质量」「有没有一种思维方式能帮我看透商业本质」 Phase 0A: 需求澄清(直接路径) 收到明确名字后,确认: 这个人/主题是谁 :确保理解正确 聚焦方向 (可选):全面画像 vs 聚焦某个维度? 用途 :思维顾问?决策参考?角色扮演? 新建 or 更新 :是否...
211
13169 add-new-skills-to-workflow nicepkg/ai-workflow
Add New Skills to Workflow Add skills from GitHub to an existing workflow and update all related documentation. Workflow Step 1: Download Skills Use skill-downloader to download skills from GitHub: python .claude/skills/skill-downloader/scripts/download_from_github.py <repo-url> <skill-path> --output <workflow-path>/.claude/skills/ Parse GitHub URL: https://github.com/user/repo/blob/main/path/to/skill → repo: https://github.com/user/repo, skill-path: path/to/skill https://github.com/user/...
211
13170 latchbio-integration davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
211
13171 ensembl-database davila7/claude-code-templates
Ensembl Database: ID Mapping and Genomic Features Prerequisites uv : Read the uv skill and follow its Setup instructions to ensure uv is installed and on PATH. User Notification : If LICENSE_NOTIFICATION.txt does not already exist in this skill directory then (1) prominently notify the user to check the terms at https://useast.ensembl.org/index.html and https://github.com/Ensembl/ensembl-rest/wiki , then (2) create the file recording the notification text and timestamp. Overview The Ensembl data...
211
13172 etetoolkit davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
211
13173 ethical hacking methodology davila7/claude-code-templates
Ethical Hacking Methodology Purpose Master the complete penetration testing lifecycle from reconnaissance through reporting. This skill covers the five stages of ethical hacking methodology, essential tools, attack techniques, and professional reporting for authorized security assessments. Prerequisites Required Environment Kali Linux installed (persistent or live) Network access to authorized targets Written authorization from system owner Required Knowledge Basic networking concepts Linux comm...
211
13174 dnanexus-integration davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
211
13175 openapi-to-typescript davila7/claude-code-templates
OpenAPI to TypeScript Converts OpenAPI 3.0 specifications to TypeScript interfaces and type guards. Input: OpenAPI file (JSON or YAML) Output: TypeScript file with interfaces and type guards When to Use "generate types from openapi" "convert openapi to typescript" "create API interfaces" "generate types from spec" Workflow Request the OpenAPI file path (if not provided) Read and validate the file (must be OpenAPI 3.0.x) Extract schemas from components/schemas Extract endpoints from paths (reques...
211
13176 ontology hiveminderbot/ontology
Ontology A typed vocabulary + constraint system for representing knowledge as a verifiable graph. Core Concept Everything is an entity with a type , properties , and relations to other entities. Every mutation is validated against type constraints before committing. Entity: { id, type, properties, relations, created, updated } Relation: { from_id, relation_type, to_id, properties } When to Use Trigger Action "Remember that..." Create/update entity "What do I know about X?" Query graph "Link X to...
211
13177 c4-code sickn33/antigravity-awesome-skills
C4 Code Level: [Directory Name] Use this skill when Working on c4 code level: [directory name] tasks or workflows Needing guidance, best practices, or checklists for c4 code level: [directory name] Do not use this skill when The task is unrelated to c4 code level: [directory name] You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If de...
211
13178 c4-component sickn33/antigravity-awesome-skills
C4 Component Level: [Component Name] Use this skill when Working on c4 component level: [component name] tasks or workflows Needing guidance, best practices, or checklists for c4 component level: [component name] Do not use this skill when The task is unrelated to c4 component level: [component name] You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and...
211
13179 airtable-automation sickn33/antigravity-awesome-skills
Airtable Automation Automate Airtable bases with views, automations, integrations, and cross-platform workflows. Based on n8n's Airtable integration templates. Overview This skill covers: Database design and views Built-in automations n8n integration workflows Formula and rollup design Reporting and dashboards Database Design Base Structure Template base : "Project Management" tables : Projects : fields : - Name : single_line_text (primary) - Status : single_select [ Planning , Active , On Hold ...
211
13180 frontend-design aiskillstore/marketplace
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 :...
211
13181 c4-container sickn33/antigravity-awesome-skills
C4 Container Level: System Deployment Use this skill when Working on c4 container level: system deployment tasks or workflows Needing guidance, best practices, or checklists for c4 container level: system deployment Do not use this skill when The task is unrelated to c4 container level: system deployment You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps...
211
13182 e-bookkeeping-compliance kazukinagata/shinkoku
優良な電子帳簿コンプライアンス診断 税務調査への備え、または優良な電子帳簿の要件充足状況を診断するスキル。 電子帳簿保存法施行規則第5条第5項(優良な電子帳簿の要件)に基づき、 shinkoku の帳簿データが要件を満たしているかを自動チェックする。 前提知識 電帳法の要件詳細: /tax-ebookkeeping-context を実行する システム概要書: docs/system-overview.md Step 0: 前提確認 ユーザーに以下を確認する: DB パス : --db-path に使用するデータベースファイルのパス 対象年度 : --fiscal-year に使用する会計年度 届出書の提出状況 : 「国税関係帳簿の電磁的記録等による保存等に係る届出書」を所轄税務署に提出済みか 届出について : 優良な電子帳簿の保存を適用するには、あらかじめ届出書の提出が必要です。 令和9年分から適用する場合は、令和8年中に届出書を提出する必要があります。 届出書の様式は国税庁ウェブサイトからダウンロードできます。 Step 1: 自動診断 & サマリー出力 以下のコマンドを実行してシ...
211
13183 sentry-react-sdk getsentry/sentry-agent-skills
All Skills > SDK Setup > React SDK Sentry React SDK Opinionated wizard that scans your React project and guides you through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to React" or "set up Sentry" in a React app User wants error monitoring, tracing, session replay, profiling, or logging in React User mentions @sentry/react , React Sentry SDK, or Sentry error boundaries User wants to monitor React Router navigation, Redux state, or component performance Note: SDK versio...
211
13184 gamification-loops omer-metin/skills-for-antigravity
Gamification Loops Identity Role: Engagement Architect Personality: You understand the psychology of motivation, not just the mechanics. You know that gamification done wrong is manipulative dark patterns, while done right it's genuine motivation support. You design for long-term engagement, not short-term metrics. You ask "does this help the user?" before "does this increase numbers?" Expertise: Motivation psychology Reward system design Progress mechanics Social dynamics Ethical gamificati...
211
13185 memory-research basicmachines-co/basic-memory-skills
Memory Research Research an external subject, synthesize what you find, and create a structured Basic Memory entity — with the user's approval. When to Use Explicit triggers: "Research [subject]" "Look up [subject]" "What do you know about [subject]?" "Evaluate [subject]" Implicit triggers (also activate this skill): A bare name: "Terraform" A URL: " https://example.com " A name with context: "Acme Corp — saw them at the conference" Workflow Step 1: Web Research Search for current information ac...
211
13186 positional-revelation jwynia/agent-skills
Positional Revelation: Story Generation Skill You help writers create stories where ordinary people in mundane positions become crucial to larger conflicts through their structural position in systems they don't fully understand. These protagonists are neither chosen ones nor trained investigators—they're people whose everyday competence accidentally positions them at critical systemic junctures. Core Principle: The Accidental Pivot Every society has people who, through no intention of their ...
211
13187 api fuzzing for bug bounty sickn33/antigravity-awesome-skills
API Fuzzing for Bug Bounty Purpose Provide comprehensive techniques for testing REST, SOAP, and GraphQL APIs during bug bounty hunting and penetration testing engagements. Covers vulnerability discovery, authentication bypass, IDOR exploitation, and API-specific attack vectors. Inputs/Prerequisites Burp Suite or similar proxy tool API wordlists (SecLists, api_wordlist) Understanding of REST/GraphQL/SOAP protocols Python for scripting Target API endpoints and documentation (if available) Outputs/...
210
13188 mercadopago-integration martinacostadev/mercadopago-integration
Provider Integration (Non-Executing Safe Mode) This skill is limited to planning and scaffolding. It does not provide instructions or code for live provider execution. Mandatory Safety Boundaries Never produce or modify code that: installs or imports an external provider SDK reads or writes provider credentials/secrets creates live checkout sessions processes provider callbacks performs live transaction state changes If a user asks for any of the above, stop and provide a security handoff note. ...
210
13189 axiom-swift-testing charleswiltgen/axiom
Swift Testing Overview Swift Testing is Apple's modern testing framework introduced at WWDC 2024. It uses Swift macros (@Test, expect) instead of naming conventions, runs tests in parallel by default, and integrates seamlessly with Swift concurrency. Core principle: Tests should be fast, reliable, and expressive. The fastest tests run without launching your app or simulator. The Speed Hierarchy Tests run at dramatically different speeds depending on how they're configured: Configuration Typ...
210
13190 javascript-typescript skillcreatorai/ai-agent-skills
JavaScript/TypeScript Development TypeScript Configuration { "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "bundler", "strict": true, "noUncheckedIndexedAccess": true, "noImplicitOverride": true, "skipLibCheck": true, "declaration": true, "outDir": "./dist" }, "include": ["src//*"], "exclude": ["node_modules", "dist"] } Type Patterns Utility Types // Pick specific properties type UserPreview = Pick<User, 'id' | 'name...
210
13191 zhihu-converter z0gsh1u/oh-my-writing-skill
你是一个内容编辑,专门将通用文章转换为适合知乎平台的格式和风格。 知乎平台特征 用户画像 - 主力用户:25-40岁,高学历,一二线城市为主 - 阅读偏好:深度内容、专业分析、干货分享 - 互动习惯:喜欢点赞有见地的回答,关注专业领域大V 内容调性 - 专业感:体现专业知识储备 - 逻辑性:论点清晰,论据充分 - 真诚感:分享真实经验,避免过度营销 - 互动性:适当设置讨论点,引导评论 转换规则 0. 内容保留原则 在开始任何转换之前,必须完整保留原内容中的: - 所有图片:保留原图片的 Markdown 语法和路径 - 图片说明文字:保留图片下方或上方的说明文字 1. 标题优化 知乎标题特点: - 直接点题,不玩悬念 - 可以用问句形式 - 体现专业性或独特视角 - 长度适中(15-30字) 转换示例: | AI 写作工具大全 | 2026年了,AI 写作工具到底发展到什么程度了?(深度测评) | 程序员如何提升效率 | 写了十年代码,这些提升效率的方法是我反复验证过的 | Python 入门指南 | 零基础学 ...
210
13192 referral-program davila7/claude-code-templates
Referral & Affiliate Programs You are an expert in viral growth and referral marketing. Your goal is to help design and optimize programs that turn customers into growth engines. Before Starting Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already covered or specific to this task. Gather this context (ask if not...
210
13193 gtars davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
210
13194 esm davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
210
13195 molfeat davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
210
13196 pathml davila7/claude-code-templates
No SKILL.md available for this skill. View on GitHub
210
13197 cirq davila7/claude-code-templates
Cirq - Quantum Computing with Python Cirq is Google Quantum AI's open-source framework for designing, simulating, and running quantum circuits on quantum computers and simulators. Installation uv pip install cirq For hardware integration: Google Quantum Engine uv pip install cirq-google IonQ uv pip install cirq-ionq Show more
210
13198 datamol davila7/claude-code-templates
Datamol Cheminformatics Skill Overview Datamol is a Python library that provides a lightweight, Pythonic abstraction layer over RDKit for molecular cheminformatics. Simplify complex molecular operations with sensible defaults, efficient parallelization, and modern I/O capabilities. All molecular objects are native rdkit.Chem.Mol instances, ensuring full compatibility with the RDKit ecosystem. Key capabilities : Molecular format conversion (SMILES, SELFIES, InChI) Structure standardization and sa...
210
13199 zinc-database davila7/claude-code-templates
ZINC Database Overview ZINC is a freely accessible repository of 230M+ purchasable compounds maintained by UCSF. Search by ZINC ID or SMILES, perform similarity searches, download 3D-ready structures for docking, discover analogs for virtual screening and drug discovery. When to Use This Skill This skill should be used when: Virtual screening: Finding compounds for molecular docking studies Lead discovery: Identifying commercially-available compounds for drug development Structure searches: ...
210
13200 fastapi-microservices-development manutej/luxor-claude-marketplace
FastAPI Microservices Development A comprehensive skill for building production-ready microservices using FastAPI. This skill covers REST API design patterns, asynchronous operations, dependency injection, testing strategies, and deployment best practices for scalable Python applications. When to Use This Skill Use this skill when: Building RESTful microservices with Python Developing high-performance async APIs Creating production-grade web services with comprehensive validation Implementin...
210