-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy path.gitignore
More file actions
51 lines (41 loc) · 1.09 KB
/
Copy path.gitignore
File metadata and controls
51 lines (41 loc) · 1.09 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
# env and secrets
.env
.env.local
*.key
# python
__pycache__/
*.py[cod]
.venv/
venv/
.pytest_cache/
# editor
.DS_Store
.idea/
*.swp
# runtime logs
.agent/memory/dream.log
*.log
# local agent activity/data-layer exports (private, regenerated)
.agent/data-layer/
.agent/data-layer/**
# local approved-run flywheel exports (private, regenerated)
.agent/flywheel/
.agent/flywheel/**
# do NOT ignore memory files — they are the point
!.agent/memory/
!.agent/memory/**
# ...EXCEPT the derived search index (auto-rebuilt, per-machine).
# Placed AFTER the negation above so the later rule wins.
.agent/memory/.index/
.agent/memory/.index/**
# ...and Python bytecode that lands anywhere under .agent/memory/ when
# modules there are imported. The negation above re-includes these by
# default; re-exclude explicitly.
.agent/memory/**/__pycache__/
.agent/memory/**/*.py[cod]
# Test scratch dir — the CLI round-trip test creates shim scripts here.
.tmp/
# tldraw skill runtime data — generated at use, not committed.
.agent/skills/tldraw/INDEX.md
.agent/skills/tldraw/snapshots/
.agent/skills/tldraw/snapshots.jsonl