Docs drift maintenance
Skill chf3198/megingjord-harness/skills/docs-drift-maintenance
AI agent governance harness: baton workflow, fleet LLM routing (Ollama/Claude/OpenRouter), and CI gates for Copilot, Claude Code, and Codex.
npx -y skills add chf3198/megingjord-harness --skill docs-drift-maintenanceAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Detect and remediate documentation drift after code, config, workflow, or UX changes. Use after implementation, before merge, and before release.
SKILL.md
2.8 KB, as published. Nobody here has run it
Docs Drift Maintenance
When to use
- After any change to commands, config, workflows, API/CLI behavior, or release process.
- Before merge/release if docs accuracy is part of acceptance.
- Before declaring a feature complete (not just gates-complete).
Documentation coverage matrix (required)
For feature-adds and behavior changes, evaluate all applicable surfaces:
- Local operator docs
README.mddocs/technical/system-stability.mddocs/workflow/learnings.md
- Public repository docs
.github/CONTRIBUTING.md.github/PULL_REQUEST_TEMPLATE.md- community profile files (
CODE_OF_CONDUCT.md,SECURITY.md,SUPPORT.md) when behavior changes affect contributor workflow
- VS Code extension public profile
vscode-extension/README.mdvscode-extension/CHANGELOG.mdvscode-extension/package.jsonmetadata/settings descriptions
- Release traceability docs
- root
CHANGELOG.md - release notes / GitHub release object
- root
- Inline code documentation (added #101 — global linting governance)
- JS/TS: JSDoc on all exported/public functions (
@param,@returns,@description) - Python: Google-style docstrings on all public functions, classes, and modules
- Bash: Header comment block on each script; inline comments on non-obvious logic
- CSS: Section header comments; non-obvious rule explanations
- Governed by
lint-configs/eslint.config.devenv.js(JSDoc rules) andlint-configs/ruff.devenv.toml(D rules) - Drift check: run
npm run lint:all; any newjsdoc/*orD*violations are inline-doc drift
- JS/TS: JSDoc on all exported/public functions (
Procedure
- Enumerate changed behavior/config/workflow/code surfaces.
- Map each change to impacted docs using the coverage matrix above.
- Identify stale, missing, or contradictory statements.
- Apply minimal doc deltas that restore correctness and traceability.
- Verify docs now match actual behavior and invocation paths.
- Record what was intentionally N/A and why.
Output format
drift_status: none|found|criticalimpacted_docs: file list with reasonrequired_updates: concrete edits requiredverification_checks: objective checks confirming alignmentevidence: code/workflow changes correlated to docs updatesnot_applicable: surfaces reviewed but intentionally N/A
Standards
- Docs updates must ship with behavior/config/workflow changes.
- Keep wording precise, testable, and user-actionable.
- Avoid speculative claims unsupported by current implementation.
- "All tests pass" does not imply docs are complete.