A CLI tool for managing Claude-based projects.
Structure your Claude Code projects with phase-based planning, progress tracking, and archival so long-running projects stay organized across sessions.
./install.shAdd to PATH if needed:
export PATH="$HOME/.local/bin:$PATH"Double-click install.bat or run from command line:
install.batOr directly in PowerShell:
.\install.ps1Requires Python 3 installed and in PATH.
Note: macOS and Windows support is untested. Please open an issue if you encounter problems.
cframe init my-project
cframe init my-project --design --systems# From inside
cframe init
# From outside
cframe init path/to/existing-projectcframe add --deploycframe listcframe statusArchives the file and resets it from the base template. Run from a project root or inside .claude/.
cframe archive phase # current-phase.md -> archive/phases/phase-#.md
cframe archive progress # progress.md -> archive/progress/progress-#.md
cframe archive prompt # prompt.md -> archive/prompts/prompt-#.md
cframe archive overview # overview.md -> archive/overviews/overview-#.md- Run
cframe initand update.claude/overview.mdwith a project summary and deliverables - Run Claude in plan mode and collaborate to define phases and high-level tasks in overview
- Plan the first
current-phaseusing overview as reference; include details, edge cases, and granular tasks - Optionally add extensions (
cframe add --deploy) and populate their md files with specs - Iterate until current-phase is complete
- Repeat for each phase until the project is finalized
Tip: Some extensions are self-updating. For example,
--deployupdates automatically when Claude recognizes deployment-relevant steps.
| Extension | Description |
|---|---|
--design |
UI/UX design planning and documentation |
--deploy |
Deployment steps and documentation |
--systems |
System architecture and infrastructure |
After cframe init, your project contains:
.claude/
.cframe/ # cframe metadata
extensions.json # Installed extensions
CLAUDE.md # Claude instructions
extensions.json # Installed extensions
overview.md # Project roadmap
current-phase.md # Active work
progress.md # Progress log
prompt.md # Large prompt input
archive/ # Historical records
MIT