Agent Experience Audit

A repository document, rendered for the site. View source markdown.

Generated at: 2026-07-30T12:38:02.000Z UTC · source: committed helm-expt evidence for this rendered repository document.

UNOFFICIAL/EXPERIMENTAL

This audit records the documentation decision for helm-expt: keep the public website and human docs readable, and put agent/operator instructions in repo Markdown.

Scope

Audited surfaces:

Out of scope for this pass:

Findings

Keep Human Pages For Humans

The public website and docs/user pages should explain the product and the user tasks. Agent command routing belongs elsewhere because it repeats material already present in tests/npm-scripts.md and the generated data index.

Decision: keep detailed agent instructions out of website pages and do not add agent sections to the catalog. The website may include a Docs/FAQ link to docs/agent/README.md.

Agents need a deterministic start point

The repo already has the needed material, but it is spread across several places:

Decision: add docs/agent/README.md as the start page and link from there to the human docs, generated data, and command lists.

Generated evidence is too large for cold starts

data/, recipes/, packages/, and site/charts/ are large. Agents that open them directly can lose the thread and overclaim from one row.

Decision: add a read-only catalog guide that tells agents which generated files to read first and which files not to edit.

Verifier choice is the main operational risk

The repo has many npm scripts. The main operational risks are running a broad gate when a narrow verifier would do, running live evidence by accident, or treating a product command as a proof command.

Decision: add task recipes, recovery rules, and a verification command map under docs/agent/.

Existing doc verifier must allow the new layer

scripts/verify-doc-map.mjs intentionally rejects unexpected Markdown locations. Adding docs/agent requires updating that allowlist and assigning each agent doc a role in docs/README.md.

Decision: update the verifier for docs/agent/*.md and document every new file in docs/README.md.

Implemented In This Pass

Future Work