veritas-kanban/docs/DOC-FRESHNESS.md
bradgroux aa4711b41c docs: add sweep history to DOC-FRESHNESS tracking
- Record 2026-03-25 documentation sweep covering version refs,
  governance docs, CHANGELOG, and examples
- Add Last Sweep table for tracking doc maintenance history
2026-03-25 21:42:34 -05:00

4.3 KiB

Documentation Freshness Guide

"Stale docs = hallucinating AI." — Monika Voutov, BoardKit Orchestrator

VK is agent-first. When docs are wrong, agents make wrong decisions. This guide ensures project documentation stays current.

Doc Steward Workflow

When to Update Docs

Trigger What to Update
New API endpoint added README API section, relevant route docs
Schema change (shared/types) Type documentation, API examples
New CLI command CLI README, help text
Config option added/changed Settings docs, example configs
New feature shipped README features section, changelog
Architecture change Architecture docs, diagrams
Bug fix with user impact Known issues, changelog
Dependency upgrade Requirements section if version matters

Doc Update Checklist

When completing a task that changes user-facing behavior:

  • README.md updated (if applicable)
  • API route documented (JSDoc + route comments)
  • CLI help text accurate
  • Type documentation matches implementation
  • CHANGELOG.md updated
  • Examples/templates still work
  • AGENTS-TEMPLATE.md updated (if agent-facing API changed)

Where Docs Live

Doc Purpose Owner
README.md Public-facing overview Any contributor
docs/ Detailed guides & specs Feature author
CHANGELOG.md Release history Release manager
docs/AGENTS-TEMPLATE.md Agent integration guide Agent team
docs/multi-agent-git-workflow.md Multi-agent coordination Agent team
JSDoc in source files API contracts Feature author

Freshness Indicators

Each doc should include a freshness header:

<!-- doc-freshness: 2026-03-25 | v4.0.0 | @veritas -->

Format: date | version | last-updater

When a doc is older than the current version, it may need review.

Last Sweep

Date Scope Agent
2026-03-25 Full v3→v4 version references, governance docs, CHANGELOG, examples VERITAS
2026-03-21 v4.0 release documentation TARS

Automation Plan

Phase 1: Manual (Current)

  • Doc update checklist in PR template
  • Freshness headers in docs
  • Agent instructions include "update docs" step

Phase 2: Hook-Based

  • Lifecycle hook on task.done checks for doc-related files
  • If code changes but no doc changes, create a follow-up task
  • Use docs/ path detection in git diff

Phase 3: AI-Powered Doc Steward

  • Dedicated "doc steward" agent type
  • Subscribes to all task.done events
  • Reads recent commits, identifies doc gaps
  • Creates tasks with specific update suggestions
  • Low-priority, runs during idle time

Hook Configuration

# Create a doc freshness hook
curl -X POST /api/hooks -d '{
  "name": "Doc freshness check on completion",
  "event": "task.done",
  "action": "custom",
  "config": {
    "customAction": "check_doc_freshness",
    "description": "Verify docs were updated if code changed"
  }
}'

Repo Rules (CLAUDE.md Equivalent)

VK's docs/AGENTS-TEMPLATE.md serves as the agent instruction file. Key rules:

  1. Always update docs alongside code — no code-only PRs for user-facing changes
  2. Use freshness headers — every doc starts with <!-- doc-freshness: ... -->
  3. JSDoc is documentation — route handlers and services must have JSDoc
  4. Examples must work — if you change an API, update the examples
  5. CHANGELOG is mandatory — every release gets an entry

Credit

This approach is inspired by Monika Voutov's BoardKit Orchestrator, which emphasizes that documentation quality directly impacts AI agent reliability. Credit: @mvoutov