chore(repo): remove accidental local runtime artifacts

This commit is contained in:
Shay 2026-06-16 12:42:41 -07:00
parent b30a1cf538
commit 5c048f9782
6 changed files with 3 additions and 1056 deletions

3
.gitignore vendored
View file

@ -78,3 +78,6 @@ contemplation_runs/
# Cowork/Claude tooling artifacts
skills-lock.json
# Per-life backup checkpoint dirs are runtime-generated, not source.
engine_state/_life_backup_*/

File diff suppressed because one or more lines are too long

View file

@ -1,7 +0,0 @@
{
"engine_identity": "75f3bb75649dc5506ca596ffcd7acb6d728bb0ed2a749dcf86ff51e637a29fee",
"parent_engine_identity": "75f3bb75649dc5506ca596ffcd7acb6d728bb0ed2a749dcf86ff51e637a29fee",
"schema_version": 2,
"turn_count": 26396,
"written_at_revision": "c6d0e2a92004"
}

View file

@ -1,17 +0,0 @@
import json
with open('/Users/kaizenpro/Projects/core/.system-map/raw_nodes.json', 'r') as f:
data = json.load(f)
for node in data.get('nodes', []):
if node['zone_id'] == 'L6-chat-runtime':
if "inline realization" not in node['what_it_does']:
node['what_it_does'] += " Additionally, handles inline realization (Step B-1), surface determination (Step B-2), and enforces edge-deployment budget gates per-turn."
if node['zone_id'] == 'L5-cognition':
if "ASK serving" not in node['what_it_does']:
node['what_it_does'] += " Integrating ASK serving scope and Q1-B missing_* reclassification carve-outs."
with open('/Users/kaizenpro/Projects/core/.system-map/raw_nodes.json', 'w') as f:
json.dump(data, f, indent=2)
print("Patched raw_nodes.json successfully.")