# Huskies project-local agent guidance ## Documentation Docs live in `website/docs/*.html` (static HTML), **not** Markdown files. When a story asks you to document something, edit the relevant `.html` file in `website/docs/`. ## Configuration files - Agent config: `.huskies/agents.toml` (preferred) or `[[agent]]` blocks in `.huskies/project.toml` - Project settings: `.huskies/project.toml` - Bot credentials: `.huskies/bot.toml` (gitignored — never commit) ## Frontend build The frontend is embedded into the Rust binary via `rust-embed`. Run `npm run build` in `frontend/` before testing frontend changes, or the embedded assets will be stale. ## Quality gates (all enforced by `script/test`) 1. `npm run build` (frontend) 2. `cargo fmt --all --check` 3. `cargo clippy -- -D warnings` 4. `cargo test` 5. `npm test` (frontend Vitest) Clippy is zero-tolerance: no warnings allowed. Fix every warning before committing. ## Runtime validation The `validate_agents` function in `server/src/config.rs` rejects unknown runtimes. Supported values: `"claude-code"` and `"gemini"`. Adding a new runtime requires updating that function.