work #N | brainstorm | plan | execute | prd | suite | "description" [--mode quick|full] [-T, --power]
Orchestrates development workflows with intelligent quick or full mode routing.
/plugin marketplace add jrc1883/popkit-claude/plugin install popkit-dev@popkit-claude[subcommand|description] [flags]Unified entry point for development workflows.
Intelligent routing: Auto-selects quick (5-step) or full (7-phase) workflow.
/popkit-dev:dev "add dark mode" # Auto-routed
/popkit-dev:dev work #123 # Issue-driven
/popkit-dev:dev brainstorm # Idea refinement
/popkit-dev:dev plan "feature" # Write plan
/popkit-dev:dev execute # Run plan
/popkit-dev:dev "task" --mode quick # Override
| Subcommand | Description | Use Case |
|---|---|---|
work #N | Issue-driven dev | GitHub issue |
brainstorm | Socratic questioning | Unclear requirements |
plan | Implementation plan | Planning |
execute | Execute plan | Implementation |
prd | Generate PRD | Requirements |
suite | Full doc suite | Complete docs |
| Mode | When | Process |
|---|---|---|
quick | Simple, clear | 5 steps: Understand → Find → Fix → Verify → Commit |
full | Complex | 7 phases: Discovery → Exploration → Questions → Architecture → Impl → Review → Summary |
Override: --mode quick|full
| Flag | Short | Description |
|---|---|---|
--mode | quick or full | |
--thinking | -T | Extended thinking |
--think-budget N | Token budget (10000) | |
--from FILE | From design/plan | |
--issue N | Reference issue | |
--power | -p | Power Mode |
--solo | -s | Sequential |
Quick: Simple, greenfield, few files Full: Complex, architecture, multi-domain
Details: commands/examples/dev/routing-examples.md
7-phase workflow.
| Phase | Goal | Agent/Skill |
|---|---|---|
| 1. Discovery | What to build | pop-brainstorming |
| 2. Exploration | Understand code | code-explorer |
| 3. Questions | Clarify | pop-project-templates |
| 4. Architecture | Design | code-architect |
| 5. Implementation | Build | pop-writing-plans, pop-executing-plans |
| 6. Review | Quality | code-reviewer |
| 7. Summary | Complete | pop-finish-branch |
Details: commands/examples/dev/full-mode-walkthrough.md
Issue-driven with Power Mode.
/popkit-dev:dev work #57 -p
CRITICAL: Always present next actions (Issue #118)
Details: commands/examples/dev/work-mode-completion.md
Socratic design refinement via pop-brainstorming.
Details: commands/examples/dev/brainstorm-session.md
Implementation plans via pop-writing-plans.
Details: commands/examples/dev/plan-structure.md
Batch execution via pop-executing-plans.
/popkit-dev:dev execute --batch-size 5 --start-at 4
Details: commands/examples/dev/execute-batch-flow.md
5-step minimal ceremony.
/popkit-dev:dev "fix timezone bug"
| Task Type | Checks |
|---|---|
| Animations/Physics | Energy, collision |
| UI Components | A11y, responsive |
| API Endpoints | Validation, security |
| Data Processing | Edge cases, perf |
| Bug Fixes | Regression, root cause |
Details: commands/examples/dev/quick-mode-examples.md
Generate PRD with Summary, Problem, Goals, Requirements (P0/P1/P2), Stories, Tech, Risks.
Generate complete docs:
| Document | Location | Purpose |
|---|---|---|
problem_statement.md | docs/discovery/ | Problem |
PRD.md | docs/prd/ | Requirements |
user_stories.md | docs/prd/ | Stories |
ARCHITECTURE.md | docs/architecture/ | Design |
TECHNICAL_SPEC.md | docs/architecture/ | Tech details |
# Full
Use Task tool (Explore|Plan|code-reviewer)
git worktree add .worktrees/feature-<name> -b feature/<name>
# Work
gh issue view <number> --json number,title,body,labels,state,author
# Skills
Use Skill tool (pop-brainstorming|pop-writing-plans|pop-executing-plans)
| Old | New |
|---|---|
/popkit:design | /popkit-dev:dev brainstorm |
/popkit:plan | /popkit-dev:dev plan |
/popkit:feature-dev | /popkit-dev:dev full |
/popkit-dev:git - Version control/popkit-dev:issue - Issue management/popkit-dev:worktree - Worktree management/popkit-core:power - Multi-agent orchestration