-
Notifications
You must be signed in to change notification settings - Fork 218
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (66 loc) · 1.8 KB
/
Copy path.gitignore
File metadata and controls
82 lines (66 loc) · 1.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
# Python
__pycache__/
*.py[cod]
*.so
build/
dist/
*.egg-info/
.venv/
# Testing
.coverage
coverage.json
coverage.xml
.pytest_cache/
# MyPy
.mypy_cache/
# IDEs
.vscode/
.idea/
# OS
.DS_Store
# Node / Web UI
node_modules/
web/dist/
# Built web UI (generated by `npm run build` in web/, bundled into the wheel)
src/cli_agent_orchestrator/web_ui/
# Built MCP App single-file bundles (generated by `npm run build:all` in
# cao_mcp_apps/, bundled into the wheel via the hatch artifacts rule)
src/cli_agent_orchestrator/ext_apps/apps_static/
# Compiled Rust TUI binary staged here by `python scripts/build_tui.py build`
# and bundled into the wheel via the fourth hatch artifacts glob. Build output,
# never a source file: it is ~400 KB per platform and platform-specific, so
# committing it would put a binary blob in the history that the weekly gitleaks
# sweep scans. Same posture as web_ui/ and ext_apps/apps_static/ above. (#321)
src/cli_agent_orchestrator/cao-tui
src/cli_agent_orchestrator/cao-tui.exe
# Project specific
*.log
*.db
.amazonq/
.obsidian/
.ralph/
.ralphrc
work/
.codegraph/
# AI tool configs
.claude/
.codex/
.agents/
.kiro/
# Memory
context/
# Worktrees
.worktrees
# aidlc
aidlc-docs
# Separate git repos (not part of this project)
cao-flows/
# Rust build output (tui/). Must be ignored BEFORE the first `cargo build`:
# cargo output is multi-GB and must never enter the history the weekly gitleaks
# sweep scans. No leading slash, so this also covers any future nested crate. (#321)
target/
# cibuildwheel's default output directory. `dist/` is already ignored above, but
# cibuildwheel writes elsewhere, and these wheels each embed a compiled binary —
# committing one would put a multi-MB executable into the history the weekly
# gitleaks sweep scans, for the same reason target/ is ignored. (#321)
wheelhouse/