-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·85 lines (72 loc) · 3.46 KB
/
Copy path.gitignore
File metadata and controls
executable file
·85 lines (72 loc) · 3.46 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
# ============================================================================
# MAC (multi agent cad) — .gitignore
# ============================================================================
# ── macOS ───────────────────────────────────────────────────────────────────
.DS_Store
.AppleDouble
.LSOverride
# ── Editor / IDE ────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
# ── Python ──────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
.coverage.*
htmlcov/
.python-version
# Aider runtime cache (tags index for code repair). Auto-generated per run.
.aider.tags.cache.v4/
.aider.chat.history.md
.aider.input.history
.aider.editor.py
# ── Virtual environments ───────────────────────────────────────────────────
.venv/
.venv_311/
venv/
env/
# ── MAC runtime artifacts ───────────────────────────────────────────────────
# Per-iteration generated files (see WORKFLOW.md §6 for what each contains).
# NOTE: temp_design_*.py is intentionally NOT ignored - Aider's repair stage
# adds it to the chat, and Aider refuses to edit gitignored files. The other
# temp_output_* / temp_measurements_* / temp_missed_* artifacts are ignored
# because they are pure outputs, never edited.
temp_output_*.step
temp_output_*.stp
temp_output_*.stl
temp_output_*.3mf
temp_measurements_*.json
temp_missed_*.json
# Cached pipeline state (user-specific; don't commit cached cad_brief / architect_plan).
# Use `git add -f pipeline_cache/<file>.json` to share a specific cache snapshot.
pipeline_cache/
# Local Claude Code state (session logs, scheduled tasks).
.claude/
# ── Local dev scripts & scratch space ──────────────────────────────────────
tmp/
# ── Third-party content not for redistribution ─────────────────────────────
# api.md is a wholesale copy of Alibaba Cloud Bailian error docs -- do not
# commit. Keep local copy for reference only.
api.md
# ── Local-only marketing / promo drafts ────────────────────────────────────
# docs/promo*.md are social-platform copy drafts (Xiaohongshu / X). Keep
# local-only -- not part of the project's public docs.
docs/promo*.md
# ── Logs & ad-hoc dumps ─────────────────────────────────────────────────────
*.log
*.jsonl
last_turn.json
turn_log.json
# ── OS / misc ──────────────────────────────────────────────────────────────
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/