Content
100%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.
An exemplary skill body: executable commands, a clearly sequenced workflow with validation checkpoints and a proper error-recovery loop, and lean prose focused on non-obvious gotchas. No bundle files are needed and none are referenced.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | Lean and dense throughout — it assumes git competence and spends tokens only on non-obvious gotchas (absolute vs relative git-dir, trailing-slash check-ignore, one-branch-one-worktree), with no padded explanations of what worktrees are; every sentence earns its place. | 5 / 5 |
Actionability | Fully executable copy-paste commands for every case — `git worktree add -b <branch-name> .worktrees/<branch-name> origin/<from-branch>`, the PR fetch-and-checkout flow, and the failure-handling branch — covering new work, existing refs, PRs, and errors. | 5 / 5 |
Workflow Clarity | Clear Step 0 → Step 1 → Step 2 sequence with explicit decision checkpoints (Equal/Different, submodule vs linked worktree, already-checked-out) and an error-recovery feedback loop that asks the user via the blocking-question tool rather than proceeding. | 5 / 5 |
Progressive Disclosure | Self-contained with no bundle files (references/scripts/assets absent) and well-organized sections (Step 0/1/2, two modes, failure handling); for a self-contained skill this structure is appropriately navigable. | 5 / 5 |
Total | 20 / 20 Passed |