Agent runbook lint skill
Local-first lint checks for agent automation runbooksFrom the repository description
npx -y skills add rogerchappel/agent-runbook-lint-skillAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 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.
SKILL.md
0.9 KB, 214 tokens by cl100k_base, as published. Nobody here has run it
Agent Runbook Lint
Use this skill when an agent is about to follow, publish, or delegate a runbook and needs a local readiness check first.
Required Inputs
- Path to a Markdown runbook.
- Optional report path.
Outputs
- Markdown lint report.
- Exit code
0when required gates pass, otherwise1.
Side-Effect Boundaries
The skill reads runbooks and may write a report file. It must not execute runbook commands, push branches, call connectors, or mutate external systems.
Approval Requirements
Any follow-up action that writes to GitHub, Slack, CRM, project-management tools, or other external accounts requires explicit approval in the owning workflow.
Examples
agent-runbook-lint check docs/ORCHESTRATION.md
agent-runbook-lint check RUNBOOK.md --report reports/runbook-lint.md
Validation Workflow
Run npm test, npm run check, and npm run smoke before using the report in a release-candidate PR.
What ships with it: 21 files
25.0 KB alongside SKILL.md, 6 of them executable
docs/
- ORCHESTRATION.md536 B
- PRD.md850 B
- RELEASE_CANDIDATE.md237 B
- RELEASE_VALIDATION.md415 B
- RULES.md2.5 KB
- TASKS.md248 B
fixtures/
- bad-runbook.md44 B
- good-runbook.md653 B
- incidental-words-runbook.md139 B
scripts/
- validate.shruns194 B
src/
- agent_runbook_lint/cli.pyruns915 B
- agent_runbook_lint/__init__.pyruns164 B
- agent_runbook_lint/linter.pyruns8.2 KB
- agent_runbook_lint/__main__.pyruns80 B
tests/
- test_linter.pyruns6.8 KB
- CONTRIBUTING.md149 B
- .gitignore70 B
- LICENSE1.0 KB
- package.json378 B
- pyproject.toml524 B
- README.md1.1 KB