| name | titan-reset |
|---|---|
| description | Clean up all Titan Paradigm artifacts and snapshots, restoring the codebase to pre-Titan state |
| argument-hint | <--keep-graph to preserve the codegraph database> |
| allowed-tools | Bash, Read, Write, Grep |
You are resetting the Titan Paradigm pipeline, removing all artifacts and restoring the codebase to its pre-Titan state.
codegraph snapshot restore titan-baseline 2>/dev/null && echo "Baseline restored" || echo "No baseline snapshot found"This restores the graph database to its pre-GAUNTLET state.
codegraph snapshot delete titan-baseline 2>/dev/nullAlso delete any batch snapshots dynamically:
for name in $(codegraph snapshot list --json 2>/dev/null | node -e "let d='';process.stdin.on('data',c=>d+=c).on('end',()=>{try{JSON.parse(d).filter(s=>s.name.startsWith('titan-batch-')).forEach(s=>console.log(s.name))}catch(e){}})"); do
codegraph snapshot delete "$name" 2>/dev/null
donerm -rf .codegraph/titan/This removes:
titan-state.json— session stateGLOBAL_ARCH.md— architecture documentgauntlet.ndjson— audit resultsgauntlet-summary.json— aggregated resultssync.json— execution plangate-log.ndjson— gate audit trail
If $ARGUMENTS does NOT contain --keep-graph:
codegraph buildThis ensures the graph reflects the current state of the codebase without any Titan-era corruption.
If $ARGUMENTS contains --keep-graph, skip this step.
Titan pipeline reset complete.
- Baseline snapshot: restored and deleted
- Batch snapshots: deleted
- Artifacts: removed (.codegraph/titan/)
- Graph: rebuilt (clean state)
To start a fresh Titan pipeline, run /titan-recon