Existing life-helper already has the Redmine project (id=12), 8 persona categories, and Gitea remote, so this commit applies only the local-side pieces of the cloud-handson convention: - .claude/settings.json (safe-but-maximal permissions: allow-all + deny dangerous) - .claude/agents/ (8 persona subagents: planner/architect/designer/developer/reviewer/qa/release/documenter) - .claude/workflows/persona-pipeline.js - CLAUDE.md (Design-First hard gate) - docs/ skeleton (Diátaxis + ADR + design templates + QUEUE-PROTOCOL) - scripts/enqueue.sh - .env.example .gitignore: switched .claude/ blanket-ignore to .claude/settings.local.json so the new settings/agents/workflows actually commit. .env and nutrition/ stay ignored. Existing root SoT files (huberman-protocols.md, habit-*.md, data-model.md, schema/) are untouched. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
36 lines
531 B
Plaintext
36 lines
531 B
Plaintext
# --- secrets ---
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.env.local
|
|
.env.*.local
|
|
*.key
|
|
*.pem
|
|
|
|
# --- python ---
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
|
|
# --- node ---
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
|
|
# --- rust/other build ---
|
|
target/
|
|
|
|
# --- macOS ---
|
|
.DS_Store
|
|
|
|
# --- logs / state ---
|
|
*.log
|
|
.trader-state
|
|
|
|
# --- claude (commit settings.json/agents/workflows; ignore personal local) ---
|
|
.claude/settings.local.json
|
|
|
|
# --- sibling repos (managed separately) ---
|
|
# nutrition/은 별도 Gitea repo (joungmin/nutrition). life-helper와 sibling 관계.
|
|
nutrition/
|