laravel:writing-plans
31
总安装量
21
周安装量
#11853
全站排名
安装命令
npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:writing-plans
Agent 安装分布
claude-code
19
gemini-cli
10
opencode
10
github-copilot
9
cursor
8
Skill 文档
Writing Plans (Laravel)
Turn a confirmed design into a sequence of small, testable steps. Include guardrails and validation before handoff.
Structure
- Scaffolding
- Runner: confirm Sail or host
- Branch & workspace prep (worktrees optional)
- Data Model
- Migrations and factories (one commit per change)
- Seeders if needed for demo flows
- Services & Interfaces
- Controllers/Requests/Resources (or actions)
- Ports & adapters for external systems
- Jobs/events/listeners as needed
- Tests (TDD)
- Feature tests for behavior; unit tests for pure logic
- Use factories; verify failure first, then pass
- Quality Gates
- Pint, static analysis, tests clean
- Rollout & Observability
- Logs/metrics; Horizon queues; toggles/migrations safety
Example Task Format
- Add migration + model + factory for X
- Write failing feature test for route Y
- Implement controller + request + policy for Y
- Add service with port+adapter for Z
- Dispatch job; add listener + events as needed
- Verify queues; add tags and Horizon metrics
- Run quality checks; update docs
After writing the plan, use laravel:executing-plans to execute in batches.