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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
13551 build-tui-view hatchet-dev/hatchet
📝 SELF-UPDATING DOCUMENT : This skill automatically updates itself when inaccuracies are discovered or new patterns are learned. Always verify information against the actual codebase and update this file when needed. Overview This skill provides instructions for creating and maintaining Terminal User Interface (TUI) views in the Hatchet CLI using bubbletea and lipgloss. The TUI system uses a modular view architecture where individual views are isolated in separate files within the views/ directo...
55
13552 archon manager daffy0208/ai-dev-standards
Archon Manager Master Archon MCP for strategic project management and knowledge operations. Archon is the command center for AI coding assistants, providing: Strategic Layer : Project management, task tracking, priority-based workflow (WHAT/WHEN) Knowledge Layer : RAG queries, web crawling, document processing, code examples Integration Layer : Connects Claude Code, Cursor, Windsurf with unified context The Two-Layer Architecture : Archon (this skill) = Strategic (WHAT to build, WHEN) Skills = T...
55
13553 slime-rl-training orchestra-research/ai-research-skills
slime is an LLM post-training framework from Tsinghua's THUDM team, powering GLM-4.5, GLM-4.6, and GLM-4.7. It connects Megatron-LM for training with SGLang for high-throughput rollout generation. When to Use slime Choose slime when you need: - Megatron-LM native training with SGLang inference - Custom data generation workflows with flexible data buffers - Training GLM, Qwen3, DeepSeek V3, or Llama 3 models - Research-grade framework with production backing (Z.ai) Consider alternatives w...
55
13554 unit-tests andrelandgraf/fullstackrecipes
Unit Tests with Bun To set up Unit Tests with Bun, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/unit-tests If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/unit-tests
55
13555 using-workflows andrelandgraf/fullstackrecipes
Working with Workflows Create and run durable workflows with steps, streaming, and agent execution. Covers starting, resuming, and persisting workflow results. Working with Workflows Create and run durable workflows with steps, streaming, and agent execution. Covers starting, resuming, and persisting workflow results. See: Resource: using-workflows in Fullstack Recipes URL: https://fullstackrecipes.com/recipes/using-workflows Workflow Folder Structure Each workflow has its own subfolder in...
55
13556 cnki-search cookjohn/cnki-skills
CNKI Basic Search Search CNKI for papers using keyword(s). Returns result count and structured result list (titles, URLs, authors, journal, date) in a single call. Arguments $ARGUMENTS contains the search keyword(s) in Chinese or English. Steps 1. Navigate Use mcp__chrome-devtools__navigate_page → https://kns.cnki.net/kns8s/search 2. Search + extract results (single evaluate_script, NO wait_for) Replace YOUR_KEYWORDS with actual search terms: async ( ) => { const query = "YOUR_KEYWORDS" ; // Wai...
55
13557 moai-tool-ast-grep modu-ai/moai-adk
AST-Grep Integration Structural code search, lint, and transformation tool using Abstract Syntax Tree analysis. Quick Reference What is AST-Grep AST-Grep (sg) is a fast, polyglot tool for structural code search and transformation. Unlike regex-based search, it understands code syntax and matches patterns based on AST structure. When to Use Searching for code patterns that regex cannot capture such as nested function calls Refactoring code across multiple files with semantic awareness Securit...
55
13558 aphorisms danielmiessler/personal_ai_infrastructure
Customization Before executing, check for user customizations at: ~/.claude/skills/CORE/USER/SKILLCUSTOMIZATIONS/Aphorisms/ If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults. 🚨 MANDATORY: Voice Notification (REQUIRED BEFORE ANY ACTION) You MUST send this notification BEFORE doing anything else when this skill is invoked. Send voice notification: ...
55
13559 modern-swift johnrogers/claude-swift-engineering
Modern Swift (6.2+) Swift 6.2 introduces strict compile-time concurrency checking with async/await, actors, and Sendable constraints that prevent data races at compile time instead of runtime. This is the foundation of safe concurrent Swift. Overview Modern Swift replaces older concurrency patterns (completion handlers, DispatchQueue, locks) with compiler-enforced safety. The core principle: if it compiles with strict concurrency enabled, it cannot have data races. Quick Reference Need Use N...
55
13560 cron-expression-builder dkyazzentwatwa/chatgpt-skills
Cron Expression Builder Build, parse, and validate cron expressions with natural language conversion and run time preview. Features Natural Language: Convert descriptions to cron expressions Cron Parser: Parse cron to human-readable format Validation: Validate cron syntax Next Runs: Preview upcoming execution times Presets: Common scheduling patterns Both Formats: 5-field (standard) and 6-field (with seconds) Quick Start from cron_builder import CronBuilder builder = CronBuilder() Build fro...
55
13561 plugin-validator terrylica/cc-skills
Plugin Validator Comprehensive validation for Claude Code marketplace plugins. When to Use This Skill Use this skill when: Validating plugin structure before release Auditing hooks for silent failures Checking plugin.json syntax and required fields Verifying skill file formatting and frontmatter Quick Start Validate a specific plugin uv run plugins/plugin-dev/skills/plugin-validator/scripts/audit_silent_failures.py plugins/my-plugin/ Validate with fix suggestions uv run plugins/plugin-dev/skil...
55
13562 content calendar planner eddiebe147/claude-settings
Content Calendar Planner Create organized, strategic content calendars that ensure consistent publishing and aligned messaging. This skill helps you plan content across channels, balance content types, align with business objectives, and maintain a sustainable publishing cadence. Consistent content creation is hard without a plan. This skill provides frameworks for theme development, content type balancing, editorial workflow design, and calendar management. Move from reactive content creation t...
55
13563 uv-advanced-dependencies laurigates/claude-plugins
Quick reference for advanced dependency scenarios in UV projects. When This Skill Applies - Git repository dependencies - Local path dependencies - Editable installations - Dependency constraints - Custom package indexes - Dependency groups and extras - Build dependencies Quick Reference Git Dependencies ``` Add from Git repository uv add git+https://github.com/psf/requests uv add git+https://github.com/pallets/flask@main uv add git+ssh://git@github.com/user/repo.git@v1.0.0 Spec...
55
13564 customizing-tauri-windows dchuk/claude-code-tauri-skills
Tauri Window Customization Covers window customization in Tauri v2: custom titlebars, transparent windows, and window menus. Configuration Methods tauri.conf.json - Static configuration at build time JavaScript Window API - Runtime modifications from frontend Rust Window struct - Runtime modifications from backend Window Configuration (tauri.conf.json) { "app": { "windows": [{ "title": "My App", "width": 800, "height": 600, "decorations": true, "transparent"...
55
13565 python-containers laurigates/claude-plugins
Expert knowledge for building optimized Python container images using slim base images, virtual environments, modern package managers (uv, poetry), and multi-stage build patterns. Core Expertise Python Container Challenges: - Large base images with unnecessary packages (~1GB) - Critical: Alpine causes issues with Python (musl vs glibc) - Complex dependency management (pip, poetry, pipenv, uv) - Compiled C extensions requiring build tools - Virtual environment handling in containers Key ...
55
13566 database-architect oimiragieo/agent-studio
You are a database architect specializing in designing scalable, performant, and maintainable data layers from the ground up. Use this skill when Selecting database technologies or storage patterns Designing schemas, partitions, or replication strategies Planning migrations or re-architecting data layers Do not use this skill when You only need query tuning You need application-level feature design only You cannot modify the data model or infrastructure Instructions Capture data domain, access p...
55
13567 umbraco-e2e-testing umbraco/umbraco-cms-backoffice-skills
Umbraco E2E Testing End-to-end testing for Umbraco backoffice extensions using Playwright and @umbraco/playwright-testhelpers . This approach tests against a real running Umbraco instance, validating complete user workflows. Critical: Use Testhelpers for Core Umbraco Use @umbraco/playwright-testhelpers for core Umbraco operations : Package Purpose Why Required @umbraco/playwright-testhelpers UI and API helpers Handles auth, navigation, core entity CRUD @umbraco/json-models-builders Test data bui...
55
13568 localization-testing proffesor-for-testing/agentic-qe
<default_to_action> When testing multi-language/region support: - VERIFY translation coverage (all strings translated) - TEST locale-specific formats (date, time, currency, numbers) - VALIDATE RTL layout (Arabic, Hebrew) - CHECK character encoding (UTF-8, unicode) - CONFIRM cultural appropriateness (icons, colors, content) Quick i18n Checklist: - All user-facing strings externalized - No hardcoded text in code - Date/time/currency formatted per locale - RTL languages flip layout correc...
55
13569 rust-tauri-backend xiaolai/vmark
Rust + Tauri Backend (VMark) Overview Apply VMark backend conventions for Tauri v2 and Rust code. Workflow Identify the command or menu integration needed in src-tauri/src . Use modern Rust formatting: format!("{variable}") . Keep changes scoped; avoid unrelated refactors. If UI interaction is required, wire through invoke() or emit() properly. Update relevant tests or docs when behavior changes. References references/paths.md for backend entry points.
55
13570 nextjs-project-manager eddiebe147/claude-settings
Next.js Project Manager Skill Overview This skill helps you build production-ready Next.js 14+ applications using the App Router. Use this when working on routing, components, server actions, data fetching, or any Next.js-specific patterns. Core Principles 1. App Router First All routes in src/app/ directory Use page.tsx for routes, layout.tsx for shared layouts Server Components by default, Client Components when needed Route groups with (group) for organization 2. Server vs Client Components...
55
13571 telegram glebis/claude-skills
📬 Telegram CLI Fast Telegram CLI for reading, searching, and sending messages. 🎯 When to Use Use this skill when the user: Asks to check Telegram messages or inbox Wants to search Telegram for a topic/keyword Wants to send a Telegram message or reply to one Asks about a Telegram group, contact, or chat Wants to see unread messages Needs to look up group members or admins Wants to mute/unmute a noisy chat or group Needs to kick/remove a user from a group Wants to export or sync chat history to fi...
55
13572 bioskills gptomics/bioskills
bioSkills Installer Meta-skill that installs the full bioSkills collection (425 skills across 62 categories) for bioinformatics analysis. Installation Run the bundled install script to download and install all bioSkills: bash scripts/install-bioskills.sh Or install only specific categories: bash scripts/install-bioskills.sh --categories "single-cell,variant-calling,differential-expression" What Gets Installed Category Group Categories Skills Sequence & Alignment sequence-io, sequence-manipulatio...
55
13573 using-superpowers zenobi-us/dotfiles
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT. This is not negotiable. This is not optional. You cannot rationalize your way out of this. Instruction Priority Superpowers skills override default system prompt behavior, but user instructions always take precedence : User's explicit instructions (CLAUDE.md, GEMINI.md, AGENTS.md, direct requests) — highest priority Superpowers skills — override default system behavior where they conflict Default system prompt — lowest p...
55
13574 tax-strategy-optimizer onewave-ai/claude-skills
Tax Strategy Optimizer Pre-tax vs Roth analysis, charitable giving optimization, capital gains timing, deduction maximization. Not a substitute for CPA. Instructions You are an expert tax strategist. Provide tax optimization strategies with clear explanations. Always include CPA consultation disclaimer. Output Format Tax Strategy Optimizer Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best Practices Be Specific:...
55
13575 startup-launch travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
55
13576 ad copy writer eddiebe147/claude-settings
Ad Copy Writer Create scroll-stopping ad copy that captures attention and drives clicks across all major advertising platforms. This skill helps you master the unique constraints and best practices of Facebook, Google, LinkedIn, TikTok, and other paid media channels. Every platform has different character limits, audience expectations, and creative requirements. This skill provides platform-specific templates, proven formulas, and testing strategies that maximize your ad spend ROI. From awarenes...
55
13577 guidance orchestra-research/ai-research-skills
Guidance: Constrained LLM Generation When to Use This Skill Use Guidance when you need to: Control LLM output syntax with regex or grammars Guarantee valid JSON/XML/code generation Reduce latency vs traditional prompting approaches Enforce structured formats (dates, emails, IDs, etc.) Build multi-step workflows with Pythonic control flow Prevent invalid outputs through grammatical constraints GitHub Stars: 18,000+ | From: Microsoft Research Installation Base installation pip install guidanc...
55
13578 pentest-validation proffesor-for-testing/agentic-qe
Pentest Validation <default_to_action> When validating security findings: REQUIRE explicit authorization for target URL SCAN with qe-security-scanner (SAST + dependency + secrets) ANALYZE with qe-security-reviewer + qe-security-auditor (parallel) VALIDATE with qe-pentest-validator (graduated exploitation, parallel per vuln type) REPORT only confirmed findings with PoC evidence ("No Exploit, No Report") UPDATE exploit playbook with new patterns Quality Gates: Authorization confirmed before ANY ex...
55
13579 pypi-doppler terrylica/cc-skills
This skill supports LOCAL machine publishing ONLY. FORBIDDEN ❌ Publishing from GitHub Actions ❌ Publishing from any CI/CD pipeline (GitHub Actions, GitLab CI, Jenkins, CircleCI) ❌ `publishCmd` in semantic-release configuration ❌ Building packages in CI (`uv build` in prepareCmd) ❌ Storing PyPI tokens in GitHub secrets REQUIRED ✅ Use `scripts/publish-to-pypi.sh` on local machine ✅ CI detection guards in publish script ✅ Manual approval before each release ✅ Doppler credential management (no...
55
13580 langfuse-api langfuse/skills
Langfuse API Help users interact with Langfuse via the REST API. When to Use User wants to query or export traces User wants to manage prompts programmatically User wants to create/update datasets or dataset items User wants to fetch or create scores User wants to manage projects or API keys Any other Langfuse API interaction Workflow 1. Check Credentials Before making any API call, verify credentials are available: echo $LANGFUSE_PUBLIC_KEY pk-... echo $LANGFUSE_SECRET_KEY sk-... echo...
55
13581 pdf davepoon/buildwithclaude
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...
55
13582 implementation-verify drillan/speckit-gates
Verifies implementation against specifications after `/speckit.implement` completes. Purpose This skill automatically verifies that your implementation fulfills the specified requirements. It checks: - FR requirement fulfillment: How many FR-XXX requirements are addressed by completed tasks - Task completion rate: Percentage of tasks marked complete in tasks.md - Contract implementation: API endpoints implemented as specified (if contracts/ exists) - Test coverage alignment: Implementatio...
55
13583 cloudkit-code-review existential-birds/beagle
CloudKit Code Review Quick Reference Issue Type Reference CKContainer, databases, zones, entitlements references/container-setup.md CKRecord, references, assets, batch operations references/records.md CKSubscription, push notifications, silent sync references/subscriptions.md CKShare, participants, permissions, acceptance references/sharing.md Review Checklist Account status checked before private/shared database operations Custom zones used (not default zone) for production data All CloudKit...
55
13584 r2-glacier-migration pollinations/pollinations
R2 → AWS Glacier Deep Archive Migration Migrate ~42.6 TB from Cloudflare R2 to AWS S3 Glacier Deep Archive. Cost Savings R2 : ~$638/month → Glacier : ~$42/month Savings : ~$596/month Buckets Bucket Size Objects Status pollinations-text 16.96 TB 1.86B 🔄 In progress pollinations-images 25.64 TB 221M ⏳ Pending Quick Commands Check Status Is transfer running? ssh ninon "screen -ls" View recent logs ssh ninon "tail -50 ~/r2-glacier/transfer-text.log" Check checkpoint ssh ninon "cat /tmp/r2-glacier...
55
13585 grpo-rl-training orchestra-research/ai-research-skills
GRPO/RL Training with TRL Expert-level guidance for implementing Group Relative Policy Optimization (GRPO) using the Transformer Reinforcement Learning (TRL) library. This skill provides battle-tested patterns, critical insights, and production-ready workflows for fine-tuning language models with custom reward functions. When to Use This Skill Use GRPO training when you need to: Enforce specific output formats (e.g., XML tags, JSON, structured reasoning) Teach verifiable tasks with objective...
55
13586 nsfc-roadmap huangwb8/chineseresearchlatex
NSFC 技术路线图生成器 重要声明(非官方) 本技能生成的技术路线图仅用于写作与展示优化,不代表任何官方评审口径或资助结论。 安全与隐私(硬规则) 默认将标书内容视为敏感信息:仅处理用户明确提供的文件/目录;不擅自扩展扫描范围。 输出中避免复述不必要的个人信息/单位信息;图中节点仅保留科研相关内容。 默认不联网获取外部数据;若用户明确要求联网补充素材,先提醒风险再执行。 输入 用户至少提供其一: proposal_path :标书目录(包含 .tex / .md 等;推荐,AI 将自动读取立项依据与研究内容) proposal_file :单个输入文件(仅在无法提供目录时使用;推荐优先提供 proposal_path ) spec_file :结构化图规格文件(推荐,便于可控迭代) 可选: rounds :评估-优化轮次(默认 5,单一真相来源见 config.yaml:evaluation.max_rounds ) output_dir :输出目录(默认在当前工作目录下创建 roadmap_output/ ) renderer :渲染后端(默认 drawio ;仅当用户主动提及 N...
55
13587 file-organizer crazynomad/skills
File Organizer This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization. When to Use This Skill Your Downloads folder is a chaotic mess You can't find files because they're scattered everywhere You have duplicate files taking up space Your folder structure doesn't make sense anymore You want to establish better organization habits You're starting a new project and...
55
13588 b2c-content salesforcecommercecloud/b2c-developer-tooling
B2C Content Skill Use the b2c CLI to export and list Page Designer content from Salesforce B2C Commerce content libraries. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli content export homepage ). Examples Export Pages export a single page from a shared library b2c content export homepage --library SharedLibrary export multiple pages b2c content export homepage about-us contact --library SharedLibrary export pages matching a regex pat...
55
13589 langchain-orchestration manutej/luxor-claude-marketplace
LangChain Orchestration Skill Complete guide for building production-grade LLM applications with LangChain, covering chains, agents, memory, RAG patterns, and advanced orchestration techniques. Table of Contents Core Concepts Chains Agents Memory Systems RAG Patterns LLM Integrations Callbacks & Monitoring Retrieval Strategies Streaming Error Handling Production Best Practices Core Concepts LangChain Expression Language (LCEL) LCEL is the declarative way to compose chains in LangChain, enabli...
55
13590 notion-automation aaaaqwq/claude-code-skills
Notion Automation Automate Notion databases and workflows with cross-platform integrations, templates, and intelligent triggers. Based on n8n's Notion workflow templates. Overview This skill covers: Database automation and triggers Template and page creation Cross-platform sync (Slack, Calendar, CRM) Content management workflows Team collaboration automation Core Workflows 1. Form → Notion Database workflow : "Form to Notion" trigger : typeform_submission OR google_form steps : 1. capture_data :...
55
13591 cronlytic vm0-ai/vm0-skills
Cronlytic Use Cronlytic via direct curl calls to schedule and manage cron jobs that trigger HTTP requests/webhooks. Official docs: https://www.cronlytic.com/api-documentation When to Use Use this skill when you need to: Schedule recurring HTTP requests (webhooks, API calls) Automate background tasks without managing servers Create cron jobs with standard 5-field expressions Pause/resume jobs dynamically Monitor job execution via logs Prerequisites Sign up at Cronlytic Go to Dashboard → API ...
55
13592 worktree-manager terrylica/cc-skills
Alpha-Forge Worktree Manager Create and manage git worktrees for the alpha-forge repository with automatic branch naming, consistent conventions, and lifecycle management. When to Use This Skill Use this skill when: Creating a new worktree for alpha-forge development Setting up a worktree from a remote branch Using an existing local branch in a new worktree Managing multiple parallel feature branches Operational Modes This skill supports three distinct modes based on user input: Mode User Input ...
55
13593 azure-sql-optimization josiahsiegel/claude-plugin-marketplace
Azure SQL Database Optimization Platform-specific optimization for Azure SQL Database. Quick Reference Service Tier Comparison Tier Best For Max Size Key Features Basic Dev/test, light workloads 2 GB Low cost Standard General workloads 1 TB S0-S12 DTUs Premium High I/O, low latency 4 TB P1-P15 DTUs General Purpose (vCore) Most workloads 16 TB Serverless option Business Critical High availability 4 TB In-memory, read replicas Hyperscale Large databases 100 TB Auto-scaling storage DTU vs vCore A...
55
13594 skypilot-multi-cloud-orchestration orchestra-research/ai-research-skills
SkyPilot Multi-Cloud Orchestration Comprehensive guide to running ML workloads across clouds with automatic cost optimization using SkyPilot. When to use SkyPilot Use SkyPilot when: Running ML workloads across multiple clouds (AWS, GCP, Azure, etc.) Need cost optimization with automatic cloud/region selection Running long jobs on spot instances with auto-recovery Managing distributed multi-node training Want unified interface for 20+ cloud providers Need to avoid vendor lock-in Key features...
55
13595 coding-guidelines tech-leads-club/agent-skills
Rust Coding Guidelines (50 Core Rules) Naming (Rust-Specific) Rule Guideline No get_ prefix fn name() not fn get_name() Iterator convention iter() / iter_mut() / into_iter() Conversion naming as_ (cheap &), to_ (expensive), into_ (ownership) Static var prefix G_CONFIG for static, no prefix for const Data Types Rule Guideline Use newtypes struct Email(String) for domain semantics Prefer slice patterns if let [first, .., last] = slice Pre-allocate Vec::with_capacity(), String::with_capacity() Avoi...
55
13596 taskfiles ionfury/homelab
Taskfiles Repository Structure Taskfile.yaml Root: includes namespaced taskfiles .taskfiles/ ├── inventory/taskfile.yaml inv: IPMI host management ├── terragrunt/taskfile.yaml tg: Infrastructure operations ├── worktree/taskfile.yaml wt: Git worktree management └── renovate/taskfile.yaml renovate: Config validation File Template Always include schema and version: --- yaml-language-server: $schema=https://taskfile.dev/schema.json version : "3" vars : M...
55
13597 capacitor-ci-cd cap-go/capacitor-skills
CI/CD for Capacitor Applications Automate building, testing, and deploying Capacitor apps. When to Use This Skill User wants to automate builds User needs CI/CD pipeline User asks about GitHub Actions User needs app signing automation User wants automated releases GitHub Actions Complete Workflow .github/workflows/build.yml name : Build and Deploy on : push : branches : [ main , develop ] pull_request : branches : [ main ] env : NODE_VERSION : '20' jobs : Run tests and linting test : runs-on :...
55
13598 tauri-security-rules oimiragieo/agent-studio
Tauri Security Rules Skill Follow Tauri's security best practices, especially when dealing with IPC and native API access. Implement proper input validation and sanitization on the frontend. Use HTTPS for all communications with external services. Implement proper authentication and authorization mechanisms if required. Be cautious when using Tauri's allowlist feature, only exposing necessary APIs. Memory Protocol (MANDATORY) Before starting: cat .claude/context/memory/learnings.md After complet...
55
13599 aws-cost-optimizer sickn33/antigravity-awesome-skills
AWS Cost Optimizer Analyze AWS spending patterns, identify waste, and provide actionable cost reduction strategies. When to Use This Skill Use this skill when you need to analyze AWS spending, identify cost optimization opportunities, or reduce cloud waste. Core Capabilities Cost Analysis Parse AWS Cost Explorer data for trends and anomalies Break down costs by service, region, and resource tags Identify month-over-month spending increases Resource Optimization Detect idle EC2 instances (low CPU...
55
13600 startup-design ferdinandobons/startup-skill
Startup Design A structured, multi-phase skill that takes a startup idea from raw concept to validated design. It produces a complete set of markdown documents organized by domain, with built-in progress tracking so work survives session interruptions. How It Works The process has 8 phases executed sequentially. Each phase produces output files and updates the progress tracker. If a session is interrupted, resume from the last completed checkpoint. INTAKE → BRAINSTORM → RESEARCH → STRATEGY → BRA...
55