.museignore
toml
sha256:4671b7f787ddbe63ced31c895b688c77ab495653b65a730b423329f26b3c1439
feat: K1-P1 complete — agent provenance, build-verification…
Sonnet 4.6
patch
53 days ago
| 1 | # .museignore — snapshot exclusion rules for this repository. |
| 2 | |
| 3 | [global] |
| 4 | patterns = [ |
| 5 | ".DS_Store", |
| 6 | "Thumbs.db", |
| 7 | "*.tmp", |
| 8 | "*.swp", |
| 9 | "*.swo", |
| 10 | |
| 11 | # IDE / editor state — applies to every domain |
| 12 | ".vscode/", |
| 13 | ".idea/", |
| 14 | "*.iml", |
| 15 | ] |
| 16 | |
| 17 | [domain.code] |
| 18 | # Secrets (.env, *.key, *.pem, *.p12) are blocked by the Muse engine |
| 19 | # automatically — no need to list them here. |
| 20 | patterns = [ |
| 21 | # ── Universal build / output directories ───────────────────────── |
| 22 | "dist/", |
| 23 | "build/", |
| 24 | "out/", |
| 25 | "tmp/", |
| 26 | |
| 27 | # ── Dependency trees ───────────────────────────────────────────── |
| 28 | "node_modules/", # JavaScript / Node |
| 29 | "vendor/", # Go, PHP (Composer) |
| 30 | |
| 31 | # ── Python ─────────────────────────────────────────────────────── |
| 32 | "__pycache__/", |
| 33 | "*.pyc", |
| 34 | "*.pyo", |
| 35 | ".venv/", |
| 36 | "venv/", |
| 37 | ".tox/", |
| 38 | "*.egg-info/", |
| 39 | |
| 40 | # ── Rust ───────────────────────────────────────────────────────── |
| 41 | # "target/", |
| 42 | |
| 43 | # ── Java / Kotlin / Scala ──────────────────────────────────────── |
| 44 | # "*.class", |
| 45 | # "*.jar", |
| 46 | |
| 47 | # ── Ruby ───────────────────────────────────────────────────────── |
| 48 | # ".mpack/", |
| 49 | |
| 50 | ] |
| 51 | |
| 52 | # [force_track] |
| 53 | # Exact repo-relative paths to track even if they match a secrets pattern. |
| 54 | # Use for dev infrastructure (e.g. self-signed TLS certs) that must survive |
| 55 | # clean pulls. No glob expansion — each entry must be an exact file path. |
| 56 | # paths = [ |
| 57 | # "deploy/local-tls/localhost.key", |
| 58 | # "deploy/local-tls/localhost.crt", |
| 59 | # ] |
File History
1 commit
sha256:4671b7f787ddbe63ced31c895b688c77ab495653b65a730b423329f26b3c1439
feat: K1-P1 complete — agent provenance, build-verification…
Sonnet 4.6
patch
53 days ago