You are working on doc impact — the command that shows whether generated agent context is keeping up with the codebase, optionally interprets results via LLM, and can interactively apply recommended repairs.
Domain purpose
Audits the agent context generated by aspens against the live source tree, reports per-target health (Claude, Codex), and offers an interactive --apply flow that re-runs the right aspens doc init/sync variant to repair gaps. The LLM interpretation is a thin layer on top of deterministic metrics — the metrics are the contract.
Business rules / invariants
- Target inference: If
.aspens.jsonis absent, targets are inferred from scan results (.claude/→ claude,.agents/→ codex). Falls back to['claude']. - LLM is optional and tool-less. Runs only when a CLI backend is detected.
runLLMis invoked withdisableTools: true; prompt must return pure JSON (bottom_line,improves,risks,next_step). Failure is caught and reported as "Analysis unavailable" — never fatal. - Graph failure is non-fatal. If
buildRepoGraphthrows (or--no-graphis passed),graphisnulland hub coverage is skipped/n/a. - Hub coverage haystack is the code-map, not CLAUDE.md. Post-Phase 1,
## Key Filesno longer lives in root instructions.computeHubCoveragereads.claude/code-map.md(claude) or.agents/skills/architecture/references/code-map.md(codex). If the code-map file is missing, it reportscodeMapMissing: trueinstead of spurious "missing hub" warnings. Older callers withoutrepoPathfall back to the legacycontextTexthaystack. - Health score deductions (start 100): missing instructions −35; no skills −25; domain gaps proportional up to −25; missed hubs −4 each; drift −3 per file (cap −20); unhealthy hooks −10 (hook-capable targets only); broken save-tokens −5 (claude only).
LOW_SIGNAL_DOMAIN_NAMES(config,test,tests,__tests__,spec,e2e) are excluded from coverage scoring but tracked inexcluded.SOURCE_EXTSextends the scanner set with.scala,.clj,.elm,.vue,.sveltefor drift detection. Adding a language for drift requires updating this set.- Walk depth capped at 5 — deep nested source files won't appear in drift analysis.
Non-obvious behaviors
- Agent skill-ref check (Phase 6):
checkAgentSkillReferences()scans.claude/agents/*.mdfrontmatter forskills: [a, b]and verifies each.claude/skills/<name>/skill.mdexists. Broken refs surface asagent-skill-refsopportunities. - Save-tokens health is Claude-only and only activates when
config.saveTokens.enabledis true andclaude.enabled !== false. Required hook/command files vary by sub-config (saveHandoff,warnAtTokens/compactAtTokensthresholds). Legacy.mjssiblings of the.shhooks must be cleaned up — their presence is an issue. buildApplyPlandedupes withaspens doc syncas a target-agnostic key; everything else is keyed${target.id}:${action}.applyRecommendedActionis a hand-maintained dispatch table mapping action strings todocInitCommand/docSyncCommandoption shapes. Adding a new recommendation inrecommendActions()requires a matching branch here, otherwise it warns "Cannot apply automatically".
Critical files (purpose, not inventory)
src/commands/doc-impact.js— CLI rendering, LLM prompt assembly,buildApplyPlan, and the action dispatch intodocInitCommand/docSyncCommand.src/lib/impact.js— All deterministic analysis (analyzeImpact, target summarization, scoring, drift, hub/code-map coverage, hook/save-tokens health, opportunities, missing rollup, value comparison).src/prompts/impact-analyze.md— Strict JSON contract the LLM must honor; do not change shape without updatingparseAnalysis.
Critical Rules
- Skills/
activationPatternsare matched viafindMatchingSkill(substring or/domain/path hit). Renaming the skill-reader contract breaks coverage scoring. - Don't surface root-context hub warnings when
codeMapMissingis true — emit thecode-map-missingitem instead and tell the user to runaspens doc graph. - Exported surface used by tests/consumers:
computeDomainCoverage,computeHubCoverage,computeDrift,evaluateHookHealth,evaluateSaveTokensHealth,computeHealthScore,computeTargetStatus,recommendActions,summarizeReport,summarizeMissing,summarizeOpportunities,summarizeValueComparison,checkAgentSkillReferencesfromimpact.js;buildApplyPlan,buildApplyConfirmationMessagefromdoc-impact.js.
Last Updated: 2026-05-11