78e0de2e52
Single-user Matrix -> Claude Code bridge bot, scaffolded from a prior scoping package (SPEC/DECISIONS/CLAUDE/KICKOFF) folded into the current new-project scheme: - AGENTS.md (canonical) with core flow, stack, placement table, condensed D1-D10 decisions, sovereignty constraint, and Phase 0 as the first milestone - CLAUDE.md -> AGENTS.md relative symlink; ROADMAP.md (Phases 1-4+, falsifiable exits) - scripts/launch-claude.sh first-draft Mac wrapper (D4); config.example.toml - canonical deny-by-default .gitignore + Python ignores No bot code yet, by design: Phase 0 is manual-chain validation (N=3).
28 lines
551 B
Plaintext
28 lines
551 B
Plaintext
# Secrets & local env
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local config — real room IDs / repo paths / credentials. Commit only config.example.toml.
|
|
config.toml
|
|
|
|
# Claude Code — deny by default, allow-list shared wiring.
|
|
# .claude/ also accumulates worktrees, editor configs, and OS cruft; commit
|
|
# only the shared parts so new local scratch (or a stray secret) stays out.
|
|
.claude/*
|
|
!.claude/rules/
|
|
!.claude/agents/
|
|
!.claude/commands/
|
|
!.claude/skills/
|
|
!.claude/settings.json
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.venv/
|
|
venv/
|
|
*.egg-info/
|
|
|
|
# OS cruft
|
|
.DS_Store
|