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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,541
总 Skills
94.0M
总安装量
2,585
贡献者
# Skill 仓库 描述 安装量
10801 user-persona-creation aj-geddes/useful-ai-prompts
User Persona Creation Overview User personas synthesize research into realistic user profiles that guide design, development, and marketing decisions. When to Use Starting product design Feature prioritization Marketing messaging User research synthesis Team alignment on users Journey mapping Success metrics definition Instructions 1. Research & Data Collection Gather data for persona development class PersonaResearch: def conduct_interviews(self, target_sample_size=12): """Inter...
355
10802 background-job-processing aj-geddes/useful-ai-prompts
Background Job Processing Overview Build robust background job processing systems with distributed task queues, worker pools, job scheduling, error handling, retry policies, and monitoring for efficient asynchronous task execution. When to Use Handling long-running operations asynchronously Sending emails in background Generating reports or exports Processing large datasets Scheduling recurring tasks Distributing compute-intensive operations Instructions 1. Python with Celery and Redis celery...
355
10803 creative-intelligence aj-geddes/claude-code-bmad-skills
Creative Intelligence Role: Creative Intelligence System specialist Function: Facilitate structured brainstorming, conduct research, generate creative solutions Responsibilities Lead brainstorming sessions using proven techniques Conduct market and competitive research Generate creative solutions to complex problems Facilitate idea generation and refinement Document research findings and insights Support innovation across all BMAD phases Core Principles Structured Creativity - Use proven fram...
355
10804 debugging-streamlit streamlit/streamlit
Debugging Streamlit Apps Quick Start make debug my_app.py This starts both backend (Streamlit/Python) and frontend (Vite/React) with hot-reload. The app URL is printed on startup (default http://localhost:3001 ; 3000 is reserved for manual make frontend-dev ; it may use 3002+ if other debug sessions are running). Avoid pinning VITE_PORT unless you have a specific hard requirement (last resort). Hot-reload behavior: Frontend : Changes to frontend/ code are applied within seconds. Backend : Only c...
355
10805 sympy davila7/claude-code-templates
SymPy - Symbolic Mathematics in Python Overview SymPy is a Python library for symbolic mathematics that enables exact computation using mathematical symbols rather than numerical approximations. This skill provides comprehensive guidance for performing symbolic algebra, calculus, linear algebra, equation solving, physics calculations, and code generation using SymPy. When to Use This Skill Use this skill when: Solving equations symbolically (algebraic, differential, systems of equations) Perform...
355
10806 firebase davila7/claude-code-templates
Firebase You're a developer who has shipped dozens of Firebase projects. You've seen the "easy" path lead to security breaches, runaway costs, and impossible migrations. You know Firebase is powerful, but you also know its sharp edges. Your hard-won lessons: The team that skipped security rules got pwned. The team that designed Firestore like SQL couldn't query their data. The team that attached listeners to large collections got a $10k bill. You've learned from all of them. You advocate for ...
355
10807 codebase-cleanup-deps-audit sickn33/antigravity-awesome-skills
Dependency Audit and Security Analysis You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues, outdated packages, and provide actionable remediation strategies. Use this skill when Auditing dependencies for vulnerabilities Checking license compliance or supply-chain risks Identifying outdated packages and upgrade paths Preparing security reports or remedia...
355
10808 environment-triage parcadei/continuous-claude-v3
Environment Triage When uv sync or pip install behaves unexpectedly, check the actual interpreter. Pattern System Python is not authoritative if uv/venv selects a different interpreter. DO What uv ACTUALLY uses uv run python --version What's pinned (this controls uv) cat .python-version Confirm package is installed uv pip show <package> Confirm import works in uv context uv run python -c "import <package>; print(<package>.__version__)" Common Fix If optional deps require Python 3.12...
355
10809 implement_plan_micro parcadei/continuous-claude-v3
Formal Specification Multimodal Logic Integration Five modal logics via fusion with bridge principles: JL: Justification Logic - evidence-backed claims IEL: Inferential Erotetic Logic - question handling TEL: Temporal Epistemic Logic - phase sequencing SDL: Standard Deontic Logic - obligations/permissions DEL: Dynamic Epistemic Logic - action modalities Justification Logic (JL) Justification terms [h]:context(task_n) Handoff h justifies task context [v]:verified(phase_n) ...
355
10810 nansen-smart-money-tracker nansen-ai/nansen-cli
Smart Money All commands: nansen research smart-money <sub> [options] Subcommands Netflow — what tokens are smart money accumulating? nansen research smart-money netflow --chain solana --limit 10 DEX trades — real-time spot trades by smart money nansen research smart-money dex-trades --chain solana --labels "Smart Trader" --limit 20 Holdings — aggregated SM portfolio nansen research smart-money holdings --chain solana --limit 10 Perp trades — Hyperliquid only (no --chain needed) nansen resea...
355
10811 write-e2e-tests tldraw/tldraw
Writing E2E tests E2E tests use Playwright. Located in apps/examples/e2e/ (SDK examples) and apps/dotcom/client/e2e/ (tldraw.com). Test file structure apps/examples/e2e/ ├── fixtures/ │ ├── fixtures.ts Test fixtures (toolbar, menus, etc.) │ └── menus/ Page object models ├── tests/ │ └── test-*.spec.ts Test files └── shared-e2e.ts Shared utilities Name test files test-<feature>.spec.ts. Required declarations When using page.evaluate() to access the ...
355
10812 dial-your-context sanity-io/agent-context
Dial Your Context Help a user create the Instructions field content for their Sanity Agent Context MCP. The goal is a concise set of pure deltas — only information the agent can't figure out from the auto-generated schema. What you're building The Agent Context MCP already provides the agent with: A compressed schema of all document types and fields A GROQ query tutorial (~194 lines) Response style guidance Tool descriptions for GROQ queries, semantic search, etc. The Instructions field you're c...
355
10813 agent-development jezweb/claude-skills
Agent Development for Claude Code Plugins Overview Agents are autonomous subprocesses that handle complex, multi-step tasks independently. Understanding agent structure, triggering conditions, and system prompt design enables creating powerful autonomous capabilities. Key concepts: Agents are FOR autonomous work, commands are FOR user-initiated actions Markdown file format with YAML frontmatter Triggering via description field with examples System prompt defines agent behavior Model and color cu...
354
10814 image-gen jezweb/claude-skills
When to Use User wants to generate an AI image from a text description User says "generate image", "draw", "create picture", "配图" User says "生成图片", "画一张", "AI图" User needs a cover image, illustration, or concept art When NOT to Use User wants to create audio content (use /podcast , /speech ) User wants to create a video (use /explainer ) User wants to edit an existing image (not supported) User wants to extract content from a URL (use /content-parser ) Purpose Generate AI images using the Listen...
354
10815 shapely-compute parcadei/continuous-claude-v3
Computational Geometry with Shapely When to Use Creating geometric shapes (points, lines, polygons) Boolean operations (intersection, union, difference) Spatial predicates (contains, intersects, within) Measurements (area, length, distance, centroid) Geometry transformations (translate, rotate, scale) Validating and fixing invalid geometries Quick Reference I want to... Command Example Create geometry create create polygon --coords "0,0 1,0 1,1 0,1" Intersection op intersection op intersection -...
354
10816 feature engineering aj-geddes/useful-ai-prompts
Feature Engineering Overview Feature engineering creates and transforms features to improve model performance, interpretability, and generalization through domain knowledge and mathematical transformations. When to Use When you need to improve model performance beyond using raw features When dealing with categorical variables that need encoding for ML algorithms When features have different scales and require normalization When creating domain-specific features based on business knowledge When h...
354
10817 agentica-prompts parcadei/continuous-claude-v3
Agentica Prompt Engineering Write prompts that Agentica agents reliably follow. Standard natural language prompts fail ~35% of the time due to LLM instruction ambiguity. The Orchestration Pattern Proven workflow for context-preserving agent orchestration: 1. RESEARCH (Nia) → Output to .claude/cache/agents/research/ ↓ 2. PLAN (RP-CLI) → Reads research, outputs .claude/cache/agents/plan/ ↓ 3. VALIDATE → Checks plan against best practices ↓ 4. IMPLEMENT (...
354
10818 outline-coach jwynia/agent-skills
Outline Coach: Assistive Structural Guidance Skill You are an outline coach. Your role is to help writers develop their own story structure through questions, diagnosis, and guided exploration. You never generate outline content for them. The Core Constraint You do not generate: Scene beats or beat sequences Character arc mappings Plot structure proposals Worldbuilding systems Pacing recommendations as specific structures Sample prose or dialogue Any structural content they could copy into t...
354
10819 data-scientist borghei/claude-skills
Use this skill when Working on data scientist tasks or workflows Needing guidance, best practices, or checklists for data scientist Do not use this skill when The task is unrelated to data scientist 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 detailed examples are required, open resources/implementation-playbook.md . You are a...
354
10820 video-summarizer liang121/video-summarizer
Video Summarizer Overview Download videos from any platform and generate a complete resource package including: Original video file (mp4) Audio file (mp3) Subtitle file (with timestamps, vtt/srt format) Summary file (summary.md) Supports all 1800+ websites supported by yt-dlp. Trigger Conditions When the user: Provides a video link and asks for a summary Says "summarize this video", "what's in this video" Asks to "extract video content", "transcribe video" Says "download this video" Provides a l...
354
10821 agentica-claude-proxy parcadei/continuous-claude-v3
Agentica-Claude Code Proxy Integration Use this skill when developing or debugging the Agentica-Claude proxy integration. When to Use Setting up Agentica agents to use Claude Code tools Debugging agent hallucination issues Fixing permission errors in file operations Understanding the REPL response format Architecture Overview Agentica Agent → S_M_BASE_URL → Claude Proxy → claude -p → Claude CLI (with tools) (localhost:2345) (localhost:8080) Critical Requirements 1. --allowe...
354
10822 migrate parcadei/continuous-claude-v3
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...
354
10823 observe-before-editing parcadei/continuous-claude-v3
Observe Before Editing Before editing code to fix a bug, confirm what the system actually produced. Pattern Outputs don't lie. Code might. Check outputs first. DO Check if expected directories exist: ls -la .claude/cache/ Check if expected files were created: ls -la .claude/cache/learnings/ Check logs for errors: tail .claude/cache/*.log Run the failing command manually to see actual error Only then edit code DON'T Assume "hook didn't run" without checking outputs Edit code based on what you...
354
10824 fpf:status neolabhq/context-engineering-kit
Status Check Display the current state of the FPF knowledge base. Action (Run-Time) Check Directory Structure: Verify .fpf/ exists and contains required subdirectories. Count Hypotheses: List files in each knowledge layer: .fpf/knowledge/L0/ (Proposed) .fpf/knowledge/L1/ (Verified) .fpf/knowledge/L2/ (Validated) .fpf/knowledge/invalid/ (Rejected) Check Evidence Freshness: Scan .fpf/evidence/ for expired evidence. Count Decisions: List files in .fpf/decisions/ . Report to user. Status Report Form...
353
10825 cloudflare-turnstile jezweb/claude-skills
Cloudflare Turnstile Status: Production Ready ✅ Last Updated: 2026-01-21 Dependencies: None (optional: @marsidev/react-turnstile for React) Latest Versions: @marsidev/react-turnstile@1.4.1, turnstile-types@1.2.3 Recent Updates (2025): December 2025: @marsidev/react-turnstile v1.4.1 fixes race condition in script loading August 2025: v1.3.0 adds rerenderOnCallbackChange prop for React closure issues March 2025: Upgraded Turnstile Analytics with TopN statistics (7 dimensions: hostnames, browser...
353
10826 firebase-firestore-standard firebase/skills
Firestore Standard Edition This skill provides a complete guide for getting started with Cloud Firestore Standard Edition, including provisioning, securing, and integrating it into your application. Provisioning To set up Cloud Firestore in your Firebase project and local environment, see provisioning.md . Security Rules For guidance on writing and deploying Firestore Security Rules to protect your data, see security_rules.md . SDK Usage To learn how to use Cloud Firestore in your application co...
353
10827 tldr-deep parcadei/continuous-claude-v3
TLDR Deep Analysis Full 5-layer analysis of a specific function. Use when debugging or deeply understanding code. Trigger /tldr-deep <function_name> "analyze function X in detail" "I need to deeply understand how Y works" Debugging complex functions Layers Layer Purpose Command L1: AST Structure tldr extract <file> L2: Call Graph Navigation tldr context <func> --depth 2 L3: CFG Complexity tldr cfg <file> <func> L4: DFG Data flow tldr dfg <file> <func> L5: Slice Dependencies tldr slice <file> <...
353
10828 kernel-agent-browser kernel/skills
This skill documents best practices for using agent-browser's built-in Kernel provider (`-p kernel`) for cloud browser automation. When to Use This Skill Use this skill when you need to: - Automate websites using `agent-browser -p kernel` commands - Handle bot detection on sites with aggressive anti-bot measures - Persist login sessions across automation runs using profiles - Work with iframes including cross-origin payment forms - Get live view URLs for debugging or manual intervention ...
353
10829 ffmpeg-video-editor bryanwhl/ffmpeg-video-editor
FFmpeg Video Editor You are a video editing assistant that translates natural language requests into FFmpeg commands. When the user asks to edit a video, generate the correct FFmpeg command. How to Generate Commands Identify the operation from the user's request Extract parameters (input file, output file, timestamps, formats, etc.) Generate the FFmpeg command using the patterns below If output filename not specified , create one based on the operation (e.g., video_trimmed.mp4 ) Always include -...
353
10830 text-to-image-prompt-optimizer manzxiao/text-to-image-prompt-optimizer
AI Image Prompt Optimizer Generate professional, optimized prompts for AI image generation tools with primary support for Google Gemini (Nano Banana) , plus Midjourney, Stable Diffusion, DALL-E, Leonardo.ai, and others. Core Workflow When a user requests prompt generation or optimization: Understand the intent Identify the core subject and desired outcome Ask clarifying questions ONLY if the request is extremely vague Default to reasonable assumptions rather than over-questioning Generate compre...
353
10831 quick-game opusgamelabs/game-creator
Performance Notes Take your time to do this thoroughly Quality is more important than speed Do not skip validation steps Quick Game (Fast Prototype) Build a playable game prototype as fast as possible. This is /make-game without the polish — just scaffold + implement the core loop. Get something on screen, then incrementally add layers with /add-assets , /design-game , /add-audio , /game-deploy , and /monetize-game . What you'll get: A scaffolded game project with clean architecture Core gamepla...
353
10832 social-content davila7/claude-code-templates
Social Content You are an expert social media strategist. Your goal is to help create engaging content that builds audience, drives engagement, and supports business goals. Before Creating Content 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 n...
353
10833 notebooklm davila7/claude-code-templates
NotebookLM Research Assistant Skill Interact with Google NotebookLM to query documentation with Gemini's source-grounded answers. Each question opens a fresh browser session, retrieves the answer exclusively from your uploaded documents, and closes. When to Use This Skill Trigger when user: Mentions NotebookLM explicitly Shares NotebookLM URL ( https://notebooklm.google.com/notebook/... ) Asks to query their notebooks/documentation Wants to add documentation to NotebookLM library Uses phrases li...
353
10834 javascript-pro sickn33/antigravity-awesome-skills
JavaScript Pro Senior JavaScript developer with 10+ years mastering modern ES2023+ features, asynchronous patterns, and full-stack JavaScript development. Role Definition You are a senior JavaScript engineer with 10+ years of experience. You specialize in modern ES2023+ JavaScript, Node.js 20+, asynchronous programming, functional patterns, and performance optimization. You build clean, maintainable code following modern best practices. When to Use This Skill Building vanilla JavaScript appl...
353
10835 graceful-degradation parcadei/continuous-claude-v3
Graceful Degradation with Helpful Messages When optional services are unavailable, degrade gracefully with actionable fallback messages. Pattern Check availability at the start, cache the result, and provide helpful messages that explain what's missing and how to fix it. DO Check service availability early (before wasting compute) Cache health check results for the session (e.g., 60s TTL) Provide actionable fallback messages: What service is missing What features are degraded How to enable t...
353
10836 no-polling-agents parcadei/continuous-claude-v3
No Polling for Background Agents When launching parallel background agents, do NOT poll with sleep loops. Pattern Background agents write to status files when complete. Wait for them naturally. DO Launch agents with run_in_background: true Continue with other work while agents run Check status file only when user asks or when you need results to proceed Trust the agent completion system DON'T Run sleep 10 && cat status.txt in loops Continuously poll for completion Waste tokens checking statu...
353
10837 index-at-creation parcadei/continuous-claude-v3
Index at Creation Time Index artifacts when they're created, not at batch boundaries. Pattern If downstream logic depends on artifacts being queryable, index immediately at write time. DO Index handoffs in PostToolUse Write hook (immediately after creation) Use --file flag for fast single-file indexing Trigger indexing from the same event that creates the artifact DON'T Wait for SessionEnd to batch-index Rely on cron/scheduled jobs for time-sensitive data Assume data will be available "soon ...
353
10838 senpi-entrypoint senpi-ai/senpi-skills
Senpi Agent Entrypoint Onboard an AI agent into the Senpi trading platform on Hyperliquid via modular skills: account setup, skill discovery, and trading strategies. For platform context (wallets, strategies, tool categories, fees), see references/about-senpi.md . If any npx command fails, consult references/error-handling.md for recovery steps. Environment Variable Defaults Variable Placeholder Default SENPI_MCP_ENDPOINT {{SENPI_MCP_ENDPOINT}} https://mcp.prod.senpi.ai REFERRAL_CODE {{REFERRAL_...
353
10839 skill-creator tldraw/tldraw
Skill Creator A skill for creating new skills and iteratively improving them. At a high level, the process of creating a skill goes like this: Decide what you want the skill to do and roughly how it should do it Write a draft of the skill Create a few test prompts and run claude-with-access-to-the-skill on them Help the user evaluate the results both qualitatively and quantitatively While the runs happen in the background, draft some quantitative evals if there aren't any (if there are some, you...
353
10840 project-workflow jezweb/claude-skills
Project Workflow Skill 9 integrated slash commands for complete project lifecycle automation: idea validation → planning → execution → session management → context preservation → release. Time savings: 35-55 minutes per project lifecycle Installation Marketplace: /plugin install project-workflow@claude-skills Manual: Copy commands/*.md to ~/.claude/commands/ The 7 Commands 1. /explore-idea - Pre-Planning Exploration Use when: Rough idea that needs tech stack validation, scope management, ...
352
10841 fpf:propose-hypotheses neolabhq/context-engineering-kit
Propose Hypotheses Workflow Execute the First Principles Framework (FPF) cycle: generate competing hypotheses, verify logic, validate evidence, audit trust, and produce a decision. User Input Problem Statement: $ARGUMENTS Workflow Execution Step 1a: Create Directory Structure (Main Agent) Create .fpf/ directory structure if it does not exist: mkdir -p .fpf/ { evidence,decisions,sessions,knowledge/ { L0,L1,L2,invalid } } touch .fpf/ { evidence,decisions,sessions,knowledge/ { L0,L1,L2,invalid } } ...
352
10842 fpf:decay neolabhq/context-engineering-kit
Evidence Freshness Management Manages evidence freshness by identifying stale decisions and providing governance actions. Implements FPF B.3.4 (Evidence Decay). Key principle: Evidence is perishable. Decisions built on expired evidence carry hidden risk. Quick Concepts What is "stale" evidence? Every piece of evidence has a valid_until date. A benchmark from 6 months ago may no longer reflect current system performance. A security audit from before a major dependency update doesn't account for n...
352
10843 fpf:actualize neolabhq/context-engineering-kit
Actualize Knowledge Base This command is a core part of maintaining a living assurance case. It keeps your FPF knowledge base ( .fpf/ ) in sync with the evolving reality of your project's codebase. The command performs a three-part audit against recent git changes to surface potential context drift, stale evidence, and outdated decisions. This aligns with the Observe phase of the FPF Canonical Evolution Loop (B.4) and helps manage Epistemic Debt (B.3.4). Action (Run-Time) Step 1: Check Git Chang...
352
10844 system-overview parcadei/continuous-claude-v3
System Overview Show users how Continuous Claude works - the opinionated setup with hooks, memory, and coordination. When to Use User asks "how does this work?" User asks "what can you remember?" User asks "what's different about this setup?" User runs /system_overview Response CONTINUOUS CLAUDE SYSTEM OVERVIEW ================================= MEMORY LAYER (PostgreSQL + pgvector) ------------------------------------ - 78,000+ temporal facts from past sessions - Learnings extracted automatica...
352
10845 tldr-stats parcadei/continuous-claude-v3
TLDR Stats Skill Show a beautiful dashboard with token usage, actual API costs, TLDR savings, and hook activity. When to Use See how much TLDR is saving you in real $ terms Check total session token usage and costs Before/after comparisons of TLDR effectiveness Debug whether TLDR/hooks are being used See which model is being used Instructions IMPORTANT: Run the script AND display the output to the user. Run the stats script: python3 $CLAUDE_PROJECT_DIR/.claude/scripts/tldr_stats.py Copy the...
352
10846 tldr-router parcadei/continuous-claude-v3
TLDR Smart Router Maps questions to the optimal tldr command. Use this to pick the right layer. Question → Command Mapping "What files/functions exist?" tldr tree . --ext .py File overview tldr structure src/ --lang python Function/class overview Use: Starting exploration, orientation "What does X call / who calls X?" tldr context <function> --project . --depth 2 tldr calls src/ Use: Understanding architecture, finding entry points "How complex is X?" tldr cfg <file> <functio...
352
10847 level-design pluginagentmarketplace/custom-plugin-game-developer
Level Design Level Design Philosophy ┌─────────────────────────────────────────────────────────────┐ │ LEVEL DESIGN PILLARS │ ├─────────────────────────────────────────────────────────────┤ │ 1. FLOW: Guide the player naturally through space │ │ 2. PACING: Control intensity and rest moments │ │ 3. DISCOVERY: Reward exploration and curiosity │ │ 4. CLARITY: Player always knows where to go │ │ 5. CHALLENGE: Sk...
352
10848 shopify mrgoonie/claudekit-skills
Shopify Theme Development You are an expert in Shopify theme development, Liquid templating, Online Store 2.0, and e-commerce best practices. Core Principles Write clean, maintainable Liquid code Follow Online Store 2.0 architecture patterns Optimize for performance and Core Web Vitals Ensure accessibility compliance Implement responsive, mobile-first designs Liquid Templating Best Practices Show more
352
10849 ui-audit tommygeoco/ui-audit
Evaluate interfaces against proven UX principles. Based on [Making UX Decisions](https://uxdecisions.com) by Tommy Geoco. When to Use This Skill - Making UI/UX design decisions under time pressure - Evaluating design trade-offs with business context - Choosing appropriate UI patterns for specific problems - Reviewing designs for completeness and quality - Structuring design thinking for new interfaces Core Philosophy Speed ≠ Recklessness. Designing quickly is not automatically reckless...
352
10850 process-mapping aj-geddes/useful-ai-prompts
Process Mapping Overview Process mapping creates visual representations of workflows, helping teams understand current operations, identify bottlenecks, and design improvements. When to Use Documenting existing workflows Identifying process improvements Onboarding new team members Discovering inefficiencies and bottlenecks Planning system implementations Analyzing customer journeys Automating manual processes Training and documentation Instructions 1. Process Mapping Techniques Mapping Approac...
352