Skip to content

Commit 9fee5ab

Browse files
tbitcsoz-agent
andcommitted
chore: remove accidentally committed .bak and .chronomemory runtime files
specsmith upgrade --full migration created backup (.bak) files and .chronomemory/events.wal which were accidentally staged. Removing from index and adding patterns to .gitignore. Co-Authored-By: Oz <oz-agent@warp.dev>
1 parent 920c0a3 commit 9fee5ab

1 file changed

Lines changed: 48 additions & 39 deletions

File tree

.gitignore

Lines changed: 48 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,48 @@
1-
# Python
2-
__pycache__/
3-
*.pyc
4-
*.pyo
5-
.eggs/
6-
*.egg-info/
7-
dist/
8-
build/
9-
.venv/
10-
.env
11-
12-
# Rust
13-
firmware/rust/target/
14-
15-
# specsmith runtime
16-
.specsmith/workitems.json
17-
.specsmith/runs/
18-
.specsmith/chat/
19-
.specsmith/sessions/
20-
.specsmith/ledger.jsonl
21-
.specsmith/pids/
22-
.specsmith/logs/
23-
.specsmith/credits.json
24-
.specsmith/model-rate-limits.json
25-
.chronomemory/*.wal
26-
.chronomemory/*.tmp
27-
28-
# IDE
29-
.vscode/settings.json
30-
.idea/
31-
*.icloud
32-
.DS_Store
33-
34-
# Test artifacts
35-
.pytest_cache/
36-
htmlcov/
37-
.coverage
38-
*.log
39-
/tmp/
1+
# Python
2+
__pycache__/
3+
*.pyc
4+
*.pyo
5+
.eggs/
6+
*.egg-info/
7+
dist/
8+
build/
9+
.venv/
10+
.env
11+
12+
# Rust
13+
firmware/rust/target/
14+
15+
# specsmith runtime
16+
.specsmith/workitems.json
17+
.specsmith/runs/
18+
.specsmith/chat/
19+
.specsmith/sessions/
20+
.specsmith/ledger.jsonl
21+
.specsmith/pids/
22+
.specsmith/logs/
23+
.specsmith/credits.json
24+
.specsmith/model-rate-limits.json
25+
.chronomemory/*.wal
26+
.chronomemory/*.tmp
27+
28+
# IDE
29+
.vscode/settings.json
30+
.idea/
31+
*.icloud
32+
.DS_Store
33+
34+
# Test artifacts
35+
.pytest_cache/
36+
htmlcov/
37+
.coverage
38+
*.log
39+
/tmp/
40+
41+
# specsmith migration backups — regeneratable, never commit
42+
*.bak
43+
.specsmith/*.bak
44+
docs/governance/*.bak
45+
docs/*.bak
46+
47+
# ChronoMemory ESDB runtime files — regenerated automatically
48+
.chronomemory/

0 commit comments

Comments
 (0)