Agent skill
workbench-docs
Documentation workflows for Workbench CLI. Use when creating or updating specs, ADRs, runbooks, guides, or general docs, and when syncing backlinks or change notes.
Install this agent skill to your Project
npx add-skill https://github.com/incursa/workbench/tree/main/.codex/skills/workbench-docs
SKILL.md
Key settings
.workbench/config.json: paths.docsRoot, paths.templatesDir, ids.width, prefixes, git.defaultBaseBranch, github.owner, github.repository.- Use
workbench.ps1 config show --format jsonto verify effective settings.
Core workflows
- Planning phase: create specs and architecture docs before major changes.
- Doing phase: keep docs updated as implementation decisions change.
- Keep doc front matter and backlinks in sync.
- Summarize doc changes when publishing.
Commands
Create a doc:
workbench.ps1 doc new --type doc --title "Title" --path overview/title.md --work-item WI-WB-0001
Create a spec:
workbench.ps1 doc new --type spec --title "Title" --path overview/title.md --work-item WI-WB-0001
Create an architecture doc:
workbench.ps1 doc new --type doc --title "System design" --path architecture/system-design.md --work-item WI-WB-0001
Create an ADR:
workbench.ps1 doc new --type adr --title "Decision" --path decisions/ADR-YYYY-MM-DD-title.md --work-item WI-WB-0001
Link a doc to work items:
workbench.ps1 doc link --type spec --path overview/title.md --work-item WI-WB-0001
Unlink a doc from work items:
workbench.ps1 doc unlink --type adr --path decisions/ADR-YYYY-MM-DD-title.md --work-item WI-WB-0001
Sync front matter and backlinks:
workbench.ps1 doc sync --all --dry-run
workbench.ps1 doc sync --all
Summarize doc changes:
workbench.ps1 doc summarize --staged --update-index
Output
- Markdown docs with Workbench front matter and backlinks.
- Updated work item references in docs and work items.
Guardrails
- Keep doc types aligned with folder intent (product, architecture, decisions, runbooks).
- Always link docs to relevant work items with
--work-itemorworkbench.ps1 item link. - When writing markdown, use clickable relative links for repository-local references, and keep inline code styling inside the link text when needed. Use absolute URLs only for external resources such as NuGet package pages.
- For major changes, write a spec before implementation.
- When decisions change, update or create the ADR.
- Prefer
workbench.ps1 doccommands;workbench.ps1 specandworkbench.ps1 adrare deprecated.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
workbench-github
GitHub workflows for Workbench CLI. Use when creating pull requests from work items or wiring GitHub-specific actions.
workbench-architecture
Architecture and ADR workflows for Workbench CLI. Use when documenting system design, decisions, tradeoffs, or rationale that must be tracked over time.
dotnet-build-diagnostics
Capture dotnet environment and CI-style build diagnostics with binlog and summary output.
dotnet-test-triage
Run dotnet test, capture failed test cases, and generate a rerun filter plus a markdown failure summary. Use when test runs fail and you need a focused rerun command or a compact failure report.
dotnet-symbol-grep-recipes
Quick ripgrep recipes for common C# navigation tasks in this repo.
workbench-work-items
Work item management for Workbench CLI. Use when creating, updating, linking, or closing work items and tracking execution status.
Didn't find tool you were looking for?