.gitignore
80 lines 1.9 KB
Raw
sha256:65ccb454656ea5acdea0a10e559b78bcde1eb6ff753ecc2911bc99d1c3d7cadd feat(calendar): enforce agent context tiers in retrieval AP… Human minor ⚠ breaking 1 day ago
1 # Muse VCS internals — runtime state (analogous to .git/); .museattributes and .museignore are tracked
2 .muse/
3
4 # Config and secrets
5 config/local.yaml
6 config/*-local.*
7 .env
8 .env.*
9 !.env.example
10
11 # Data
12 data/
13 out/
14 *.db
15 *.sqlite
16
17 # Test artifacts (temp vaults and vector DB from tests)
18 test/fixtures/data/
19 test/fixtures/hub-setup-test-data/
20 test/fixtures/tmp-*/
21
22 # Obsidian
23 vault/.obsidian/workspace*
24 vault/.trash/
25
26 # Hub UI “New note” timestamped files (avoid dirty tree on the sample vault)
27 vault/inbox/note-*.md
28
29 # Editor scratch files
30 Untitled
31 **/Untitled
32 config/Untitled
33
34 # DFX local build (do not commit)
35 hub/icp/.dfx/
36
37 # Terraform — state contains real cloud resource IDs, public IPs, and secret handles;
38 # *.tfvars contains real values (keep *.tfvars.example tracked as a template);
39 # .terraform/ is local provider cache; .terraform.lock.hcl IS committed for reproducible builds.
40 *.tfstate
41 *.tfstate.*
42 .terraform/
43 terraform.tfvars
44 *.auto.tfvars
45 *.auto.tfvars.json
46 *.tfplan
47 *.tfplan.json
48 crash.log
49 crash.*.log
50
51 # Node
52 node_modules/
53
54 # Netlify — written by scripts/netlify-redirects.mjs (gateway vs bridge); do not commit
55 public/_redirects
56
57 # OS
58 .DS_Store
59 *.log
60
61 # Development — local-only planning, scratch exports, copies of docs removed from docs/ for OSS cleanliness
62 development/
63
64 # Local doc snapshots (session prompts, old plans) — not published; mirror into development/ or docs/archive locally
65 docs/archive/
66
67 # Internal marketing / GTM docs — keep locally or in a private repo; never push to public GitHub
68 docs/marketing-internal/
69
70 # Cursor IDE — plan snapshots (YAML frontmatter exports); rules/skills stay tracked
71 .cursor/plans/
72
73 # Local VS Code / Cursor workspace under docs (do not commit)
74 docs/*.code-workspace
75
76 # Operational scratch / runbook exports (maintainers keep under development/ or local only)
77 scripts/archive/
78
79 # Local transcription / chunk scratch (do not commit binaries)
80 .tmp-transcribe-chunks/
File History 2 commits
sha256:65ccb454656ea5acdea0a10e559b78bcde1eb6ff753ecc2911bc99d1c3d7cadd feat(calendar): enforce agent context tiers in retrieval AP… Human minor 1 day ago
sha256:9103f98c89257ed2b01c237cea895dabb3e85ea337dccb1161c175e4422355b6 docs: accept Calendar Events v0 spec with Phase 0 security … Human 2 days ago