Skill
doc-update
Priority: P2 (Medium — prevents documentation staleness)
Motivation
AITER's operator documentation (in docs/) is manually maintained and frequently falls behind source code changes. When a kernel's signature changes, new parameters are added, or dtype support is extended, the corresponding guide becomes stale. This skill detects which documentation is affected by recent source changes and produces targeted updates — fixing API signatures, parameter names, and feature claims without requiring a full doc rewrite.
What This Skill Should Do
- Detect affected docs: Given a commit range or PR diff, identify which
docs/*_guide.md files reference functions that changed
- Extract changes: For each affected function, diff the old vs new signature — identify added/removed/renamed parameters and new dtype support
- Update signatures: In the affected guide, update the Quick Reference section and API examples to match the new signature
- Update feature claims: If new backends or dtypes are added, update the feature tables and decision trees in the guide
- Validate updates: After updating, run the doc-factcheck skill to verify all claims in the updated guide are still accurate
Acceptance Criteria
Skill
doc-updatePriority: P2 (Medium — prevents documentation staleness)
Motivation
AITER's operator documentation (in
docs/) is manually maintained and frequently falls behind source code changes. When a kernel's signature changes, new parameters are added, or dtype support is extended, the corresponding guide becomes stale. This skill detects which documentation is affected by recent source changes and produces targeted updates — fixing API signatures, parameter names, and feature claims without requiring a full doc rewrite.What This Skill Should Do
docs/*_guide.mdfiles reference functions that changedAcceptance Criteria