Docs
π§ One batter, every repo β reusable AI agent & skill definitions rendered into harness-native files (.claude/, .codex/, .agents/)
npx -y skills add dustinkeeton/wafflestack --skill docsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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
Orchestrates documentation updates by spawning the harness-architect, docs-agent, and docs-human agents in sequence. The first pass audits the codebase and reports changes, docs-agent writes machine-readable docs, docs-human writes human-readable docs.
SKILL.md
2.6 KB, as published. Nobody here has run it
Documentation Orchestration
When this skill is invoked, run the following pipeline:
Step 1: Architecture Audit
Spawn the harness-architect agent with this prompt:
Audit the current codebase for any changes since the docs were last updated. Read the existing machine docs (a single root
AGENTS.mdregistry) and compare against the actual project. Produce a concise change report covering:
- New or removed stacks, skills, agents, config keys, or CLI commands
- Changed installer exports or template semantics (
installer/lib/*.mjs) stack.yamlconfig declarations out of sync with placeholder usage- Rendered-output drift:
node installer/cli.mjs doctor --allow-missingclean (committed render + lock in sync β re-render and commit after stack edits, withnode installer/cli.mjs render --allow-unreleased: #373 makesrenderrefuse from a non-release toolkit, and a branch checkout never is one; plaindoctorneeds no flag);.gitignorestill covers the deliberately-untracked renders (label-hook workflow, worktrees,.waffle/overview docs)
Output ONLY the change report as structured text. Do NOT modify any files.
Step 2: Agent Documentation
Take the change report and spawn the docs-agent agent with this prompt:
Here is the architecture change report for the wafflestack codebase:
{step-1 output}
Update the machine docs β a single root
AGENTS.mdregistry β to reflect the current state of the project. Read the actual source files to verify details β do not rely solely on the change report. Follow the docs-agent skill guidelines for format and structure.
Step 3: Human Documentation
After docs-agent completes, spawn the docs-human agent with this prompt:
The machine docs have just been updated. Update the human-facing documentation β
DECISIONS.md,STATUS.md, andARCHITECTURE.mdat the repo root β to match.Read the updated machine docs and the actual source to ensure accuracy. Follow the docs-human skill guidelines for format, structure, and its guardrails (owner-voiced docs are flagged, never rewritten).
Important
- Each step must complete before the next begins β the output of each informs the next.
- Step 1 is read-only β the audit agent only reports.
- docs-agent and docs-human SHOULD modify their respective documentation files.