Content
57%Weight 40%Scale 1-3Reviews the quality of instructions and guidance provided to agents. Good implementation is clear, handles edge cases, and produces reliable results.
The content is well-organized and mostly token-efficient with a concrete prompt template and validation step, but it relies on external files that are not bundled, duplicates the template in the one-shot example, and lacks an explicit validate→fix→retry feedback loop for its batch operation. Tightening the duplication and adding the retry loop would lift the weaker dimensions.
Suggestions
Collapse or shorten the One-shot Example so it does not duplicate the Prompt Template; reference it as 'fill in {item_related_info}, {output_path}, {fields_path}' instead of repeating all requirements.
Add an explicit validation feedback loop in Step 4/5: 'If validation fails, the agent must fix missing fields and re-run validate_json.py until it passes before the task is considered complete.'
Either bundle validate_json.py in ./scripts/ or replace the hardcoded '~/.claude/skills/research/validate_json.py' path with a script-local reference so the command is executable as written.
| Dimension | Reasoning | Score |
|---|---|---|
Conciseness | The body is largely efficient and well-structured with a tight prompt template, but the One-shot Example duplicates the Prompt Template almost verbatim and some Parameter Retrieval lines restate what the template already shows, so it could be tightened. | 2 / 3 |
Actionability | Provides a concrete, copy-paste prompt template and a validation command, but references external files that are not bundled here (validate_json.py, fields.yaml, outline.yaml) and leaves steps like 'Find */outline.yaml' and slugify rules as prose rather than executable commands. | 2 / 3 |
Workflow Clarity | Steps are clearly numbered (1–5) with batching and resume logic, and a validation step exists, but there is no validate→fix→retry feedback loop and the batch-approval checkpoint is only implied, so checkpoints are incomplete for a batch operation. | 2 / 3 |
Progressive Disclosure | The body is organized into clear sections (Trigger, Workflow, Agent Config) with a highlighted prompt template, but there are no bundle files in references/scripts/assets, so referenced external artifacts (validate_json.py, fields.yaml) are not actually present to verify navigation depth. | 2 / 3 |
Total | 8 / 12 Passed |