-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
86 lines (69 loc) · 1.82 KB
/
.gitignore
File metadata and controls
86 lines (69 loc) · 1.82 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# ==================================================
# MATRIX REPO — IGNORE RULES
# Purpose:
# - keep the repo structurally clean
# - exclude generated, local, or bulk artifacts
# - preserve only curated, decision-relevant material
# ==================================================
# --------------------------------------------------
# OS / Editor noise
# --------------------------------------------------
.DS_Store
Thumbs.db
*.swp
*.swo
*~
.idea/
.vscode/
# --------------------------------------------------
# Secrets / local environment
# --------------------------------------------------
.env
.env.*
*.key
*.pem
*.secret
*.credentials
# --------------------------------------------------
# Temporary / generated meta artifacts
# --------------------------------------------------
dir.txt
ToDo
# --------------------------------------------------
# Runs — bulk execution output
#
# Principle:
# - runs are generated artifacts
# - only explicitly curated runs should be committed
# - bulk or exploratory runs are excluded by default
# --------------------------------------------------
# Explicit bulk runs (dated, exploratory)
2.runs/2026-01-20/
2.runs/2026-02-11/
# --------------------------------------------------
# Notes
#
# - .gitignore is part of repo governance
# - exclusions are intentional and documented
# - whitelisting (!path) may be used later
# for exemplary or canonical runs
# --------------------------------------------------
# Local notes
ToDo
dir.txt
# All real runs (private)
2.runs/*/
# But keep structure + templates
!2.runs/README.md
!2.runs/.gitkeep
!2.runs/templates/
!2.runs/templates/**
# --- Future/local workspaces (keep out of public repo for now) ---
2.work/
3.commit/
worlds/
# foundation WIP / drafts (optional)
foundation/_hypotheses/
foundation/README.alt
foundation/CHANGE-NOTES.md
.aider*