Agent Skills
› lthoangg/OpenAgentd
› oad/docs
oad/docs
GitHub同步产品文档与代码变更,更新特性目录和README。根据git diff判断需修改的文档范围,确保用户可见变更得到记录,同时遵循简洁、版本引用等规则,并在完成后运行验证脚本。
Trigger Scenarios
代码变更导致用户可见功能改变
特性目录与当前状态不一致
Install
npx skills add lthoangg/OpenAgentd --skill oad/docs -g -y
SKILL.md
Frontmatter
{
"name": "oad\/docs",
"description": "OpenAgentd workflow for keeping the compact feature catalogue and README aligned with user-visible changes."
}
Sync the small set of product documentation affected by the current code changes. Called automatically by oad/commit — can also be used directly when the feature catalogue drifts.
What to update
Inspect git diff --cached or git diff HEAD, then choose the smallest durable record:
- Shipped user-visible capability → add a concise, version-cited entry to
documents/docs/features.md; it is the canonical catalogue. - Product story or first-run/setup change → update
README.mdwhen users need to discover or act on it. - Non-obvious architecture or security rationale → keep it beside the implementation; git history preserves the historical decision.
- Future work, bugs, or roadmap changes → use GitHub issues; do not add a roadmap or technical-debt document.
- Implementation, API, configuration, CLI, operational, or UI-detail change → keep the source, tests, CLI help, and UI authoritative. Add an inline comment only when it explains a non-obvious invariant or decision.
- Nothing user-visible changed → make no documentation change; note this briefly in the commit body.
Rules
- Do not create deep implementation guides, API references, configuration manuals, styling specifications, troubleshooting pages, or duplicate operational docs under
documents/. - Do not turn ordinary control flow into comments. A code comment must explain why a non-obvious constraint exists, not restate what the code does.
- Keep feature entries factual, concise, and version-cited; mark removed features (deprecated) for at least one release before deleting them.
- Run
make verify-docsafter Markdown, README, or feature-catalogue changes. - Complete the documentation pass before handing control back to
oad/commit.
Version History
- b4ec0d3 Current 2026-07-24 16:51


