Install
openclaw skills install plan-flowStructured AI-assisted development workflows - discovery, planning, execution, code reviews, and testing
openclaw skills install plan-flowA comprehensive skill set for AI-assisted software development with structured workflows and persistent project memory.
| Command | Description |
|---|---|
/setup | Analyze project and generate pattern files |
/discovery | Create discovery document for requirements gathering |
/create-plan | Create implementation plan with phases and complexity scores |
/execute-plan | Execute plan phases with verification |
/create-contract | Create integration contract from API docs |
/review-code | Review local uncommitted changes |
/review-pr | Review a Pull Request |
/write-tests | Write tests to achieve coverage target |
/flow | Toggle autopilot mode (auto-chains the full workflow) |
| Feature | Description |
|---|---|
| Project Ledger | Persistent learning journal at flow/ledger.md - silently captures mistakes, corrections, and project-specific knowledge across sessions |
Automated - runs without asking permission:
1. /setup → Index project patterns (run once)
2. /discovery → Gather requirements for a feature
3. /create-plan → Create structured implementation plan (auto-runs after discovery)
4. /execute-plan → Execute the plan phase by phase (auto-runs after plan)
5. /review-code → Review changes before committing
6. Archive → Move discovery + plan to flow/archive/
Only stop to ask the user when:
Never ask "Ready to create plan?" or "Proceed with execution?" - just do it.
Every plan phase has a complexity score (0-10):
| Score | Level | Description |
|---|---|---|
| 0-2 | Trivial | Simple, mechanical changes |
| 3-4 | Low | Straightforward implementation |
| 5-6 | Medium | Moderate complexity, some decisions |
| 7-8 | High | Complex, multiple considerations |
| 9-10 | Very High | Significant complexity/risk |
All artifacts are stored in flow/:
flow/
├── archive/ # Completed/abandoned plans
├── contracts/ # Integration contracts
├── discovery/ # Discovery documents
├── plans/ # Active implementation plans
├── references/ # Reference materials
├── reviewed-code/ # Code review documents
├── reviewed-pr/ # PR review documents
└── ledger.md # Persistent project learning journal
/discovery is required before /create-plan. Plans cannot be created without a discovery document. No exceptions. If no discovery exists, run discovery first.flow/archive/.Create .plan-flow.yml in your project root:
ai:
provider: claude
anthropic_api_key: sk-ant-api03-your-key-here
git - For version control operationsgh - GitHub CLI for PR reviewsclawhub install plan-flow
Or add to your workspace skills folder:
git clone https://github.com/brunoscardoso/plan-flow.git ~/.openclaw/skills/plan-flow