CLAUDE.md: 178→25 lines — commands + @ARCHITECTURE.md import only Rules split into .claude/rules/ (load at startup, topic-scoped): llm-inference.md — Bifrost-only, semaphore, model name format, timeouts agent-pipeline.md — tier rules, no tools in medium, memory outside loop fast-tools.md — extension guide (path-scoped: fast_tools.py + agent.py) secrets.md — .env keys, Vaultwarden, no hardcoding Path-scoped rule: fast-tools.md only loads when editing fast_tools.py or agent.py Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
685 B
Markdown
26 lines
685 B
Markdown
# CLAUDE.md
|
|
|
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
|
|
## Commands
|
|
|
|
```bash
|
|
# Start all services
|
|
docker compose up --build
|
|
|
|
# Interactive CLI (requires services running)
|
|
docker compose --profile tools run --rm -it cli
|
|
|
|
# Integration tests — run from tests/integration/, require all services up
|
|
python3 test_health.py
|
|
python3 test_memory.py [--name-only|--bench-only|--dedup-only]
|
|
python3 test_routing.py [--easy-only|--medium-only|--hard-only]
|
|
|
|
# Use case tests — read the .md file and follow its steps as Claude Code
|
|
# example: read tests/use_cases/weather_now.md and execute it
|
|
```
|
|
|
|
## Architecture
|
|
|
|
@ARCHITECTURE.md
|