docs(site): document the 2.6.0 feature tracks (provenance, injection, board, farm)#148
Merged
Conversation
2.6.0 shipped four user-facing tracks but their narrative coverage lagged. Three appeared only as command-catalog rows, and file-scoped context injection was absent from every page. This adds the missing narrative so a consumer can learn what each feature does. Docs site (site/src/content/docs/): - concepts.md: new "Provenance & context drift" and "Just-in-time context injection" sections, each with a new diagram. - enforcement.md: a "Commit-gate board transitions (ADR-0008)" section. - hooks.md: a pre-read.py PreToolUse:Read entry. Diagrams: four-tier-map.svg and provenance-drift-flow.svg, in the existing diagram style, added to the diagrams.test.ts AC-9 guard. README: FARM_SAMPLES / FARM_TEMPERATURE rows plus a best-of-N note in the farm preview table, and brief How-it-works mentions linking to the new docs-site sections. README license sections are untouched here; they ride the relicense PR. Verified: docs-site typecheck, vitest (129), astro build (81 pages), and link-audit (7292 links) all green; design-quality-reviewer clean; badge consistency holds. No plugin-payload change, so no version bump. Ref: specs/docs-2.6.0-feature-coverage.md Claude-Session: https://claude.ai/code/session_01QaLw7nTrRbHwygFar2R6zu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this does
Adds the user-facing narrative for the four feature tracks that shipped in 2.6.0 but whose documentation lagged. Implements the approved spec
docs-2.6.0-feature-coverage.Why
2.6.0 bundled four capability tracks, but three appeared only as command-catalog rows and file-scoped context injection was absent from every page. A consumer reading the docs site or README could not learn what provenance, context injection, or commit-coupled board transitions do. This closes that gap, with the docs site as the primary narrative home and the README carrying brief linking mentions.
Changes
Docs site (
site/src/content/docs/):concepts.md: new "Provenance & context drift" section (feat(provenance): context-drift detection, code map, commit-gate auto-heal #145) and "Just-in-time context injection" section (feat(hooks): file-scoped just-in-time context injection on Read #146), each with a diagram.enforcement.md: a "Commit-gate board transitions (ADR-0008)" section (feat(commit-gate): land board transitions with the work (ADR-0008) #144).hooks.md: apre-read.pyPreToolUse:Readentry.Diagrams:
four-tier-map.svgandprovenance-drift-flow.svg, matching the existing diagram palette and style, added to thediagrams.test.tsAC-9 guard.README:
FARM_SAMPLES/FARM_TEMPERATURErows and a best-of-N note in the farm preview table (#137); brief How-it-works mentions linking to the new docs-site sections. The README license sections are untouched here, so this does not conflict with the relicense PR (#147).Test plan
cd site && npm run typecheckclean.npm run test: vitest 129 passed (the AC-9 diagram guard now covers the two new diagrams).npm run build: 81 pages built.npm run link-audit: 7292 internal links resolve.design-quality-reviewer: 0 CRITICAL/HIGH/MEDIUM (two LOW diagram issues fixed before merge).python .github/scripts/check_badge_consistency.py: green.Notes
coverage-auditoris not applicable; the docs-site CI is the gate.site/+ README +.codearbiter/only, noplugins/ca/**change.Ref: specs/docs-2.6.0-feature-coverage.md