-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
36 lines (31 loc) · 1.36 KB
/
.gitignore
File metadata and controls
36 lines (31 loc) · 1.36 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
/target
/.cargo
/.rustup
*.bundle
checksums-*.txt
checksums.txt
*.sbom.cdx.json
# Fixtures seeded by jig agent-shape runs. Regenerated deterministically
# by scripts/agent-shape-fixture.sh; the output has no value tracked.
fixtures/
# Runtime jig stdout — verbose per-trial console log. Reports + checkpoints
# (.json / .md / .checkpoint.jsonl) are tracked; the runlog is not.
agent-shape-reports/*.runlog
# .agent/skills compat symlink: regenerated by `make agent-skills-symlink`.
# Intentionally untracked so external tools that rewrite symlinks (e.g.
# certain rune sync versions) cannot commit an absolute target. The
# symlink is the relative form `.agent/skills -> ../.claude/skills`.
.agent/skills
# `.claude/skills/` is materialized by `rune sync` from the source-of-
# truth registry (nomograph/runes). Tracking the synced copy creates a
# drift class where every rune update produces a "sync" commit on this
# repo, and the committed copy can fall behind the registry between
# syncs. Following the same pattern rune itself uses: gitignore the
# whole directory; `.claude/rune.lock` (which is tracked) pins which
# registry version each skill came from.
.claude/skills/
# `.claude/` is local-only: rune subscriptions, lockfile, and synced skill
# content are all per-developer state. Run `rune setup` then `rune sync` on
# a fresh clone to materialize.
.claude/
AGENTS.md