Content
77%Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
The body is concise, well-structured, and has a clear validated workflow with feedback loops, scoring well on conciseness and workflow clarity. Its main weakness is actionability and progressive disclosure: the bundled scripts and templates that should carry the executable detail are not referenced or invoked anywhere in SKILL.md.
Suggestions
Reference and invoke the bundled scripts in the relevant steps, e.g. 'Run `python scripts/get_previous_version.py` to identify the target revision' and 'Execute `python scripts/rollback_deployment.py`'.
Link the templates the body claims as outputs, e.g. 'Post-incident report: see [assets/rollback_report_template.md](assets/rollback_report_template.md)'.
Add concrete commands for ECS and Lambda rollback (e.g. aws ecs update-service / aws lambda update-alias) instead of descriptive steps.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is lean and information-dense — prerequisites, numbered steps, an error-handling table, and resource links — without explaining concepts Claude already knows (kubectl, ECS, Lambda). Every section earns its place. | 3 / 3 |
Actionability | One concrete command appears ('kubectl rollout undo deployment/<name>'), but ECS ('update the service to use the previous task definition revision') and Lambda ('point the alias back') are descriptive, and the bundled scripts (rollback_deployment.py, verify_deployment.py) are never invoked or referenced. | 2 / 3 |
Workflow Clarity | A clear 9-step sequence runs detect → assess → rollback → verify DB compatibility → confirm success → report → automate, with explicit validation checkpoints (steps 6 and 7) and an error-handling table providing feedback loops for this risky operation. | 3 / 3 |
Progressive Disclosure | Sections are well organized, but bundle files that clearly map to stated deliverables — scripts/rollback_deployment.py, assets/rollback_report_template.md, assets/rollback_template.yml — exist yet are never linked or signaled from the body, so navigation to the executable content is missing. | 2 / 3 |
Total | 10 / 12 Passed |