Generate $PLAN_ROOT/spec.md:
Based on research findings, NOT generic questions.
markdown
# Specification: {Title}
**Track ID:** {trackId}
**Type:** {Feature|Bug|Refactor|Chore}
**Created:** {YYYY-MM-DD}
**Status:** Draft
## Summary
{1-2 paragraph description based on research}
## Acceptance Criteria
- [ ] {concrete, testable criterion}
- [ ] {concrete, testable criterion}
{3-8 criteria based on research findings}
## Dependencies
- {external deps, packages, other tracks}
## Out of Scope
- {what this track does NOT cover}
## Technical Notes
- {architecture decisions from research}
- {relevant patterns found in codebase}
- {reusable code from other projects}
Generate $PLAN_ROOT/plan.md:
Concrete, file-level plan from research. Keep it tight: 2-4 phases, 5-15 tasks total.
Critical format rules (parsed by /build):
Phase headers: ## Phase N: Name
Tasks: - [ ] Task N.Y: Description (with period or detailed text)
Subtasks: indented - [ ] Subtask description
All tasks use [ ] (unchecked), [~] (in progress), [x] (done)
markdown
# Implementation Plan: {Title}
**Track ID:** {trackId}
**Spec:** [spec.md](./spec.md)
**Created:** {YYYY-MM-DD}
**Status:** [ ] Not Started
## Overview
{1-2 sentences on approach}
## Phase 1: {Name}
{brief description of phase goal}
### Tasks
- [ ] Task 1.1: {description with concrete file paths}
- [ ] Task 1.2: {description}
### Verification
- [ ] {what to check after this phase}
## Phase 2: {Name}
### Tasks
- [ ] Task 2.1: {description}
- [ ] Task 2.2: {description}
### Verification
- [ ] {verification steps}
{2-4 phases total}
## Phase {N-1}: Deploy (if deploy infrastructure exists)
_Include this phase ONLY if the project has deploy scripts/configs (deploy.sh, Dockerfile, docker-compose.yml, fly.toml, wrangler.toml, vercel.json). Skip if no deploy infra found._
### Tasks
- [ ] Task {N-1}.1: {concrete deploy step — e.g. "Run python/deploy.sh to push Docker image to VPS", "wrangler deploy", etc.}
- [ ] Task {N-1}.2: Verify deployment — health check, logs, HTTP status
### Verification
- [ ] Service is live and healthy
- [ ] No runtime errors in production logs
## Phase {N}: Docs & Cleanup
### Tasks
- [ ] Task {N}.1: Update CLAUDE.md with any new commands, architecture changes, or key files
- [ ] Task {N}.2: Update README.md if public API or setup steps changed
- [ ] Task {N}.3: Remove dead code — unused imports, orphaned files, stale exports
### Verification
- [ ] CLAUDE.md reflects current project state
- [ ] Linter clean, tests pass
## Final Verification
- [ ] All acceptance criteria from spec met
- [ ] Tests pass
- [ ] Linter clean
- [ ] Build succeeds
- [ ] Documentation up to date
---
_Generated by /plan. Tasks marked [~] in progress and [x] complete by /build._
Plan quality rules:
Every task mentions specific file paths (from research).
Tasks are atomic — one commit each.
Phases are independently verifiable.
Total: 5-15 tasks (not 70).
Last phase is always "Docs & Cleanup".
Harness-aware: if the task introduces new patterns, include a task to update lint rules or CLAUDE.md constraints. If it touches module boundaries, include verification of dependency direction. Think: "what harness change prevents future agents from breaking this?"
Create progress task list for pipeline visibility:
After writing plan.md, create TaskCreate entries so progress is trackable:
One task per phase: "Phase 1: {name}" with task list as description.
This gives the user and pipeline real-time visibility into what's planned.
/build will update these tasks as it works through them.
If superpowers:writing-plans skill is available, follow its granularity format: bite-sized tasks (2-5 minutes each), complete code in task descriptions, exact file paths, verification steps per task. This enhances the built-in format above.
Show plan for approval via AskUserQuestion:
Present the spec summary + plan overview. Options:
"Approve and start" — ready for /build
"Edit plan" — user wants to modify before implementing
"Cancel" — discard the track
If "Edit plan": tell user to edit $PLAN_ROOT/plan.md manually, then run /build.
Cause: Feature scope too broad or tasks not atomic enough.
Fix: Target 5-15 tasks across 2-4 phases. Split large features into multiple tracks.
Context detection wrong (project vs KB)
Cause: Directory has both code manifests and KB-style directories.
Fix: Project context takes priority if package.json/pyproject.toml exists.
Research phase finds no relevant code
Cause: New project with minimal codebase or MCP tools unavailable.
Fix: Skill falls back to Glob + Grep. For new projects, the plan will rely more on CLAUDE.md architecture and stack conventions.
Limited provenance information — review the source before installing.
Freshness11/15
Updated within the last 6 months.
Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.
Proud of your score? Add this badge to your README.
Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.
Score badge
Markdown
[](https://www.remoteopenclaw.com/skills/fortunto2/solo-plan)
HTML
<a href="https://www.remoteopenclaw.com/skills/fortunto2/solo-plan"><img src="https://www.remoteopenclaw.com/skills/fortunto2/solo-plan/badges/score.svg" alt="Solo Plan skill"/></a>
Solo Plan FAQ
How do I install the Solo Plan skill?
Run “clawhub install fortunto2/solo-plan” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.
What does the Solo Plan skill do?
This skill is self-contained — follow the steps below instead of delegating to external planning skills (superpowers, etc.). The SKILL.md section on this page shows the exact instructions the skill gives your agent.
Is the Solo Plan skill free?
Yes. Solo Plan is a free, open-source skill by fortunto2. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.
Does Solo Plan work with Claude Code and OpenClaw?
Yes. Skills use the portable SKILL.md format, so Solo Plan works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.