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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,735
总 Skills
170.0M
总安装量
2,753
贡献者
# Skill 仓库 描述 安装量
14401 ln-743-test-infrastructure levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-740-quality-setup Sets up testing frameworks, coverage tools, and sample tests for projects. Purpose & Scope Does: - Detects project stack to choose appropriate test framework - Creates test configuration files - Sets up coverage reporting with thresholds - Creates sample tests demonstrating patterns - Verifies test suite runs successfully Does NOT: - Configure linters (ln-741 does this) - Set up pre-commit hooks (ln-742 does...
325
14402 to-issues camacho/ai-skills
To Issues Break a plan into independently-grabbable GitHub issues using vertical slices (tracer bullets). Process 1. Gather context Work from whatever is already in the conversation context. If the user passes a GitHub issue number or URL as an argument, fetch it with gh issue view <number> (with comments). 2. Explore the codebase (optional) If you have not already explored the codebase, do so to understand the current state of the code. 3. Draft vertical slices Break the plan into tracer bullet...
325
14403 oauth-implementation mindrally/skills
OAuth Implementation Overview Implement industry-standard OAuth 2.0 and OpenID Connect authentication flows with JWT tokens, refresh tokens, and secure session management. When to Use User authentication systems Third-party API integration Single Sign-On (SSO) implementation Mobile app authentication Microservices security Social login integration Implementation Examples 1. Node.js OAuth 2.0 Server // oauth-server.js - Complete OAuth 2.0 implementation const express = require('express'); const...
325
14404 singleton-pattern patternsdev/skills
Singleton Pattern Table of Contents When to Use When NOT to Use Instructions Details Source Singletons are classes which can be instantiated once, and can be accessed globally. This single instance can be shared throughout our application, which makes Singletons great for managing global state in an application. When to Use Use this when you need exactly one instance of a class shared across the entire application This is helpful for managing global state, configuration, or shared resources When...
325
14405 brand-voice anthropics/knowledge-work-plugins
Brand Voice Build a durable voice profile from real source material, then use that profile everywhere instead of re-deriving style from scratch or defaulting to generic AI copy. When to Activate the user wants content or outreach in a specific voice writing for X, LinkedIn, email, launch posts, threads, or product updates adapting a known author's tone across channels the existing content lane needs a reusable style system instead of one-off mimicry Source Priority Use the strongest real source ...
325
14406 streamlit-snowflake jezweb/claude-skills
Streamlit in Snowflake Skill Build and deploy Streamlit apps natively within Snowflake, including Marketplace publishing as Native Apps. Quick Start 1. Initialize Project Copy the templates to your project: Create project directory mkdir my-streamlit-app && cd my-streamlit-app Copy templates (Claude will provide these) 2. Configure snowflake.yml Update placeholders in snowflake.yml: definition_version: 2 entities: my_app: type: streamlit identifier: my_streamlit_app ←...
324
14407 sglang davila7/claude-code-templates
SGLang High-performance serving framework for LLMs and VLMs with RadixAttention for automatic prefix caching. When to use SGLang Use SGLang when: Need structured outputs (JSON, regex, grammar) Building agents with repeated prefixes (system prompts, tools) Agentic workflows with function calling Multi-turn conversations with shared context Need faster JSON decoding (3× vs standard) Use vLLM instead when: Simple text generation without structure Don't need prefix caching Want mature, widely-...
324
14408 nemo-guardrails davila7/claude-code-templates
NeMo Guardrails - Programmable Safety for LLMs Quick start NeMo Guardrails adds programmable safety rails to LLM applications at runtime. Installation: pip install nemoguardrails Basic example (input validation): from nemoguardrails import RailsConfig, LLMRails Define configuration config = RailsConfig.from_content(""" define user ask about illegal activity "How do I hack" "How to break into" "illegal ways to" define bot refuse illegal request "I cannot help with illegal activit...
324
14409 constitutional-ai davila7/claude-code-templates
Constitutional AI - Harmlessness from AI Feedback Quick start Constitutional AI (CAI) trains models to be harmless through self-critique and AI feedback, without requiring human labels for harmful outputs. Key concept: Models learn to critique and revise their own responses using a "constitution" (set of principles). Two phases: Supervised Learning (SL): Self-critique + revision Reinforcement Learning (RL): RLAIF (RL from AI Feedback) Constitution example: Principles: 1. Choose the respons...
324
14410 railway-deploy davila7/claude-code-templates
Railway Deploy Deploy code from the current directory to Railway using railway up. When to Use User asks to "deploy", "ship", "push code" User says "railway up" or "deploy to Railway" User wants to deploy local code changes User says "deploy and fix any issues" (use --ci mode) Modes Detach Mode (default) Starts deploy and returns immediately. Use for most deploys. railway up --detach CI Mode Streams build logs until complete. Use when user wants to watch the build or needs to debug issues....
324
14411 csrf-protection aj-geddes/useful-ai-prompts
CSRF Protection Overview Implement comprehensive Cross-Site Request Forgery protection using synchronizer tokens, double-submit cookies, SameSite cookie attributes, and custom headers. When to Use Form submissions State-changing operations Authentication systems Payment processing Account management Any POST/PUT/DELETE requests Implementation Examples 1. Node.js/Express CSRF Protection // csrf-protection.js const crypto = require('crypto'); const csrf = require('csurf'); class CSRFProtection ...
324
14412 local-merge camacho/ai-skills
/local-merge Land a source branch onto a target branch through a disposable shallow clone, then update the PRIMARY worktree only if that worktree is already on the target branch. Default target is main . Inputs Input Required Default Example BRANCH yes — feat/local-merge-skill TARGET no main develop , release/v2 PRIMARY no primary worktree path /Users/you/projects/repo MESSAGE no merge: $BRANCH into $TARGET merge: feat/auth into main Operating model Treat this as two separate problems: Show more
324
14413 ln-646-project-structure-auditor levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Project Structure Auditor L3 Worker that audits the physical directory structure of a project against framework-specific conventions and hygiene best practices. Purpose & Scope Auto-detect tech stack and apply framework-specific structure rules Audit 5 dimensions: file hygiene, ignore files, framework conventions, domain/la...
324
14414 ln-402-task-reviewer levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. Task Reviewer MANDATORY after every task execution. Reviews a single task in To Review and decides Done vs To Rework with immediate fixes or clear rework notes. This skill is NOT optional. Every executed task MUST be reviewed immediately. No exceptions, no batching, no skipping. Purpose & Scope Resolve task ID (per Input Re...
324
14415 frontend-routing aj-geddes/useful-ai-prompts
Frontend Routing Overview Implement client-side routing with navigation, lazy loading, protected routes, and state management for multi-page single-page applications. When to Use Multi-page navigation URL-based state management Protected/guarded routes Lazy loading of components Query parameter handling Implementation Examples 1. React Router v6 // App.tsx import { BrowserRouter, Routes, Route, Navigate } from 'react-router-dom'; import { Layout } from './components/Layout'; import { Home } fr...
324
14416 profiling-optimization aj-geddes/useful-ai-prompts
Profiling & Optimization Overview Profile code execution to identify performance bottlenecks and optimize critical paths using data-driven approaches. When to Use Performance optimization Identifying CPU bottlenecks Optimizing hot paths Investigating slow requests Reducing latency Improving throughput Implementation Examples 1. Node.js Profiling import { performance, PerformanceObserver } from 'perf_hooks'; class Profiler { private marks = new Map<string, number>(); mark(name: string): v...
324
14417 webgl martinholovsky/claude-skills-generator
WebGL Development Skill File Organization: This skill uses split structure. See references/ for advanced patterns and security examples. 1. Overview This skill provides WebGL expertise for creating custom shaders and visual effects in the JARVIS AI Assistant HUD. It focuses on GPU-accelerated rendering with security considerations. Risk Level: MEDIUM - Direct GPU access, potential for resource exhaustion, driver vulnerabilities Primary Use Cases: Custom shaders for holographic effects Post...
324
14418 bouncer-feed-filter aradotso/trending-skills
Bouncer Feed Filter Skill by ara.so — Daily 2026 Skills collection. Bouncer is a browser extension (Chrome/Edge/iOS) that uses AI to filter unwanted posts from Twitter/X feeds in real time. Users define filters in plain language ("crypto", "engagement bait", "rage politics"), and Bouncer classifies and hides matching posts using AI models — local (WebGPU via WebLLM) or cloud (OpenAI, Gemini, Anthropic, OpenRouter, Imbue). Repository Structure Bouncer/ Main extension source src/...
324
14419 webflow-code-component:component-scaffold webflow/webflow-skills
Component Scaffold Generate a new Webflow Code Component with proper file structure, React component, and .webflow.tsx definition file. When to Use This Skill Use when: Creating a new code component from scratch User asks to scaffold, generate, or create a component Starting a new component with proper Webflow file structure Do NOT use when: Converting an existing React component (use convert-component skill) Modifying existing components (answer directly or use component-audit) Just asking ques...
324
14420 webflow-code-component:convert-component webflow/webflow-skills
Convert Component Convert an existing React component into a Webflow Code Component by analyzing its structure and generating the appropriate .webflow.tsx definition file. When to Use This Skill Use when: User has an existing React component they want to use in Webflow User asks to "convert", "adapt", or "make this work with Webflow" User provides a React component file and wants a Webflow definition User is migrating components from another React project Do NOT use when: Creating a component fr...
324
14421 lorem-ipsum intellectronica/agent-skills
Lorem Ipsum Generator Overview Generate lorem ipsum placeholder text using the bundled generator script. Always use the script to generate content rather than writing lorem ipsum directly. Critical requirement: ALL text in the generated output must be lorem ipsum, including headings, bullet points, list items, table cells, and any other textual elements. Generator Script Use scripts/generate.py to produce lorem ipsum content. The script handles all text generation to ensure consistent, authe...
324
14422 bash-master josiahsiegel/claude-plugin-marketplace
Bash Scripting Mastery 🚨 CRITICAL GUIDELINES Windows File Path Requirements MANDATORY: Always Use Backslashes on Windows for File Paths When using Edit or Write tools on Windows, you MUST use backslashes (\) in file paths, NOT forward slashes (/). Examples: ❌ WRONG: D:/repos/project/file.tsx ✅ CORRECT: D:\repos\project\file.tsx This applies to: Edit tool file_path parameter Write tool file_path parameter All file operations on Windows systems Documentation Guidelines NEVER create new docu...
324
14423 wiring parcadei/continuous-claude-v3
Wiring Verification When building infrastructure components, ensure they're actually invoked in the execution path. Pattern Every module needs a clear entry point. Dead code is worse than no code - it creates maintenance burden and false confidence. The Four-Step Wiring Check Before marking infrastructure "done", verify: Entry Point Exists: How does user action trigger this code? Call Graph Traced: Can you follow the path from entry to execution? Integration Tested: Does an end-to-end test...
324
14424 ln-741-linter-configurator levnikolaevich/claude-code-skills
ln-741-linter-configurator Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-740-quality-setup Configures code linting and formatting tools for TypeScript, .NET, and Python projects. Purpose & Scope Does: Detects which linter stack to configure based on project type Checks for existing linter configurations Generates appropriate config files from templates Installs required dependencies Verifies linter runs without errors Does NOT: Configure pre-commit hooks (ln-742 does this) Se...
324
14425 ln-722-backend-generator levnikolaevich/claude-code-skills
Type: L3 Worker Category: 7XX Project Bootstrap Parent: ln-720-structure-migrator Generates complete .NET backend structure following Clean Architecture principles. Purpose & Scope | Input | Project name, entity list, configuration options | Output | Complete .NET solution with layered architecture | Target | .NET 10+, ASP.NET Core Scope boundaries: - Generates project structure and boilerplate code - Creates MockData for initial development - Does not implement business logic or...
324
14426 redis-js upstash/redis-js
Upstash Redis SDK - Complete Skills Guide This directory contains comprehensive guides for using the @upstash/redis SDK. These skill files are designed to help developers and AI assistants understand and use the SDK effectively. Installation npm install @upstash/redis Quick Start Basic Initialization import { Redis } from "@upstash/redis"; // Initialize with explicit credentials const redis = new Redis({ url: "UPSTASH_REDIS_REST_URL", token: "UPSTASH_REDIS_REST_TOKEN", }); // Or initial...
324
14427 ai-sdk-6-skills gocallum/nextjs16-agent-skills
Links AI SDK 6 Beta Docs: https://v6.ai-sdk.dev/docs/announcing-ai-sdk-6-beta Groq Provider: https://v6.ai-sdk.dev/providers/ai-sdk-providers/groq Vercel AI Gateway: https://v6.ai-sdk.dev/providers/ai-sdk-providers/ai-gateway AI SDK GitHub: https://github.com/vercel/ai Groq Console Models: https://console.groq.com/docs/models Installation pnpm add ai@beta @ai-sdk/openai@beta @ai-sdk/react@beta @ai-sdk/groq@beta Note: Pin versions during beta as breaking changes may occur in patch releases. Wh...
324
14428 react-native-cursor-rules mindrally/skills
React Native Cursor Rules Expert guidelines for React Native development by Will Sims, focusing on type-safe TypeScript code, performance optimization, and maintainable component architecture. Code Style and Structure Write concise, type-safe TypeScript code Use functional components and hooks instead of class components Ensure components are modular, reusable, and maintainable Organize files by feature, grouping related components, hooks, and styles Naming Conventions Use camelCase for variab...
324
14429 js-performance-patterns patternsdev/skills
JavaScript Performance Patterns Table of Contents When to Use Instructions Details Source Runtime performance micro-patterns for JavaScript hot paths. These patterns matter most in tight loops, frequent callbacks (scroll, resize, animation frames), and data-heavy operations. They apply to any JavaScript environment — React, Vue, vanilla, Node.js. When to Use Reference these patterns when: Profiling reveals a hot function or tight loop Processing large datasets (1,000+ items) Handling high-freque...
324
14430 yc-pitch-deck guia-matthieu/clawfu-skills
YC Pitch Deck Create a compelling startup pitch deck that follows the structure proven to raise billions from top investors. Master the YC and Sequoia formats that get founders funded. When to Use This Skill Fundraising to create investor pitch decks YC application to structure your narrative Demo Day prep to craft your 2-minute pitch Angel investors to communicate your opportunity Partnership pitches to structure compelling asks Internal alignment to articulate your strategy clearly Methodology...
324
14431 find-arbitrage-opps hummingbot/skills
find-arbitrage-opps Find arbitrage opportunities across all Hummingbot-connected exchanges by comparing prices for a trading pair, accounting for fungible tokens (e.g., BTC = WBTC, USDT = USDC). Prerequisites Hummingbot API must be running with exchange connectors configured: bash < ( curl -s https://raw.githubusercontent.com/hummingbot/skills/main/skills/lp-agent/scripts/check_prerequisites.sh ) DEX Support By default the script queries CEX connectors via the Hummingbot API. Add --dex to also f...
324
14432 azure-auth jezweb/claude-skills
Azure Auth - Microsoft Entra ID for React + Cloudflare Workers Package Versions: @azure/msal-react@5.0.2, @azure/msal-browser@5.0.2, jose@6.1.3 Breaking Changes: MSAL v4→v5 migration (January 2026), Azure AD B2C sunset (May 2025 - new signups blocked, existing until 2030), ADAL retirement (Sept 2025 - complete) Last Updated: 2026-01-21 Architecture Overview ┌─────────────────────┐ ┌──────────────────────┐ ┌─────────────────────┐ │ React SPA │────▶│ Microsoft Entra ID │────▶...
323
14433 bulk-cms-update webflow/webflow-skills
Bulk CMS Update Create or update multiple CMS items with comprehensive validation, granular approval, and rollback capability. Important Note ALWAYS use Webflow MCP tools for all operations: Use Webflow MCP's data_sites_tool with action list_sites for listing available sites Use Webflow MCP's data_cms_tool with action get_collection_list for listing CMS collections Use Webflow MCP's data_cms_tool with action get_collection_details for fetching collection schemas Use Webflow MCP's data_cms_to...
323
14434 langsmith supercent-io/skills-template
langsmith — LLM Observability, Evaluation & Prompt Management Keyword : langsmith · llm tracing · llm evaluation · @traceable · langsmith evaluate LangSmith is a framework-agnostic platform for developing, debugging, and deploying LLM applications. It provides end-to-end tracing, quality evaluation, prompt versioning, and production monitoring. When to use this skill Add tracing to any LLM pipeline (OpenAI, Anthropic, LangChain, custom models) Run offline evaluations with evaluate() against a cu...
323
14435 voice-ai-engine-development sickn33/antigravity-awesome-skills
Voice AI Engine Development Overview This skill guides you through building production-ready voice AI engines with real-time conversation capabilities. Voice AI engines enable natural, bidirectional conversations between users and AI agents through streaming audio processing, speech-to-text transcription, LLM-powered responses, and text-to-speech synthesis. The core architecture uses an async queue-based worker pipeline where each component runs independently and communicates via asyncio.Queue...
323
14436 symfony:using-symfony-superpowers makfly/superpowers-symfony
$ npx skills add https://github.com/makfly/superpowers-symfony --skill symfony:using-symfony-superpowers<div
323
14437 tsdown hairyf/skills
tsdown - The Elegant Library Bundler Blazing-fast bundler for TypeScript/JavaScript libraries powered by Rolldown and Oxc. When to Use Building TypeScript/JavaScript libraries for npm Generating TypeScript declaration files (.d.ts) Bundling for multiple formats (ESM, CJS, IIFE, UMD) Optimizing bundles with tree shaking and minification Migrating from tsup with minimal changes Building React, Vue, Solid, or Svelte component libraries Quick Start Install pnpm add -D tsdown Basic usage npx tsdown...
323
14438 get-shit-done shoootyou/get-shit-done-multi
Get Shit Done (GSD) Skill for Claude Code When to use Use this skill when the user asks for GSD or uses a {{COMMAND_PREFIX}}* command. Use it for structured planning, phase execution, verification, or roadmap work. How to run commands Claude Code supports custom slash commands. Commands starting with {{COMMAND_PREFIX}} are custom skills. Commands are installed as individual skills in {{PLATFORM_ROOT}}/skills/ . Load the corresponding skill: {{PLATFORM_ROOT}}/skills/gsd-<command>/SKILL.md Example...
323
14439 ln-635-test-isolation-auditor levnikolaevich/claude-code-skills
Specialized worker auditing test isolation and detecting anti-patterns. Purpose & Scope - Worker in ln-630 coordinator pipeline - Audit Test Isolation (Category 5: Medium Priority) - Audit Anti-Patterns (Category 6: Medium Priority) - Check determinism (no flaky tests) - Calculate compliance score (X/10) Inputs (from Coordinator) Receives `contextStore` with isolation checklist, anti-patterns catalog, test file list. Workflow - Parse context - Check isolation for 6 categories - Ch...
323
14440 ln-300-task-coordinator levnikolaevich/claude-code-skills
Coordinates creation or replanning of implementation tasks for a Story. Builds the ideal plan first, then routes to workers. Purpose & Scope - Auto-discover Team ID, load Story context (AC, Technical Notes, Context) - Build optimal implementation task plan (1-6 implementation tasks; NO test/refactoring tasks) in Foundation-First order - Detect mode and delegate: CREATE/ADD -> ln-301-task-creator, REPLAN -> ln-302-task-replanner - Strip any Non-Functional Requirements; only functional scope...
323
14441 ln-230-story-prioritizer levnikolaevich/claude-code-skills
Evaluate Stories using RICE scoring with market research. Generate consolidated prioritization table for Epic. Purpose & Scope - Prioritize Stories AFTER ln-220 creates them - Research market size and competition per Story - Calculate RICE score for each Story - Generate prioritization table (P0/P1/P2/P3) - Output: docs/market/[epic-slug]/prioritization.md When to Use Use this skill when: - Stories created by ln-220, need business prioritization - Planning sprint with limited capacit...
323
14442 ln-120-reference-docs-creator levnikolaevich/claude-code-skills
This skill creates the reference documentation structure (docs/reference/) and smart documents (ADRs, Guides, Manuals) based on project's TECH_STACK. Documents are created only when justified (nontrivial technology choices with alternatives). When to Use This Skill This skill is a L2 WORKER invoked by ln-100-documents-pipeline orchestrator. This skill should be used directly when: - Creating only reference documentation structure (docs/reference/) - Setting up directories for ADRs, guides,...
323
14443 database-monitoring aj-geddes/useful-ai-prompts
Database Monitoring Overview Implement comprehensive database monitoring for performance analysis, health checks, and proactive alerting. Covers metrics collection, analysis, and troubleshooting strategies. When to Use Performance baseline establishment Real-time health monitoring Capacity planning Query performance analysis Resource utilization tracking Alerting rule configuration Incident response and troubleshooting PostgreSQL Monitoring Connection Monitoring PostgreSQL - Active Connection...
323
14444 sentiment analysis aj-geddes/useful-ai-prompts
Sentiment Analysis Overview Sentiment analysis determines emotional tone and opinions in text, enabling understanding of customer satisfaction, brand perception, and feedback analysis. Approaches Lexicon-based : Using sentiment dictionaries Machine Learning : Training classifiers on labeled data Deep Learning : Neural networks for complex patterns Aspect-based : Sentiment about specific features Multilingual : Non-English text analysis Sentiment Types Positive : Favorable, satisfied Negative : U...
323
14445 vitest-testing secondsky/claude-skills
Vitest Best Practices Quick Reference import { describe, it, expect, beforeEach, vi } from 'vitest' describe('feature name', () => { beforeEach(() => { vi.clearAllMocks() }) it('should do something specific', () => { expect(actual).toBe(expected) }) it.todo('planned test') it.skip('temporarily disabled') it.only('run only this during dev') }) Common Assertions // Equality expect(value).toBe(42) // Strict (===) expect(obj).toEqual({ a: 1 }) ...
323
14446 security-scan jwynia/agent-skills
Security Scan Skill Audit your Claude Code configuration for security issues using AgentShield . When to Activate Setting up a new Claude Code project After modifying .claude/settings.json , CLAUDE.md , or MCP configs Before committing configuration changes When onboarding to a new repository with existing Claude Code configs Periodic security hygiene checks What It Scans Show more Installs 1.6K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 19, 2026 Security Audits Gen Agent Trust H...
323
14447 database-indexing-strategy aj-geddes/useful-ai-prompts
Database Indexing Strategy Overview Design comprehensive indexing strategies to improve query performance, reduce lock contention, and maintain data integrity. Covers index types, design patterns, and maintenance procedures. When to Use Index creation and planning Query performance optimization through indexing Index type selection (B-tree, Hash, GiST, BRIN) Composite and partial index design Index maintenance and monitoring Storage optimization with indexes Full-text search index design Index...
323
14448 software-crypto-web3 vasilyu1983/ai-agents-public
Software Crypto/Web3 Engineering Use this skill to design, implement, and review secure blockchain systems: smart contracts, on-chain/off-chain integration, custody and signing, testing, audits, and production operations. Defaults to: security-first development, explicit threat models, comprehensive testing (unit + integration + fork + fuzz/invariants), formal methods when high-value, upgrade safety (timelocks, governance, rollback plans), and defense-in-depth for key custody and signing. Qui...
323
14449 graphql mindrally/skills
GraphQL You're a developer who has built GraphQL APIs at scale. You've seen the N+1 query problem bring down production servers. You've watched clients craft deeply nested queries that took minutes to resolve. You know that GraphQL's power is also its danger. Your hard-won lessons: The team that didn't use DataLoader had unusable APIs. The team that allowed unlimited query depth got DDoS'd by their own clients. The team that made everything nullable couldn't distinguish errors from empty data....
323
14450 external-context yeachan-heo/oh-my-claudecode
External Context Skill Fetch external documentation, references, and context for a query. Decomposes into 2-5 facets and spawns parallel document-specialist Claude agents. Usage /oh-my-claudecode:external-context <topic or question> Examples /oh-my-claudecode:external-context What are the best practices for JWT token rotation in Node.js? /oh-my-claudecode:external-context Compare Prisma vs Drizzle ORM for PostgreSQL /oh-my-claudecode:external-context Latest React Server Components patterns and c...
323