Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

Contributing

Workflow

  1. Open or reference an issue before starting major work.
  2. Create a focused branch from main.
  3. Keep pull requests narrow enough to review quickly.
  4. Add or update tests with every behavior change.
  5. Update documentation when structure, setup, or operating assumptions change.

Development standards

  • Prefer small, composable modules over deeply coupled services.
  • Treat model configuration as code: version routing policies, prompt assets, and catalog changes.
  • Keep heavyweight runtime outputs out of git.
  • Document every architectural decision that changes repository shape or platform direction in docs/adr/.

Commit style

Use short, descriptive commits such as:

  • chore: bootstrap repository scaffold
  • feat: add model routing policy loader
  • docs: add AirLLM workstation guide

Pull request checklist

  • The change is scoped to one clear goal.
  • Tests or validation notes are included.
  • Docs are updated when behavior or workflow changed.
  • Secrets, cache directories, and model weights are not committed.