Content
72%Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
This is a solid, actionable skill for debugging CI e2e test failures. Its main strengths are concrete, executable commands and valuable domain-specific knowledge in the Notes section (especially the profile exporter gotcha). The main weakness is the lack of validation checkpoints in the workflow — e.g., verifying the download succeeded or handling cases where no artifacts exist.
Suggestions
Add a validation step after downloading the artifact (e.g., check file size or unzip exit code) to catch download failures early.
Add a brief error-handling note for when no artifacts are found for a given run ID (common scenario worth addressing).
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The skill is mostly efficient with concrete commands, but the Notes section includes some explanatory context that could be tightened. The profile exporter note is valuable domain knowledge but slightly verbose. Overall reasonable but not maximally lean. | 2 / 3 |
Actionability | Provides fully executable bash commands with specific gh API endpoints, jq filters, grep patterns, and find commands. Each step is copy-paste ready with clear placeholders for variable values like RUN_ID and ARTIFACT_ID. | 3 / 3 |
Workflow Clarity | Steps are clearly sequenced (find artifact → download → inspect → report), but there are no validation checkpoints or error recovery steps. For example, no check that the zip downloaded successfully, no handling of missing artifacts, and no verification that extraction succeeded. | 2 / 3 |
Progressive Disclosure | For a single-purpose skill under 50 lines with no bundle files, the content is well-organized with clear sections (Steps and Notes). The structure is appropriate for the scope — no need for external references given the focused nature of the task. | 3 / 3 |
Total | 10 / 12 Passed |