-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
48 lines (40 loc) · 1.83 KB
/
Copy path.gitignore
File metadata and controls
48 lines (40 loc) · 1.83 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
# Secrets, identity, host-specific values.
# Everything authenticated is sourced from here, never inlined into a script.
# Retrofitting this would mean rewriting history — so it is in from commit one.
# Note the trailing /* — excluding "local/" outright stops git descending into
# the directory at all, and the negations below would silently never apply.
local/*
!local/README.md
!local/*.example
# Kickstart files hold rootpw, user password hashes and LUKS passphrases.
# The committed template uses placeholders; a generated one never gets committed.
test/*.generated.ks
# Audit logs — the agent's own command history, machine-local by nature.
.claude/audit/
*.jsonl
# Security/privacy check reports — machine state (Lynis findings, Flatpak
# overrides), regenerated on demand by scripts/security-privacy-check.sh.
# Same reasoning as .claude/audit/: point-in-time local output, not project
# narrative.
.claude/security-reports/
# Local permission overrides — additionalDirectories points at an absolute,
# host-specific path to the vault clone. Same reasoning as local/: never inline
# a host-specific value into a committed file.
.claude/settings.local.json
# Session handover state — written before a reboot the agent knows will kill
# the session, read back in on the next session instead of replaying the old
# transcript with `-c`. Ephemeral working state, not project narrative: the
# vault's _inbox/ and incidents/ are where anything durable actually belongs.
.claude/handover.md
.claude/handover.consumed.md
# Python bytecode. The hooks run as scripts, never as an imported package,
# so nothing here is worth tracking.
__pycache__/
*.py[co]
# Editor and OS noise
.DS_Store
*.swp
*~
# VS Code multi-root workspace — references the private extras repo's path,
# host-specific and would break/leak for anyone forking this repo.
*.code-workspace