Skip to content

Contributing

Terminal window
git clone https://github.com/suvimatt/agentic-thesis.git
cd agentic-thesis
python3 -m venv .venv
.venv/bin/python -m pip install -e '.[test]'
.venv/bin/pytest -q -p no:cacheprovider

All code, comments, and commit messages must be in English. Keep secrets, user research, generated caches, and local data directories out of Git.

  • Treat executable code, tests, and pyproject.toml as the current source of truth.
  • Preserve source-addressable evidence, counter-evidence, explicit unknowns, Human Review, recovery, replay, immutable snapshots, and version-conflict protection.
  • Use deterministic code for parsing, retrieval fusion, validation, and commits.
  • Add an abstraction only when a second real integration requires it.
  • Add focused contract tests for public engine changes and recovery/integrity coverage for workflow changes.
  • Never claim unmeasured accuracy, latency, throughput, or production readiness.

Install the documentation tools once:

Terminal window
npm --prefix docs install

Then run both contracts:

Terminal window
.venv/bin/python scripts/export_openapi.py
git diff --exit-code -- docs/openapi.json
.venv/bin/pytest -q -p no:cacheprovider
npm --prefix docs run build
git diff --check

Preview locally:

Terminal window
npm --prefix docs run dev

Starlight prints the local preview URL when it starts. The FastAPI product continues to use http://127.0.0.1:8000.

  • Keep the README as the repository front door; move operational and reference detail here.
  • Keep commands executable and regenerate docs/openapi.json after changing FastAPI routes or models; CI rejects stale schemas.
  • Update the editable architecture HTML and rendered SVG together when architecture boundaries change.
  • Keep execution plans excluded from public navigation.
  • English is the authoritative documentation language for this first release; keep the two concise READMEs semantically aligned.

Report bugs or propose focused changes through GitHub Issues.