- README rewritten with bioinspired framing: KeiSeiKit as living neural structure of Kei (DNA / REM / Deep Sleep / creator lineage). All counts verified against source: 36 crates, 12 agents, 43 skills, 12 hooks, 82 blocks. - docs/PHILOSOPHY.md new 11.4 KB deep-dive on the substrate thesis, the 4-layer architecture, and roadmap (federation / signing / marketplace / visualization as Wave 14+). - .gitignore hardened: .env, secrets/, *.pem, *.key, id_rsa*, id_ed25519*, .claude/secrets/ — public-repo safe. .env.example and .env.template re-included. - docs/SECURITY.md: secret hygiene section with revoke-and-rotate protocol + canonical ~/.claude/secrets/.env reference (RULE 0.8). Verified clean: defensive grep for sk-ant-, ghp_, private keys, token/key assignments = zero hits across tree. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
53 lines
697 B
Text
53 lines
697 B
Text
_primitives/_rust/target/
|
|
**/target/
|
|
.DS_Store
|
|
|
|
# Agent worktrees — ephemeral orchestrator scratch dirs, never commit.
|
|
.claude/worktrees/
|
|
**/.claude/worktrees/
|
|
|
|
# Secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
!.env.template
|
|
secrets/
|
|
**/secrets/
|
|
.claude/secrets/
|
|
|
|
# Keys and certs
|
|
*.pem
|
|
*.key
|
|
*.pfx
|
|
*.p12
|
|
*.jks
|
|
id_rsa
|
|
id_rsa.*
|
|
id_ed25519
|
|
id_ed25519.*
|
|
*.gpg
|
|
|
|
# Credentials / config with values
|
|
credentials.json
|
|
.netrc
|
|
.authinfo
|
|
.aws/credentials
|
|
.ssh/
|
|
|
|
# Locks (per-project policy — leave as existing if already tracked)
|
|
# Do not add: Cargo.lock (tracked per RULE 0.1 for reproducibility)
|
|
|
|
# OS + editor junk
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# Build
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
__pycache__/
|
|
*.pyc
|