-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
191 lines (164 loc) · 2.8 KB
/
Copy path.gitignore
File metadata and controls
191 lines (164 loc) · 2.8 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
# ========================
# Friday — .gitignore
# ========================
# --- User config & secrets (API keys, Telegram token/ID, etc.) ---
*.env
.env
.env.*
secrets.py
secrets.json
secrets.yaml
secrets.yml
bot_token.*
*token*
*TOKEN*
*_id.py
*_id.txt
# --- Virtual environment ---
friday_env/
venv/
env/
.venv/
__pypackages__/
# --- Python cache ---
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pdb
# --- Runtime state ---
health.json
heartbeat.md
brain/agi_state.json
benchmarks/benchmark_results.json
benchmarks/benchmark_v2_results.json
data/proactive_patterns.json
assets/tile_cache/
# --- Dev/debug files ---
_scan.py
debug_check.py
claudes.txt
.commandcode/
.opencode/
# --- OS junk ---
.DS_Store
Thumbs.db
desktop.ini
# --- IDE files ---
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# --- Build artifacts ---
dist/
build/
*.egg-info/
.claude/
.sixth/
friday_env/
__pycache__/
memory/long_term.json
telegram_inbox.json
telegram_outbox.json
learnings.md
logs/
*.jsonl
brain/neural_store.jsonbrain/cyber_sessions/
data/
brain/cyber_sessions/
brain/benchmark_results/
data/
# ========================
# Friday — .gitignore
# ========================
# --- User config & secrets (API keys, Telegram token/ID, etc.) ---
*.env
.env
.env.*
secrets.py
secrets.json
secrets.yaml
secrets.yml
bot_token.*
*token*
*TOKEN*
*_id.py
*_id.txt
# --- Virtual environment ---
friday_env/
venv/
env/
.venv/
__pypackages__/
# --- Python cache ---
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.pdb
# --- Runtime state ---
health.json
heartbeat.md
brain/agi_state.json
brain/cyber_sessions/
brain/benchmark_results/
brain/neural_store.json
brain/active_inference.json
brain/analogy_data.json
brain/causal_data.json
brain/code_anomaly_db.json
brain/code_chunks.json
brain/code_failure_patterns.json
brain/code_plan_history.json
brain/code_reflections.json
brain/codebase_graph.json
brain/competition_data.json
brain/curiosity.json
brain/dream_journal.json
brain/enhanced_wm_data.json
brain/episodic_store.json
brain/improvement_data.json
brain/learning_data.json
brain/meta_journal.json
brain/modification_data.json
brain/narrative_data.json
brain/self_awareness.json
brain/self_model.json
brain/strategy_scores.json
brain/vector_index.json
brain/workspace_patterns.json
brain/world_model_data.json
benchmarks/benchmark_results.json
benchmarks/benchmark_v2_results.json
data/proactive_patterns.json
data/
assets/tile_cache/
memory/long_term.json
telegram_inbox.json
telegram_outbox.json
learnings.md
logs/
*.jsonl
# --- Local settings ---
settings/settings.local.json
# --- Dev/debug files ---
_scan.py
debug_check.py
claudes.txt
.commandcode/
.opencode/
.claude/
.sixth/
# --- OS junk ---
.DS_Store
Thumbs.db
desktop.ini
# --- IDE files ---
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# --- Build artifacts ---
dist/
build/
*.egg-info/