-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy path.gitignore
More file actions
140 lines (115 loc) · 3.09 KB
/
Copy path.gitignore
File metadata and controls
140 lines (115 loc) · 3.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
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
*~
*#
*.swp
*.log
*.DS_Store
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
/.coverage
/.coverage.*
/.cache
/.pytest_cache
/.mypy_cache
/.hypothesis
/.testmondata*
/doc/_apidoc/
/build
# Python build artifacts (wheels / sdists from `python -m build` / `make wheel`)
/dist/
# Generated agent config — contains machine-specific absolute paths
.kiro/agents/kirocrew.json
# Generated per-machine by install_cc_agent_config()
.mcp.json
/venv/
/.venv/
/.venv-x86/
# Editor / IDE
.vscode/
.idea/
pyrightconfig.json
*.sublime-*
# Environment (machine-specific paths)
.env
.env.local
.install-method
# Frontend
node_modules/
frontend/package-lock.json
frontend/dist/
tui/dist/
frontend/tsconfig.app.tsbuildinfo
frontend/tsconfig.node.tsbuildinfo
src/kiro_crew/static/dist/
src/kiro_crew/static/dist
# Staging scratch + lock used to swap a built dist into static/dist atomically.
# An untracked leftover here makes the checkout read as dirty, which
# fail-closes Dev Fleet's "Prune merged".
src/kiro_crew/static/.dist.staging.*
src/kiro_crew/static/.dist.previous.*
# Build-time provenance stamp (scripts/stamp-distribution.sh). Generated per
# packaging path; a committed copy would mislabel every other build's beacon.
src/kiro_crew/_build_info.py
# JVM crash logs
hs_err_pid*.log
# OS
Thumbs.db
.git.old
# Dev mode data directory
.kirocrew-dev/
.kirocrew-dev2/
# Potential task progress files
*.TASK_PROGRESS.md
docs/TASK_PLAN_MODE.md
frontend/src/.backup_pre_mdpanel/
kirocrew-data.tar.gz
.kiro/hooks/track-with-agent.kiro.hook
# Agent-workflow scratch — files agents sometimes write into a worktree and
# forget to remove: a PR body fed to `gh pr create --body-file`, and review-round
# build/test log dirs (e.g. .r29-logs/). Ignoring them keeps `git status` clean so
# Dev Fleet "Prune merged" can reap merged worktrees (a dirty tree fail-closes the
# prune as merged_dirty). Prefer writing scratch under `mktemp -d`; committed
# deliverables (e.g. temp-screenshots/) are unaffected. (`*.log` is already ignored above.)
.pr-body.md
.r*-logs/
# AI attribution tracking data
.attribution/
# Playwright test artifacts
frontend/test-results/
frontend/playwright-report/
frontend/.rtx.toml
# OpenClaw source checkout
openclaw-main/
TASK_PROGRESS.md
*.iml
reviews/
test_plan_atomic_writes_subagent_progress.md
# Top-level legacy electron build dir (the tracked desktop source lives in
# website/electron/). Only ignore build OUTPUTS there, not the source.
/electron/
website/electron/backend-dist/
website/electron/dist/
website/electron/node_modules/
# Generated launcher icon (created from icon.png when making the desktop shortcut)
website/electron/KiroCrew.ico
tui/
mise.toml
# Git worktrees
.worktrees/
.attach_pid*
python3.10
FILE_SPLIT_PLAN.md
# Eval harness output
eval_results/
build-log-trimmed_*.txt
docs/APP_DEVELOPER_GUIDE.md
.claude/scheduled_tasks.lock
runs.json
.review/
# Scrub-lint alias list (internal, not published)
scripts/.scrub-aliases.txt
# Local session summary (working notes, not part of the PR)
SESSION_SUMMARY.md
# Internal migration worklog — deliberately untracked (contains pre-scrub notes)
MOCHI_MIGRATION.md