chore: initial commit — planning docs and omc project context

Greenfield setup for luke_scribe (local STT transcription API). No source
code yet; this captures the completed design phase so teammates can ramp
through oh-my-claudecode.

Includes:
- .omc/plans/consensus-luke-scribe-stt-api.md — consensus impl plan v2.2
- .omc/specs/deep-interview-luke-scribe-stt-api.md — deep-interview spec
- .omc/artifacts/ask/{codex,gemini}-*.md — external review (CCG)
- .omc/project-memory.json — omc project memory
- opencode.json, .claude/settings.json — shared tooling config
- .gitignore — excludes ephemeral omc state/session logs and local settings

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-07 10:08:17 +09:00
commit fbe13dddcc
8 changed files with 3357 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
# ─── Python ───────────────────────────────────────────────
__pycache__/
*.py[cod]
*.egg-info/
.eggs/
build/
dist/
.pytest_cache/
.ruff_cache/
.mypy_cache/
# Virtual envs (keep uv.lock tracked)
.venv/
venv/
# Env / secrets (keep .env.example tracked)
.env
.env.*
!.env.example
# Models / data / scratch
*.log
models/
samples/*.wav
samples/*.mp4
# ─── OS / editor ──────────────────────────────────────────
.DS_Store
*.swp
# ─── Claude Code (personal/local only) ────────────────────
.claude/settings.local.json
# ─── oh-my-claudecode ─────────────────────────────────────
# Keep shareable knowledge so teammates can ramp via omc:
# .omc/plans/ .omc/specs/ .omc/artifacts/ .omc/project-memory.json
# Ignore ephemeral, machine-/session-specific runtime state:
.omc/state/
.omc/sessions/
.omc/logs/