-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
99 lines (80 loc) · 2.25 KB
/
Copy path.gitignore
File metadata and controls
99 lines (80 loc) · 2.25 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
# Dependencies
node_modules/
# Build outputs
dist/
*.tsbuildinfo
# Coverage
coverage/
# Temp Docs — transient working-notes must not be committed
# (see openspec documentation-hygiene: living vs. frozen classification)
HANDOFF.md
docs/handoff/
docs/qa-test-plans/
# Pi agent working/state dir — ignore all entries; enumerating specific
# subpaths let retros/, reflect/, and runtime state (subagents.json) slip
# through before. Uses `.pi/*` (not `.pi/`) so the documented per-repo
# worktree cache config can be re-included by negation.
.pi/*
!.pi/worktree.yaml
# Dead code
.fallow/
# Packages
*.tgz
# Environment
.env
.env.*
!.env.example
# OS files
.DS_Store
Thumbs.db
# Editor files
*.swp
*.swo
*~
.vscode/
.idea/
# Runtime artifacts
*.db
*.pid
*.log
pnpm-debug.log*
.pnpm-store/
# Command Code harness artifacts (generated by cmd hook during subagent spawning)
.commandcode/
# Generated lockfiles (project uses pnpm; pnpm-lock.yaml is tracked)
bun.lock
bun.lockb
package-lock.json
# Test artifacts generated by subagents during QA/dogfooding
src/ean13.ts
src/isbn.ts
# Bug artifact: undefined used as directory path
undefined/
# Subagent runtime scratch (config dirs written during spawn/QA)
tmp/
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.pytest_cache/
venv/
.venv/
/.worktrees/
# Claude Code per-session worktrees (EnterWorktree/ExitWorktree) — transient
# working directories for in-progress changes, not committable content.
.claude/worktrees/
# Skills materialized by the external skills CLI (r3b1s/pi-dev-skills,
# resolved via skills-lock.json) — the lock file is the tracked source of
# truth; the resolved skill content under .agents/skills/ and the
# .claude/skills/<name> symlinks pointing into it are regenerated on demand,
# analogous to node_modules vs package-lock.json. Add new lock-managed skill
# names here as they're introduced (directly-vendored skills like
# frontend-design and the openspec-* commands stay tracked normally).
.agents/
.claude/skills/pi-tool-repair-integration
.claude/skills/tmux-pilot-role-authoring
# Disposable spike-research scratch state (throwaway git repos, homes,
# runtime dirs, tmux sockets per the research methodology's own "use
# disposable ..." instructions) — never meant to be committed.
docs/research/**/disposables/