As of: 2026-06-01
Auditor: Claude Code session (claude.ai/code)
Purpose: Inventory every non-main branch so deletions are zero-risk — the ideas live here.
If a branch is marked SAFE_DELETE, every meaningful change it contains is already in main (verified by file existence). If marked KEEP, it has unmerged work worth reviving or finishing. The revival command is git checkout origin/<branch> (the GitHub UI never permanently loses a branch — delete + recreate is fine).
| Status | Count |
|---|---|
SAFE_DELETE (work in main) |
8 |
KEEP (active PR) |
2 |
KEEP_BACKUP (staging snapshot) |
1 |
All SAFE_DELETE branches can be removed without losing anything. The 2 KEEP branches each back an open PR. The staging snapshot is an explicit save-point.
- 2 unique commits:
feat: integrate garrytan/gstack engineering sprint system·chore: add .claude-flow/ to gitignore - Status: ABSORBED — gstack sprint commands (
/office-hours,/review,/qa,/ship,/land-and-deploy, etc.) are documented inCLAUDE.mdand live in.claude/commands/. The integration shipped. - Recommendation:
SAFE_DELETE - Revival (if needed):
git checkout origin/claude/integrate-gstack-ZTgoO
- 2 unique commits: tri-modal hooks framework + 10-dimension hooks expansion
- Status: ABSORBED —
.claude/skills/hook/SKILL.md,.claude/commands/hook.md,hooks/index.md,hooks/templates/wisdom.mdall present inmain. - Recommendation:
SAFE_DELETE - Revival:
git checkout origin/claude/slack-improve-acos-metrics-b9CP0
- 0 unique commits — fully merged into
main. - Recommendation:
SAFE_DELETE
- 0 unique commits — fully merged into
main. - Recommendation:
SAFE_DELETE
- 1 unique commit:
Add AGENTS.md with Cursor Cloud specific instructions - Status: SUPERSEDED —
AGENTS.mdinmainhas been substantially rewritten since this branch (per PR #103 description). - Recommendation:
SAFE_DELETE
- 0 unique commits — fully merged into
main. - Recommendation:
SAFE_DELETE
- 0 unique commits — fully merged into
main. - Recommendation:
SAFE_DELETE
- 5 unique commits: book-distiller subagent + library-os skill +
/library-add/library-deepen/library-researchcommands - Status: ABSORBED — all 5 files (
.claude/agents/book-distiller.md,.claude/skills/library-os/SKILL.md, all 3 commands) exist inmain. Work was rebuilt or re-committed. - Recommendation:
SAFE_DELETE - Revival (if needed):
git checkout origin/feat/library-os
- Multimodal Studio — unified image/video/character generation through Higgsfield MCP. 30+ frontier models. Substantial.
- Recommendation:
KEEPuntil PR #12 is merged or closed.
- Manifest-driven packaging —
acos.manifest.json+ installer fixes. Cursor agent's work. - Recommendation:
KEEPuntil PR #10 is merged or closed.
- 1 unique commit:
chore(madrid-handoff): stage uncommitted WIP for review - Status: Explicit save-point from a session handoff. Treat as a backup.
- Recommendation:
KEEP_BACKUP— delete only when the Madrid sprint is fully done.
# 8 branches safe to delete from agentic-creator-os
for b in \
claude/integrate-gstack-ZTgoO \
claude/slack-improve-acos-metrics-b9CP0 \
claude/slack-fix-hallucinated-metrics-Ut20V \
claude/slack-improve-metrics-accuracy-4mtO1 \
cursor/development-environment-setup-129a \
feat/absorb-ecc-gsd \
feat/absorb-get-shit-done \
feat/library-os; do
gh api -X DELETE "repos/frankxai/agentic-creator-os/git/refs/heads/$b" && echo "deleted $b"
done(GitHub UI: same 8 branches under Branches → trash icon each.)
When a new orphan branch appears, add a section above with: unique-commit count · file inventory · IN MAIN / MISSING verification · KEEP/SAFE_DELETE recommendation.