Content
87%Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
A well-organized, actionable command-line reference with lean, copy-paste-ready examples and strong section structure. The main gap is the lack of validation/verification checkpoints around its destructive and batch operations, which limits workflow clarity.
Suggestions
Add an explicit verification step before destructive/batch commands, e.g. run the search without '-exec'/'xargs rm' first to preview matches, or include a 'preview then act' pattern for `grep -rlZ ... | xargs -0 rm` and `fd -e log -x rm`.
For `sed -i ''` in-place edits, recommend verifying the result (e.g. a dry-run without -i, or a quick diff/backup check) before committing changes, to add a feedback loop around irreversible edits.
Optionally split the long tool-by-tool reference into a separate reference file (e.g. COMMANDS.md) referenced one level deep, keeping SKILL.md as a tighter overview, though the current single-file organization is already acceptable.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is a lean bullet-style command reference where each token earns its place; the BSD-vs-GNU portability notes (sed -i '', grep --exclude-dir, find -prune) add genuinely non-obvious value rather than explaining concepts Claude already knows, fitting the score-3 'lean and efficient' anchor rather than the score-2 'could be tightened' anchor. | 3 / 3 |
Actionability | It provides fully executable, copy-paste-ready commands with concrete flags (e.g. 'grep -rlZ -I --exclude-dir=node_modules "DEPRECATED_API" . | xargs -0 rm'), matching the score-3 anchor for specific, executable examples rather than the pseudocode score-2 anchor. | 3 / 3 |
Workflow Clarity | This is a reference collection rather than a sequenced workflow, and the destructive/batch operations (grep | xargs rm, sed -i, fd -x rm) lack any validation or verification checkpoint; per the judging guidelines, missing validation in batch/destructive contexts caps workflow clarity at 2 rather than 3. | 2 / 3 |
Progressive Disclosure | The skill is self-contained with no external bundle references and is organized into clear ## and ### sections with no nested reference chains, so for a single-file reference with no need for external files progressive disclosure scores 3 on well-organized sections alone. | 3 / 3 |
Total | 11 / 12 Passed |