-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
45 lines (33 loc) · 1009 Bytes
/
Copy path.gitignore
File metadata and controls
45 lines (33 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Secrets
.env
.env.local
# Claude Code local config (per-machine)
.claude/
# Per-plugin runtime state (never committed — contains session caches, clustering state, audit logs)
plugins/*/state/*
!plugins/*/state/.gitkeep
# Gauss Accumulation — aggregated cross-plugin snapshot (regenerated per export)
shared/learnings.json
# Event-bus runtime state (JSON-lines, regenerated at runtime)
shared/events/bus.jsonl
# Test fixture outputs (M1 flags, M7 scores, verdicts — regenerated per run)
tests/fixtures/**/output/
# Perf benchmark snapshots (regenerated per bench run)
tests/perf/*.latest.json
# OS files
.DS_Store
Thumbs.db
# Python cache
__pycache__/
*.pyc
# Temp files
*.tmp
# Asset toolchain (mermaid-cli + puppeteer + mathjax are dev-only; generated SVGs are committed)
docs/assets/node_modules/
docs/assets/package-lock.json
# Verdict-report artifacts (regenerated per release from current state)
docs/architecture/output/*.pdf
docs/architecture/output/*.html
# Editor
.vscode/
.idea/