Contributing to OAT Docs
Documentation should ship with the code it explains. This page covers the core docs contract and local workflow; the syntax reference now lives in Markdown Features.
Navigation contract
- Every documentation directory must contain an
index.md. - Each
index.mdmust include a## Contentssection. - The
## Contentssection is the machine-readable local map for sibling pages and child directories.
Local workflow
-
Start the dev server from the repo root:
pnpm dev:docs -
Build the docs site locally (verifies the static export succeeds):
pnpm build:docs -
Check rendered links against a local or deployed docs host:
pnpm docs:check-links # or target a local docs server explicitly pnpm docs:check-links --url http://127.0.0.1:3000/open-agent-toolkit/ -
Run Markdown linting:
pnpm --filter oat-docs docs:lint -
Run Markdown formatting:
pnpm --filter oat-docs docs:format
Authoring Expectations
-
Keep docs aligned with the current repo behavior and current command surface.
-
Prefer cross-links over duplicated conceptual content.
-
When you add, remove, or rename docs pages, refresh the generated docs surface:
pnpm -w run cli -- docs generate-index --docs-dir apps/oat-docs/docs --output apps/oat-docs/index.md -
Use Markdown Features for supported syntax and examples.
Agent guidance
- Treat
index.mdplus its## Contentssection as the local discovery source of truth. - Prefer linking to source files and commands explicitly when documenting behavior.
- Regenerate the docs surface index after adding or removing pages.
Related Guides
If You Are Trying To...
- use docs commands or bootstrap a docs app, start with Docs Tooling
- follow the authoring contract for
index.mdand navigation, stay on this page and then read Docs Index Contract - understand supported markdown patterns, use Markdown Features