-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.gitignore
More file actions
78 lines (62 loc) · 1.93 KB
/
Copy path.gitignore
File metadata and controls
78 lines (62 loc) · 1.93 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
# Secrets — NEVER commit
.env
.env.*
!.env.example
secrets.env
*.secret
# Personal profile — every user keeps their own. Template is USER.md.example.
USER.md
!USER.md.example
# Workspace rebuild prompt pack — contains literal API keys + full code byte-dump.
# Pure-text local handbook; never commit / never push.
项目搭建提示词/
# DigiKey OAuth token cache
.digikey_token*
# OS
.DS_Store
__MACOSX/
# Python / local tooling
.venv/
__pycache__/
*.py[cod]
.pytest_cache/
# Compiled artifacts — host/arch specific. Rebuild the Rust router from source
# with draw-pcb/.../KiCadRoutingTools/build_router.py.
*.so
*.pyd
*.dylib
target/
# Local archive of project-unrelated material (promo decks, test project, dev notes)
_archive/
# Generated boards — project-init scaffolds these locally; never commit.
# Keep the empty folder via .gitkeep so the documented structure survives.
Projects/*
!Projects/.gitkeep
# Logs and temporary output
logs/*
!logs/.gitkeep
*.log
# Shared component library — local working data; only the folder + write rules are tracked.
lib_external/*
!lib_external/.gitkeep
!lib_external/CONVENTIONS.md
# Local docs — not published.
docs/
# Archives and generated/binary reference payloads
*.zip
# Claude Code is the only supported agent entrypoint in this workspace.
# Keep accidental Codex / Antigravity scaffolding out of the project.
# Porting to another agent is a fork-level change — see README.md §Using another agent.
AGENTS.md
.agents/
.Codex/
.antigravitycli/
# .claude/skills + references ARE the project core — commit them.
# Deprecated skills live in _archive/archived_skills/ (already ignored above).
# Per-machine Claude Code permissions — every user keeps their own.
.claude/settings.local.json
# External KiCad library clones (regenerate on demand, not in git)
lib_cache/sources/
# LCSC dry-run caches — machine-local, regenerated on demand
lib_cache/lcsc_dryrun_cache/
lib_cache/lcsc_dryrun_cache_v2/