scope

📁 andrewex/claude-skills 📅 7 days ago
2
总安装量
2
周安装量
#63174
全站排名
安装命令
npx skills add https://github.com/andrewex/claude-skills --skill scope

Agent 安装分布

opencode 2
claude-code 2
github-copilot 2
codex 2
kimi-cli 2
gemini-cli 2

Skill 文档

Scope — Feature Planning Pipeline

A comprehensive feature scoping and planning pipeline that takes you from a rough idea to an implementation-ready task breakdown. Every agent adapts to your project’s tech stack, conventions, and architecture automatically.

When to Apply

Use these commands when:

  • Planning a new feature before implementation
  • Scoping a complex bug fix or refactor
  • Designing database schemas, API endpoints, or UI layouts
  • Breaking work into phased, actionable tasks
  • You want comprehensive planning artifacts before writing code

Pipeline

/scope:prompt → /scope:plan → /scope:db → /scope:api → /scope:ui → /scope:edge → /scope:test → /scope:task → /scope:exec

Commands

Command Description
/scope:prompt Refine a rough idea into a detailed, context-rich prompt
/scope:interview Gather requirements through interactive Q&A
/scope:brainstorm Explore ideas and approaches before planning
/scope:plan Create a detailed implementation plan
/scope:db Design database schema from the plan
/scope:api Design API endpoints from the plan
/scope:ui Create ASCII wireframes from the plan
/scope:edge Identify and document edge cases
/scope:test Create comprehensive test plans
/scope:task Break the plan into phased, actionable tasks
/scope:exec Execute the implementation phase by phase
/scope:full Run the entire pipeline in one session

Quick Start

# Full pipeline in one session
/scope:full my-feature Describe what you want to build

# Or step by step
/scope:prompt my-feature
/scope:plan my-feature
/scope:task my-feature
/scope:exec my-feature

Output

All documents are saved to .claude/scope/{feature-name}/:

.claude/scope/my-feature/
├── prompt.md       # Refined feature prompt
├── plan.md         # Implementation plan
├── schema.md       # Database schema design
├── api-spec.md     # API specification
├── wireframes.md   # ASCII UI wireframes
├── edge-cases.md   # Edge case analysis
├── test-plan.md    # Test strategy & scenarios
└── tasks.md        # Phased task breakdown

How It Adapts

Each agent automatically discovers your project’s tech stack, architecture, database, API framework, UI framework, testing tools, and conventions — so the same commands work across any stack.