doc
GitHub用于编写和维护基于代码库事实的文档,如README、API说明和交接记录。强调内容需与源码验证一致,避免虚构,支持多种文档生成模式。
Trigger Scenarios
Install
npx skills add boshu2/agentops --skill doc -g -y
SKILL.md
Frontmatter
{
"name": "doc",
"context": {
"intent": {
"mode": "task"
},
"window": "fork",
"sections": {
"exclude": [
"HISTORY"
]
}
},
"consumes": [
"repo-context"
],
"metadata": {
"tier": "product",
"effects": [
"write_documentation",
"write_requested_handoff",
"create_requested_evidence_directory"
],
"disposition": "keep_specialist",
"capabilities": [
"doc",
"initialize_missing_docs",
"write_session_handoff"
],
"dependencies": [],
"canonical_status": "canonical"
},
"produces": [
"documentation",
"session-handoff"
],
"practices": [
"wiki-knowledge-surface",
"code-complete",
"pragmatic-programmer"
],
"context_rel": [],
"description": "Write grounded docs, READMEs, repo instructions or continuity handoffs. Use when: these documents are requested; no reports as a routine completion ritual.",
"hexagonal_role": "supporting",
"user-invocable": true,
"output_contract": "requested documentation or handoff with source references, check results and explicit gaps",
"skill_api_version": 1
}
Doc
Write or update the documentation the caller needs, grounded in the current repository and its accepted intent. A small explanation needs no interview, coverage ledger or separate report. Select only the mode relevant to the task.
Modes
| Need | Scope and reference |
|---|---|
| Explain an API, command, code-map or architecture | Inspect its consumers and source; use code/API guidance or architecture guidance when useful. |
| Create or improve a README | Lead with the user's problem and a working first-use path; preserve useful depth. See README craft. |
| Audit or scaffold OSS documentation | Compare existing docs with the requested pack. Create missing files; revise existing files only within the authorized request. See OSS pack. |
| Initialize missing entry documents | Create only explicitly requested missing files; report existing paths as skipped. See setup examples. |
| Preserve a session for another context | Write the compact factual handoff described below to the caller's authorized destination. |
These are optional task shapes, not successive phases. Detailed references supply techniques and formats; they do not add interviews, approval checkpoints, reports or files beyond the accepted request. Existing authorization to revise specified documents is sufficient.
Grounded writing
- Identify the audience, question and existing document owner. Reuse accepted intent; ask only for missing content that materially changes the document.
- Read the relevant declarations and verify them against code, configuration, command help or executable behavior. Use the caller's domain terminology. For a larger surface, retain enough source references to disclose what was inspected and what remains unknown; do not imply whole-repository coverage.
- Make the smallest useful edit. Explain non-obvious rules, ordering and tradeoffs when they help the reader; a reference page need not manufacture a lesson. Preserve operator policy and history outside the authorized scope.
- Check links, examples and the repository's applicable documentation build or validator. Remove empty claims and redundant prose; prose guidance can help when the requested output is substantial.
- Return changed paths and check results, plus unresolved factual gaps. Write a separate report only when the caller requests one or an existing consumer requires it.
For AgentOps itself, read docs/contracts/ubiquitous-language.md: the product
is the operations layer for agentic engineering. Preserve the distinction
between that layer and caller-owned execution, work tracking and delivery.
Missing-document setup
Create only the requested missing documents, such as PRODUCT.md, GOALS.md
or AGENTS.md; a collision is skipped, not overwritten by setup. Verify the
created paths and report created, skipped and failed writes. Setup does not
install tools, run ao session bootstrap, initialize Git or trackers, start a
runtime, add hooks, or infer a repository workflow.
Standalone verdict storage at .agents/ao/verdicts/sha256/ is created only when
explicitly requested. New CDLC proof uses the caller-selected protected external
non-Git evidence root; a missing route permits no checkout fallback. Preserve
existing evidence and use the repository's actual source owners.
Session handoff
A requested handoff records end-state facts another context can verify:
- accepted goal, completed artifacts and exact evidence paths;
- commands and observed results, unresolved acceptance, findings and causal gaps;
- useful repository/content identity, observed native stop state and measured remaining allowance or explicit unknowns; record whether the helper for a current HOLD incident was used when that fact matters to continuation;
- permitted dispatch/startup association and observed runtime/session/context identities, with separately evidenced parent/resume links and source bounds;
- caller-supplied continuation, when present.
Follow session associations for those identities. End-state notes cannot replace missing startup evidence. Do not invent IDs, infer a paused goal from a report saying HOLD, assign a whole multi-work session to one task, or reset budgets and helper incidents through compaction. Preserve informative failures and withdrawn claims.
Check source, recipient/model and destination authorization before copying metadata. An opaque locator grants no access. New CDLC handoffs require the selected protected external non-Git destination; preserve legacy evidence and report missing routing without creating a fallback file. Otherwise use the caller's named location and read it back after writing.
Existing JSON under .agents/handoff/ remains read-only evidence.
ao session handoff writes .agents/ao/handoff/; ao session rehydrate searches
both and selects the newest lexical ID, preferring the canonical directory for
an identical filename. Those commands do not establish startup associations or
external storage authorization. Return the exact path to Markdown consumers.
Writing a handoff changes no tracker, Git, runtime or verdict state. The native caller continues owning the authorized outcome; this documentation mode does not select work or decide continuation for it.
Reference menu
Load these only for the document being written. They supply examples and techniques under the kernel's accepted scope, not additional workflow gates.
- Formats and examples: generation templates, project types.
- OSS scope: documentation tiers, OSS project types.
- Writing and checks: prose workmanship, validation techniques.
- Explicit context configuration: context routing.
Version History
-
9f8a711
Current 2026-09-22 10:59
重构为模块化工作流,明确多种文档模式(API、README、OSS等),强化基于源码验证的写作规范,移除不必要的报告环节。
-
8061085
2026-09-09 05:16
新增 Prompt 示例说明具体执行流程;增加 'It's working if' 验收标准,明确引用真实符号、规范术语及验证命令报告要求;完善 Mode 路由表及参考文档指引。
- d9f9c50 2026-08-27 19:41
-
7b07a7d
2026-08-19 21:59
新增AgentOps操作层身份对齐约束,明确禁止将其描述为执行编排器或工厂;重构默认模式步骤以增强项目类型检测与命令执行逻辑。
- 3f402e5 2026-07-24 22:07


