Workflow guidance for Claude Code and Codex.
Hyperpowers provides repo-local skills, hooks, commands, and specialized agents that help AI coding agents stay aligned with a real engineering workflow. The active workflow is markdown-first: shape the work, create a local task directory, then execute in small reviewed slices.
- Active work is now tracked in local markdown task directories under
plans/active/. plan.mdholds the approved spec.context.mdcaptures discoveries and resume notes.tasks.mdis the rolling backlog withNow,Next,Later,Blocked, andDone.- Finished task directories are deleted from
plans/active/; they are not archived in the repo.
Core workflow skills:
brainstormingshapes rough ideas into an approved specwriting-plansdistills the spec into task docsexecuting-plansworks the current slice and updates docsreview-implementationaudits the implementation against the specverification-before-completionrequires evidence before completion claimsmanaging-task-docshandles splitting, deleting finished local task dirs, and re-prioritizing task docs
Supporting skills:
test-driven-developmentdebugging-with-toolsfixing-bugsrefactoring-diagnosisrefactoring-designrefactoring-safelydispatching-parallel-agentsbuilding-hooksskills-auto-activation
/hyperpowers:brainstorm/hyperpowers:write-plan/hyperpowers:execute-plan/hyperpowers:update-task-docs/hyperpowers:review-implementation
code-reviewercodebase-investigatorinternet-researchertest-runner
Hooks support:
- skill activation suggestions
- session-start context injection
- task-doc truncation guards
- edit tracking
- stop-time reminders for verification and task-doc updates
See HOOKS.md for details.
For substantial work:
- Shape the work with
brainstorming. - Create
plans/active/<slug>/plan.md. - Use
writing-plansto fillcontext.mdandtasks.md. - Use
executing-plansto work only the currentNowslice. - Review and verify before completion.
- Delete the finished local directory from
plans/active/.
Claude Code plugin:
/plugin marketplace add withzombies/hyperpowers
/plugin install hyperpowers@withzombies-hyper
Codex skills:
- Repo-local skills live in
.agents/skills/ - Cross-tool policy lives in AGENTS.md
- Codex-specific notes live in CODEX.md
- Shape first, code second
- Keep strategy in repo docs
- Keep execution slices small
- Update task docs as reality changes
- Verify before claiming completion
- Use
writing-skillswhen editing skills - Use
building-hookswhen editing hook behavior - Prefer local markdown task docs
MIT