Content
87%Weight 40%Scale 1-5Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
The content is highly concise and actionable with concrete commands and exact output paths, and it is well-structured for a simple skill. The main gap is the absence of explicit validation/error-recovery checkpoints for a batch operation that audits many routes.
Suggestions
Add an explicit validation checkpoint for the batch audit, e.g., confirm `ci-result.json` exists and reports the expected route count before summarizing scores, and a fix/retry path if the wrapper times out or returns partial results.
Note how to detect and handle partial failures (e.g., routes that failed to audit) so aggregate medians aren't silently skewed.
Specify the failure mode when `url_safety` pre-flight rejects a URL, so the workflow has a clear error-recovery branch.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is lean and assumes competence: no explanation of what Lighthouse or CWV are, just commands, flags, and output field names, with every section earning its tokens. | 5 / 5 |
Actionability | Concrete executable commands are given directly in the routing table (`/seo unlighthouse <url> --device desktop`, `--max-routes 50 --output-dir ./reports`) with exact output field paths and a precise delegation command, covering the common cases copy-paste ready. | 5 / 5 |
Workflow Clarity | The sequence is implied (install -> route command -> read ci-result.json) and it notes subprocess timeout management, but for a batch operation auditing up to 200 routes there are no explicit validation checkpoints or error-recovery feedback loops, which caps this at 3 per the batch-operation rule. | 3 / 5 |
Progressive Disclosure | A short, well-organized overview under 50 lines with clear section headers and no bundle files to reference; per the simple-skill guideline, this clear organization earns a 5 without external file references. | 5 / 5 |
Total | 18 / 20 Passed |