Releases: frankbria/codeframe
CodeFRAME v0.1.0 — Think. Build. Prove. Ship.
CodeFRAME v0.1.0 — First Public Alpha
The full Think → Build → Prove → Ship pipeline in a single CLI binary.
Warning
Prerequisite: You need an ANTHROPIC_API_KEY from console.anthropic.com before running any cf command.
Quick Start
Step 1 — Install
```bash
git clone https://github.com/frankbria/codeframe.git && cd codeframe
curl -LsSf https://astral.sh/uv/install.sh | sh
uv venv && source .venv/bin/activate && uv sync
uv run cf --help # smoke test
```
Step 2 — Set your API key
```bash
export ANTHROPIC_API_KEY="sk-ant-..."
```
Step 3 — Initialize your project
```bash
uv run cf init /path/to/your/project --detect
```
Step 4 — Think: generate a PRD and tasks
```bash
uv run cf prd generate
uv run cf tasks generate
uv run cf tasks list
```
Step 5 — Build, Prove, and Ship
```bash
uv run cf work batch run --all-ready
uv run cf proof run
uv run cf pr create
```
What's included
- THINK: Socratic PRD generation with stress-testing, LLM task decomposition, dependency graphs, CPM scheduling
- BUILD: ReAct agent, Claude Code/Codex/OpenCode/Kilocode adapters, self-correction, stall detection, batch execution
- PROVE: PROOF9 quality memory — 9-gate evidence-based verification, permanent proof obligations
- SHIP: GitHub PR workflow, environment validation
- Web UI (optional): Workspace, PRD, Tasks, Blockers, Review, PROOF9 views
- Test suite: 2,600+ v2 tests passing, CI on every PR
Status
This is an alpha release. The CLI is fully functional. PyPI package not yet published — use git clone to install.