fbe13dddcc
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>
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# ─── 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/
|