The earlier `git add` included an already-`git rm`'d pathspec, so it errored and staged nothing — launch.sh (3r removal) and .gitignore (track .claude/skills/) were left uncommitted while the skill files went in via a separate -f add. Runtime was already correct (watchdog reads the working-tree launch.sh); this just syncs git HEAD to the working tree. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
531 B
Plaintext
20 lines
531 B
Plaintext
# Secrets — NEVER commit
|
|
.testenv
|
|
*.tfstate
|
|
*.tfstate.*
|
|
*.key
|
|
*.pem
|
|
|
|
# Loop runtime / working clones (created at launch by launch.sh)
|
|
/cc-ci/
|
|
/cc-ci-adv/
|
|
/.cc-ci-watch/
|
|
/.cc-ci-logs/
|
|
|
|
# More secrets / local state — NEVER commit
|
|
/.sops/ # master recovery age key
|
|
/cc-ci-secrets/ # separate sops-secrets repo, cloned in
|
|
/.claude/* # local claude session/project state (history, cache, locks)
|
|
!/.claude/skills/ # ...but DO track shareable skills (e.g. ci-test-review)
|
|
*.tmp.* # editor temp files
|