-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.gitignore
More file actions
93 lines (80 loc) · 1.7 KB
/
Copy path.gitignore
File metadata and controls
93 lines (80 loc) · 1.7 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
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
dist/
*.egg-info/
*.egg
.eggs/
# venv
.venv/
venv/
env/
# tests
.pytest_cache/
.coverage
htmlcov/
.tox/
# editor
.vscode/
.idea/
*.swp
*~
# os
.DS_Store
Thumbs.db
# claude / agent local state (side-harness only; brigade block below
# handles the handoff path with TEMPLATE.md kept tracked)
.brigade/
.claude/
.codex/
.openclaw/
.solo-mise/
# Source-repo dogfood workspace files. Public templates live under
# src/brigade/templates/ instead.
/AGENTS.md
/CLAUDE.md
/HEARTBEAT.md
/IDENTITY.md
/INSTALL_FOR_AGENTS.md
/MEMORY.md
/SAFETY_RULES.md
/SOUL.md
/TOOLS.md
/USER.md
/hooks/
/memory/
/scripts/
/skills/
# Internal implementation plans and stale generated branding assets.
/docs/plans/
/docs/specs/
/docs/assets/solo-mise-banner.png
# scratch
/scratch/
*.bak
*.tmp
# >>> brigade gitignore block >>>
# Managed by `brigade init`. Edit between the markers to customize.
# Re-running `brigade init` replaces only the content between markers.
# Memory handoffs are session-local and may contain private context
# (commands run, file paths, error strings). The TEMPLATE.md is the
# only handoff file tracked in git.
.claude/memory-handoffs/*
!.claude/memory-handoffs/TEMPLATE.md
!.claude/memory-handoffs/.gitkeep
# Daily session logs are machine-local raw context. Promote durable
# findings into memory/cards/ via the handoff flow instead.
memory/20[0-9][0-9]-[0-1][0-9]-[0-3][0-9].md
# Review inbox: ambiguous handoffs awaiting human triage. Private.
memory/handoff-inbox/
# brigade local state (logs, scrub cache, dogfood runs, work sessions).
.brigade/dogfood.toml
.brigade/logs/
.brigade/runs/
.brigade/scrub-cache/
.brigade/work/
# <<< brigade gitignore block <<<