بنقرة واحدة
titan-reset
Clean up all Titan Paradigm artifacts and snapshots, restoring the codebase to pre-Titan state
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Clean up all Titan Paradigm artifacts and snapshots, restoring the codebase to pre-Titan state
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Adopt extracted helpers — find dead symbols from forge, wire them into consumers, replace duplicated inline patterns, and gate on dead-symbol delta (Titan Paradigm Phase 4.5)
Adopt extracted helpers — find dead symbols from forge, wire them into consumers, replace duplicated inline patterns, and gate on dead-symbol delta (Titan Paradigm Phase 4.5)
Validate staged changes — codegraph checks + project lint/build/test, auto-rollback on failure, pass/fail commit gate (Titan Paradigm Phase 4)
Audit codebase files against the 4-pillar quality manifesto using RECON work batches, with batch processing and context budget management (Titan Paradigm Phase 2)
Map a codebase's dependency graph, identify hotspots, name logical domains, propose work batches, and produce a ranked priority queue for autonomous cleanup (Titan Paradigm Phase 1)
Local repo maintenance — clean stale worktrees, remove dirt files, sync with main, update codegraph, prune branches, and verify repo health
| 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/null
Also 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
done
rm -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 trailIf $ARGUMENTS does NOT contain --keep-graph:
codegraph build
This 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