v6.0.3
m1k1o/nekov6.0.3Jun 18, 2026by obra
AI Summary
Moves Subagent-Driven Development (SDD) scratch files out of the `.git/` directory to prevent blocking by Claude Code's protected path rules, resolving issues with agent writes.
Key Highlights
- SDD files moved to `.superpowers/sdd/` to stay out of git status and commits
- Workspace is resolved per worktree by a shared helper
- Users should recover progress ledgers from `git log` if `git clean -fdx` is run
New Features
- SDD workspace helper for managing task briefs and review diffs
- Progress ledger for resuming lost controller context
Full Release Notes
### Subagent-Driven Development - **SDD scratch files moved out of `.git/`.** Claude Code treats `.git/` as a protected path and denies agent writes there, so an implementer subagent writing its report into `.git/sdd/` got blocked mid-run. Task briefs, implementer reports, review diffs, and the progress ledger now live in a self-ignoring `.superpowers/sdd/` directory in the working tree — kept out of `git status` and out of commits, and resolved per worktree by a shared `sdd-workspace` helper. One caveat: because the workspace is git-ignored working-tree scratch, `git clean -fdx` will delete the progress ledger; recover from `git log` if that happens. (#1780)