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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
24,481
总 Skills
91.9M
总安装量
2,583
贡献者
# Skill 仓库 描述 安装量
15501 geo-optimizer b-open-io/prompts
GEO Optimizer Generative Engine Optimization (GEO) for AI search visibility. What is GEO? GEO is NOT traditional SEO. AI search engines (ChatGPT, Perplexity, Claude, Gemini) work fundamentally differently: They fetch raw HTML - Many don't render JavaScript They have size limits - Crawlers abandon pages >1MB HTML They evaluate confidence - Hedged language ("maybe", "possibly") ranks 3x lower than confident assertions They need machine-readable metadata - AgentFacts/NANDA protocol for AI agent...
74
15502 typescript epicenterhq/epicenter
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...
74
15503 code-review secondsky/claude-skills
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...
74
15504 ln-613-code-comments-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. Code Comments Auditor (L3 Worker) Specialized worker auditing code comments and docstrings quality. Purpose & Scope Worker in ln-610 coordinator pipeline - invoked by ln-610-docs-auditor Audit code comments for quality and compliance across 6 categories Universal for any tech stack (auto-detect comment syntax) Return struct...
74
15505 safe-file-reader cisco-ai-defense/skill-scanner
Safe File Reader Reads files from the documents directory with validation. Usage Provide filename to read.
74
15506 solana-anchor-claude-skill quiknode-labs/solana-anchor-claude-skill
Coding Guidelines Apply these rules to ensure code quality, maintainability, and adherence to project standards. Success Criteria Before declaring success or celebrating, run npm test . If the tests fail, there is more work to do. Don't stop until npm test passes on the code you have made. CRITICAL: Placeholder tests don't count as success. Tests that just do assert.ok(true) or similar are NOT real tests DO NOT mark "Write tests" as complete until tests actually call the program instructions DO ...
74
15507 nextjs-validator shipshitdev/library
Next.js Validator Validates Next.js 16 configuration and prevents deprecated patterns. AI assistants often generate Next.js 14/15 patterns - this skill enforces Next.js 16. When This Activates Setting up a new Next.js project Before any Next.js development work Auditing existing Next.js projects After AI generates Next.js code CI/CD pipeline validation Quick Start python3 ~/.claude/skills/nextjs-validator/scripts/validate.py --root . python3 ~/.claude/skills/nextjs-validator/scripts/validate.p...
74
15508 funnel-validator shipshitdev/library
Funnel Validator - DotCom Secrets Scorecard Overview Ruthlessly assess existing funnels against Russell Brunson's DotCom Secrets framework. Score objectively, expose conversion killers, prescribe actionable fixes. Brunson's Core Principle: "You're one funnel away from changing your life." When This Activates "validate my funnel" / "rate my funnel" "is my funnel good" "why isn't my funnel converting" Checking funnel before driving traffic Low conversion rates on landing pages Optimizing existi...
74
15509 qdrant-vector-database-integration giuseppe-trisciuoglio/developer-kit
Qdrant Vector Database Integration Overview Qdrant is an AI-native vector database for semantic search and similarity retrieval. This skill provides patterns for integrating Qdrant with Java applications, focusing on Spring Boot integration and LangChain4j framework support. Enable efficient vector search capabilities for RAG systems, recommendation engines, and semantic search applications. When to Use Use this skill when implementing: Semantic search or recommendation systems in Spring Boot ap...
74
15510 pdf rysweet/amplihack
PDF Processing Guide Overview This guide covers essential PDF processing operations using Python libraries and command-line tools. For advanced features, JavaScript libraries, and detailed examples, see REFERENCE.md. If you need to fill out a PDF form, read FORMS.md and follow its instructions. Quick Start from pypdf import PdfReader , PdfWriter Read a PDF reader = PdfReader ( "document.pdf" ) print ( f"Pages: { len ( reader . pages ) } " ) Extract text text = "" for page in reader . pages : t...
74
15511 test-driven-development izyanrajwani/agent-skills-library
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
74
15512 terraform bobmatnyc/claude-mpm-skills
Terraform You are an expert in Terraform and infrastructure-as-code with deep knowledge of cloud providers and deployment patterns. Core Principles Write concise, well-structured Terraform code with accurate examples Organize infrastructure into reusable modules Use versioned modules and provider version locks for consistent deployments Avoid hardcoded values; leverage variables for flexibility Code Structure Structure configurations into logical sections: main.tf - Primary resource definitions ...
74
15513 redis-state-management manutej/luxor-claude-marketplace
Redis State Management A comprehensive skill for mastering Redis state management patterns in distributed systems. This skill covers caching strategies, session management, pub/sub messaging, distributed locks, data structures, and production-ready patterns using redis-py. When to Use This Skill Use this skill when: Implementing high-performance caching layers for web applications Managing user sessions in distributed environments Building real-time messaging and event distribution systems C...
74
15514 docx davepoon/buildwithclaude
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
74
15515 trading-bot-architecture sanctifiedops/solana-skills
Role framing: You are a trading systems architect building automated trading bots on Solana. Your goal is to design reliable, safe, and efficient trading systems with proper risk controls and operational monitoring. Initial Assessment - What type of trading: market making, arbitrage, trend following, sniping? - Target assets: SOL pairs, memecoins, specific tokens? - Capital allocation: how much per trade, total capital at risk? - Latency requirements: milliseconds matter or seconds accepta...
74
15516 senior-prompt-engineer borghei/claude-skills
Senior Prompt Engineer Prompt engineering patterns, LLM evaluation frameworks, and agentic system design. Table of Contents Quick Start Tools Overview Prompt Optimizer RAG Evaluator Agent Orchestrator Prompt Engineering Workflows Prompt Optimization Workflow Few-Shot Example Design Structured Output Design Reference Documentation Common Patterns Quick Reference Show more
74
15517 zoho-crm-automation composiohq/awesome-claude-skills
Zoho CRM Automation via Rube MCP Automate Zoho CRM operations through Composio's Zoho toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Zoho CRM connection via RUBE_MANAGE_CONNECTIONS with toolkit zoho Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify Rube MCP is available by co...
74
15518 agent-framework-azure-ai-py sickn33/antigravity-awesome-skills
Agent Framework Azure Hosted Agents Build persistent agents on Azure AI Foundry using the Microsoft Agent Framework Python SDK. Architecture User Query → AzureAIAgentsProvider → Azure AI Agent Service (Persistent) ↓ Agent.run() / Agent.run_stream() ↓ Tools: Functions | Hosted (Code/Search/Web) | MCP ↓ AgentThread (conversation persistence) Installation Full framework (recommended) pip install agent-framework --pre Or Azure-specific package only pip install agent-framework-azure-ai --pre Enviro...
74
15519 network-101 sickn33/antigravity-awesome-skills
Network 101 Purpose Configure and test common network services (HTTP, HTTPS, SNMP, SMB) for penetration testing lab environments. Enable hands-on practice with service enumeration, log analysis, and security testing against properly configured target systems. Inputs/Prerequisites Windows Server or Linux system for hosting services Kali Linux or similar for testing Administrative access to target system Basic networking knowledge (IP addressing, ports) Firewall access for port configuration Outpu...
74
15520 rss-digest odysseus0/feed
RSS Digest Surface what's worth reading from RSS feeds. Requires feed CLI ( brew install odysseus0/tap/feed ). Workflow Scan — feed get entries --limit 50 for recent unread (title, feed, date, URL, summary). Auto-fetches if stale. If 0 results, run feed get stats — if 0 feeds, import starter set: feed import https://github.com/odysseus0/feed/raw/main/hn-popular-blogs-2025.opml and retry. Triage — Pick 5-10 high-signal posts based on the user's prompt. If no specific interest given, prioritize su...
74
15521 credentials alinaqi/claude-bootstrap
Credentials Management Skill Load with: base.md For securely loading API keys from a centralized access file and configuring project environments. Credentials File Discovery REQUIRED: When a project needs API keys, ask the user: I need API credentials for [service]. Do you have a centralized access keys file? Please provide the path (e.g., ~/Documents/Access.txt) or type 'manual' to enter keys directly. Default Locations to Check ~/Documents/Access.txt ~/Access.txt ~/.secrets/keys.txt ~/....
74
15522 lifecycle posit-dev/skills
R Package Lifecycle Management Manage function and argument lifecycle using tidyverse conventions and the lifecycle package. Setup Check if lifecycle is configured by looking for lifecycle-*.svg files in man/figures/ . If not configured, run: usethis :: use_lifecycle ( ) This: Adds lifecycle to Imports in DESCRIPTION Adds @importFrom lifecycle deprecated to the package documentation file Copies badge SVGs to man/figures/ Lifecycle Badges Insert badges in roxygen2 documentation: ' @description ' ...
74
15523 miniprogram-development tencentcloudbase/cloudbase-mcp
When to use this skill Use this skill for WeChat Mini Program development when you need to: Build or modify mini program pages and components Organize mini program project structure and configuration Debug, preview, or publish mini program projects Work with WeChat Developer Tools workflows Handle mini program runtime behavior, assets, or page config files Integrate CloudBase in a mini program project when explicitly needed Do NOT use for: Web frontend development (use web-development ) Pure bac...
74
15524 awwwards-ui-skills ihlamury/design-skills
Awwwards UI Skills Opinionated constraints for building Awwwards-style interfaces with AI agents. When to Apply Reference these guidelines when: Building light-mode interfaces Creating Awwwards-inspired design systems Implementing UIs with Inter font and 4px grid Colors SHOULD use light backgrounds for primary surfaces MUST use E4E4E4 as page background ( surface-base ) SHOULD reduce color palette (currently 15 colors detected) MUST maintain text contrast ratio of at least 4.5:1 for accessibilit...
74
15525 ascii-visualizer yonatangross/orchestkit
ASCII Visualizer Consistent, readable ASCII diagrams for architecture, workflows, file trees, and data visualizations. All output renders correctly in monospace terminals without external tools. Core principle: Encode information into structure, not decoration. Every diagram element should communicate something meaningful. Box-Drawing Character Reference Standard: ┌─┐ │ └─┘ ├─┤ ┬ ┴ ┼ Heavy: ┏━┓ ┃ ┗━┛ ┣━┫ ┳ ┻ ╋ Double: ╔═╗ ║ ╚═╝ ╠═╣ ╦ ╩ ╬ Rounded: ╭─╮ │ ╰─╯ Arrows: → ← ↑ ↓ ─> <─ ─...
74
15526 clickhouse-architect terrylica/cc-skills
ClickHouse Architect Prescriptive schema design, compression selection, and performance optimization for ClickHouse (v24.4+). Covers both ClickHouse Cloud (SharedMergeTree) and self-hosted (ReplicatedMergeTree) deployments. Core Methodology Schema Design Workflow Follow this sequence when designing or reviewing ClickHouse schemas: Define ORDER BY key (3-5 columns, lowest cardinality first) Select compression codecs per column type Configure PARTITION BY for data lifecycle management Add perf...
74
15527 job-search-strategist proyecto26/thejobinterviewguide
Job Search Strategist Why This Approach Matters Most job searches fail not from lack of effort, but from lack of signal . Candidates spray applications hoping volume compensates for weak positioning. They don't. The modern hiring process demands three things: Clarity : Know exactly what value you offer and to whom Proof : Demonstrate that value through evidence, not claims Distribution : Reach decision-makers through channels that bypass noise This skill treats job searching as a go-to-market pr...
74
15528 env-manager bobmatnyc/claude-mpm-skills
Environment Variable Manager (env-manager) Comprehensive environment variable validation, security scanning, and management for modern web applications. Overview The env-manager skill provides systematic environment variable management across local development, CI/CD pipelines, and deployment platforms. It prevents common issues like missing variables, exposed secrets, and framework-specific configuration errors. Key Features: Framework-Aware Validation: Next.js, Vite, React, Node.js, Flask...
74
15529 media-transcoding bobmatnyc/claude-mpm-skills
Media Transcoding (FFmpeg) Overview Use FFmpeg presets to normalize video outputs for web streaming, mobile delivery, or archival quality. Your hf-videos repo already includes a simple bash script and a more advanced Python script with presets, backups, and logging. Quick Start (hf-videos) ./ffmpeg_convert.sh check ./ffmpeg_convert.sh web_standard "My Video.mp4" ./ffmpeg_convert.sh batch_web_standard Outputs are written to converted/ with backups in backup/ and logs in conversion.log. Prese...
74
15530 discord-automation sickn33/antigravity-awesome-skills
Discord Automation via Rube MCP Automate Discord operations through Composio's Discord/Discordbot toolkits via Rube MCP. Toolkit docs : composio.dev/toolkits/discord Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active Discord connection via RUBE_MANAGE_CONNECTIONS with toolkits discord and discordbot Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys nee...
74
15531 user-input-protocol jwilger/agent-skills
User Input Protocol Value: Respect -- the developer's judgment governs all consequential decisions. The agent never assumes when it should ask. Purpose Defines a structured format for agents to request human input at decision points. Prevents agents from making assumptions on the developer's behalf, ensures questions include enough context for informed decisions, and provides a pause-and-resume pattern for subagents that cannot directly prompt the user. Practices Stop and Present, Never Assume W...
74
15532 cloudwatch itsmostafa/aws-agent-skills
AWS CloudWatch Amazon CloudWatch provides monitoring and observability for AWS resources and applications. It collects metrics, logs, and events, enabling you to monitor, troubleshoot, and optimize your AWS environment. Table of Contents Core Concepts Common Patterns CLI Reference Best Practices Troubleshooting References Core Concepts Metrics Time-ordered data points published to CloudWatch. Key components: Namespace : Container for metrics (e.g., AWS/Lambda ) Metric name : Name of the measurem...
74
15533 b2c-webdav salesforcecommercecloud/b2c-developer-tooling
B2C WebDAV Skill Use the b2c CLI plugin to perform WebDAV file operations on Salesforce B2C Commerce instances. This includes listing files, uploading, downloading, and managing files across different WebDAV roots. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli webdav ls ). WebDAV Roots The --root flag specifies the WebDAV directory: impex (default) - Import/Export directory temp - Temporary files cartridges - Code cartridges realmdata -...
74
15534 style-detector wordflowlab/novel-writer-skills
写作风格探测器 核心功能 自动探测用户的写作风格需求,并无缝加载对应的风格知识库。 可探测的风格 1. natural-voice(自然人声风格) 适合:都市现代小说、现实题材、情感类小说 特点:口语化、生活化、真实感强 触发词:口语化、真实感、接地气、像说话一样 2. literary(文学风格) 适合:严肃文学作品、历史小说、需要思想深度的故事 特点:优美、深刻、有文学性、注重意境 触发词:文学性、严肃文学、纯文学、有深度 3. web-novel(网文风格) 适合:玄幻小说、都市爽文、系统流、重生流 特点:节奏快、冲突密集、爽点频繁 触发词:网文、爽文、打脸、装逼、升级流 4. ancient-style(古风) 适合:武侠小说、仙侠、古代背景小说 特点:有古韵但不纯文言、意象丰富、诗意化 触发词:古风、古韵、武侠风、江湖味 5. minimal(极简风格) 适合:悬疑推理、冷硬派小说、实验性作品 特点:高度简洁、海明威式克制、留白艺术 触发词:极简、海明威、克制、冷硬 详细关键词列表和触发场景请参阅 KEYWORDS.md。 激活后的工作流程 步骤 1:确认风格选择 ...
74
15535 next-best-practices vercel-labs/vercel-skills
Next.js Best Practices Apply these rules when writing or reviewing Next.js code. File Conventions See file-conventions.md for: Project structure and special files Route segments (dynamic, catch-all, groups) Parallel and intercepting routes Middleware rename in v16 (middleware → proxy) RSC Boundaries Detect invalid React Server Component patterns. See rsc-boundaries.md for: Async client component detection (invalid) Non-serializable props detection Server Action exceptions Async Patterns Next.js ...
74
15536 think johnlindquist/claude
Think: Design and Validate Before You Build Prefix your first line with 🥷 inline, not as its own paragraph. Turn a rough idea into an approved plan. No code, no scaffolding, no pseudo-code until the user approves. Give opinions directly. Take a position and state what evidence would change it. Avoid "That's interesting," "There are many ways to think about this," "You might want to consider." Before Reading Any Code Confirm the working path: pwd or git rev-parse --show-toplevel . Never assume ~/...
74
15537 arxiv-mcp oimiragieo/agent-studio
Mode: Cognitive/Prompt-Driven — No standalone utility script; use via agent context. arXiv Search Skill ✅ No Installation Required This skill uses existing tools to access arXiv: WebFetch - Direct access to arXiv API Exa - Semantic search with arXiv filtering Works immediately - no MCP server, no restart needed. Result Limits (Memory Safeguard) arxiv-mcp returns academic papers. To prevent memory exhaustion: max_results: 20 (HARD LIMIT) Each paper metadata ~300 bytes 20 papers × 300 bytes = ~6 K...
74
15538 content-creator shipshitdev/library
Content Creator You are an expert content creator who produces engaging, audience-focused content for blogs, social media, and marketing. When to Apply Use this skill when: Writing blog posts and articles Creating social media content (Twitter, LinkedIn, Instagram) Developing marketing copy Crafting compelling headlines and hooks Creating email newsletters Writing product descriptions Content Creation Framework 1. Know Your Audience Who are you writing for? What are their pain points? What level...
74
15539 gitnexus-guide abhigyanpatwari/gitnexus
GitNexus Guide Quick reference for all GitNexus MCP tools, resources, and the knowledge graph schema. Always Start Here For any task involving code understanding, debugging, impact analysis, or refactoring: Read gitnexus://repo/{name}/context — codebase overview + check index freshness Match your task to a skill below and read that skill file Follow the skill's workflow and checklist If step 1 warns the index is stale, run npx gitnexus analyze in the terminal first. Skills Task Skill to read Und...
74
15540 iterate-pr sickn33/antigravity-awesome-skills
Iterate on PR Until CI Passes Continuously iterate on the current branch until all CI checks pass and review feedback is addressed. Requires : GitHub CLI ( gh ) authenticated. Important : All scripts must be run from the repository root directory (where .git is located), not from the skill directory. Use the full path to the script via ${CLAUDE_SKILL_ROOT} . Bundled Scripts scripts/fetch_pr_checks.py Fetches CI check status and extracts failure snippets from logs. uv run ${CLAUDE_SKILL_ROOT} /sc...
74
15541 template-skill shajith003/awesome-claude-skills
Insert instructions below
74
15542 api-documentation-writer onewave-ai/claude-skills
API Documentation Writer Create comprehensive, developer-friendly API documentation. Instructions When a user needs API documentation: Gather API Information : API type (REST, GraphQL, WebSocket, gRPC)? Authentication method (API key, OAuth, JWT)? Base URL and versioning strategy? Available endpoints and their purposes? Request/response formats? Rate limiting or usage restrictions? Generate Complete Documentation Structure : Overview Section : What the API does (1-2 sentences) Key capabilities G...
74
15543 latex-compile-qa willoscar/research-units-pipeline-skills
Compile the LaTeX project and produce a PDF (when the toolchain is available), plus a short build report. This step is deterministic; if compilation fails, record actionable diagnostics rather than guessing. Inputs - `latex/main.tex` - `citations/ref.bib` Outputs - `latex/main.pdf` (if compilation succeeds) - `output/LATEX_BUILD_REPORT.md` (recommended) Workflow - Run a LaTeX build (e.g., `latexmk`) if available. - Fix missing packages, missing bib entries, and unresolved references...
74
15544 cran-extrachecks posit-dev/skills
CRAN Extra Checks Help R package developers prepare packages for CRAN submission by systematically checking for common ad-hoc requirements that CRAN reviewers enforce but devtools::check() doesn't catch. Workflow Initial Assessment : Ask user if this is first submission or resubmission Run Standard Checklist : Work through each item systematically (see below) Identify Issues : As you review files, note specific problems Propose Fixes : Suggest specific changes for each issue found Implement Chan...
74
15545 microservices-architect 404kidwiz/claude-supercode-skills
Microservices Architect Senior distributed systems architect specializing in cloud-native microservices architectures, resilience patterns, and operational excellence. Role Definition You are a senior microservices architect with 15+ years of experience designing distributed systems. You specialize in service decomposition, domain-driven design, resilience patterns, service mesh technologies, and cloud-native architectures. You design systems that scale, self-heal, and enable autonomous teams...
74
15546 obsidian julianobarbosa/claude-code-skills
Obsidian Obsidian vault = a normal folder on disk. Vault structure (typical) Notes: *.md (plain text Markdown; edit with any editor) Config: .obsidian/ (workspace + plugin settings; usually don’t touch from scripts) Canvases: *.canvas (JSON) Attachments: whatever folder you chose in Obsidian settings (images/PDFs/etc.) Find the active vault(s) Obsidian desktop tracks vaults here (source of truth): ~/Library/Application Support/obsidian/obsidian.json obsidian-cli resolves vaults from that file; v...
74
15547 executing-plans izyanrajwani/agent-skills-library
Executing Plans Overview Load plan, review critically, execute all tasks, report when complete. Announce at start: "I'm using the executing-plans skill to implement this plan." Note: Tell your human partner that Superpowers works much better with access to subagents. The quality of its work will be significantly higher if run on a platform with subagent support (such as Claude Code or Codex). If subagents are available, use superpowers:subagent-driven-development instead of this skill. The Proce...
74
15548 google-slides sanjay3290/ai-skills
Google Slides Interact with Google Slides for presentation creation, slide management, and content insertion. Installation Dependencies : pip install --user google-auth google-auth-oauthlib google-api-python-client keyring pyyaml Setup Verification After installation, verify the skill is properly configured: $SKILL_DIR /scripts/google-slides.py check This will check: Python dependencies (google-auth, google-auth-oauthlib, google-api-python-client, keyring, pyyaml) Authentication configuration Co...
74
15549 gitlab issue dedalus-erp-pas/foundation-skills
GitLab Issue Management Create, retrieve, update, and manage GitLab issues with comprehensive context integration and structured workflows. GitLab Instance Configuration This skill is configured for a self-hosted GitLab instance: GitLab URL: https://gitlab-erp-pas.dedalus.lan All project identifiers, URLs, and references should use this self-hosted instance Ensure you have appropriate access credentials configured for this GitLab server When to Use This Skill Activate this skill when: The user w...
74
15550 plan-writing vudovn/antigravity-kit
Plan Writing Source: obra/superpowers Overview This skill provides a framework for breaking down work into clear, actionable tasks with verification criteria. Task Breakdown Principles 1. Small, Focused Tasks Each task should take 2-5 minutes One clear outcome per task Independently verifiable 2. Clear Verification How do you know it's done? What can you check/test? What's the expected output? 3. Logical Ordering Dependencies identified Parallel work where possible Critical path highlighted ...
74