Content
96%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 body is a tightly written, fully executable workflow with concrete commands, explicit validation checkpoints, and an error-recovery feedback loop. The only minor gap is organization polish in an otherwise self-contained single-file skill.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is lean: it jumps straight into parsing arguments and concrete steps with no preamble explaining what a git worktree is or how git/libraries work. The single explanatory line ("gh pr checkout handles fetching, fork tracking, and branch setup automatically") and the worked path example both earn their place by preventing redundant manual steps, so every token pulls its weight. This is not the verbose 4-anchor case; it sits cleanly at the lean, competence-assuming 5 anchor. | 5 / 5 |
Actionability | Commands are concrete and copy-paste ready throughout — `mkdir -p`, `git worktree list`, `gh pr view --json headRefName -q .headRefName`, `git worktree add ... [--detach]`, `gh pr checkout`, `cd`, `pwd`, `git checkout --no-track -b`. Branching logic covers the common cases (PR, branch, neither) and includes a concrete AskUserQuestion interaction. | 5 / 5 |
Workflow Clarity | Steps are explicitly numbered 1-4 with a clear sequence, and validation is present: step 3 verifies cwd via `pwd` and stops with an error if it didn't persist, and step 2 detects branch conflicts via `git worktree list` and runs an AskUserQuestion feedback loop (reuse vs. stop). This matches the anchor with explicit validation steps and error-recovery feedback loops; the destructive/batch cap does not apply because validation is included. | 5 / 5 |
Progressive Disclosure | No bundle files exist (references/, scripts/, assets/ are all absent), and the skill is a self-contained single file organized into a clear Steps section with numbered subsections. Structure is good and content is appropriately placed for a single-purpose skill, but it sits slightly above the under-50-line simple-skill threshold and has minor organization looseness (e.g. the explanatory `gh pr checkout` bullet under step 2), placing it at 4 rather than 5. | 4 / 5 |
Total | 19 / 20 Passed |