mirror of
https://github.com/merlinhu1/truthmark.git
synced 2026-08-25 07:53:25 +02:00
* docs: replace legacy truth path references * feat: fold contextpack into workflow status * refactor: remove semantic repository index * fix: remove vulnerable frontmatter dependency * feat: broaden truth sync write authorization * test: restore workflow state regression coverage --------- Co-authored-by: MerlinH <merlinh221@gmail.com>
4.3 KiB
4.3 KiB
status, doc_type, last_reviewed, source_of_truth
| status | doc_type | last_reviewed | source_of_truth | ||
|---|---|---|---|---|---|
| active | agent-guide | 2026-05-16 |
|
Agent Onboarding
Purpose
Fast routing for agents. Repository-wide rules live in docs/ai/repo-rules.md.
Startup
- Read your agent entry point, usually AGENTS.md.
- Read docs/README.md.
- Identify whether the task changes scaffold behavior, diagnostics, installed workflows, or only documentation placement.
- Read only the docs that govern that slice before editing code or canonical docs.
Change Routing
CLI or scaffold behavior
Read:
- docs/truthmark/engineering/architecture/overview.md
- docs/truthmark/engineering/behaviors/init-and-scaffold.md
- docs/truthmark/engineering/contracts/config-route-and-check-contracts.md
- docs/truthmark/product/capabilities/lane-separated-truth.md
Diagnostics, routing, or containment checks
Read:
- docs/truthmark/engineering/architecture/overview.md
- docs/truthmark/engineering/behaviors/check-diagnostics.md
- docs/standards/documentation-governance.md
- docs/truthmark/engineering/contracts/config-route-and-check-contracts.md
Installed workflow, prompt, or reporting changes
Read:
- .truthmark/config.yml
- docs/truthmark/product/capabilities/agent-native-workflow-injection.md
- docs/truthmark/engineering/workflows/installed-workflow-runtime.md and docs/truthmark/engineering/contracts/generated-host-surfaces.md
- docs/standards/maintaining-repository-truth.md
- The manifest, renderer, generated surfaces, and focused tests named by the workflow truth docs
Package version changes
Read:
- docs/standards/versioning.md
- docs/standards/change-notes.md
- docs/standards/testing-and-verification.md
PR or release text
Read:
- docs/standards/change-notes.md
- docs/standards/versioning.md, only when package version changes are in scope
Documentation structure or policy changes
Read:
- docs/README.md
- docs/standards/documentation-governance.md
- docs/standards/maintaining-repository-truth.md
Agent Rules
Do:
- treat docs/ai/repo-rules.md as the primary authority for repository-wide rules
- route code changes to the nearest maintained architecture, contract, and truth docs
- update docs/truthmark/routes/areas.md when canonical routing changes
- apply docs/standards/versioning.md before changing or accepting a package version
- write
changes/notes from docs/standards/change-notes.md when PR or release text is needed - preserve the generated Truthmark block in AGENTS.md unless the template behavior itself is changing
- keep non-canonical planning notes separate from current-state docs
Do not:
- treat README.md as the final source of behavioral truth
- invent unimplemented commands such as a current
truthmark realizeCLI command - leave routing broad when you can point to a smaller maintained truth surface
- rewrite functional code during documentation-only tasks
Verification
Use docs/standards/testing-and-verification.md for commands and docs/standards/pre-completion-checklist.md as the completion gate.