Stats
Actions
Tags
From skill-reviewer
Measure description-frontmatter length for one or more SKILL.md files and warn if any exceed the 160-char budget.
How this command is triggered — by the user, by Claude, or both
Slash command
/skill-reviewer:check-descriptionThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Check SKILL.md description length Measure the `description:` frontmatter length for one or more SKILL.md files by running the shared `measure-description.sh` script. Reports `OK:`, `WARNING:` (over 160-char budget), `WARNING:` (multi-line), or `ERROR:` (missing) for each file. ## Resolve target files 1. If `$ARGUMENTS` is a path to an existing file ending in `SKILL.md`: use that file directly. 2. If `$ARGUMENTS` looks like a glob pattern: use `Glob` with that pattern from `$PWD`. 3. If `$ARGUMENTS` is empty: use `Glob` for `**/SKILL.md` from `$PWD`. 4. Otherwise: ask the user to clarif...
Measure the description: frontmatter length for one or more SKILL.md files by running the shared measure-description.sh script. Reports OK:, WARNING: (over 160-char budget), WARNING: (multi-line), or ERROR: (missing) for each file.
$ARGUMENTS is a path to an existing file ending in SKILL.md: use that file directly.$ARGUMENTS looks like a glob pattern: use Glob with that pattern from $PWD.$ARGUMENTS is empty: use Glob for **/SKILL.md from $PWD.AskUserQuestion.For each resolved file path, run:
"${CLAUDE_PLUGIN_ROOT}/scripts/measure-description.sh" "$file"
This emits one line per file. Print each line as-is.
After measuring all files, summarize:
OK vs WARNING vs ERROR/skill-reviewer:optimizing-skill-frontmatter to trim it (the WARNING message already includes this pointer — do not duplicate it)npx claudepluginhub shawn-sandy/agentics-kit --plugin skill-reviewer