- Add bible.git as submodule at bible/ - Rename bible/ → bible-local/ (project-specific architecture) - Update CLAUDE.md to reference both bible/ and bible-local/ - Add AGENTS.md for Codex with same structure Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
633 B
Markdown
18 lines
633 B
Markdown
# QuoteForge — Instructions for Claude
|
|
|
|
## Shared Engineering Rules
|
|
Read `bible/` — shared rules for all projects (CSV, logging, DB, tables, background tasks, code style).
|
|
Start with `bible/kit/patterns/` for specific contracts.
|
|
|
|
## Project Architecture
|
|
Read `bible-local/` — QuoteForge specific architecture.
|
|
Read order: `bible-local/README.md` → relevant files for the task.
|
|
|
|
Every architectural decision specific to this project must be recorded in `bible-local/`.
|
|
|
|
```bash
|
|
go build ./cmd/qfs && go vet ./... # verify
|
|
go run ./cmd/qfs # run
|
|
make build-release # release build
|
|
```
|