2 hours ago · Tech · hide · 0 comments

♠ I found drskill through Drew Breunig’s post about managing an agent’s loadout. Problem statement: lint skills bundled in a Claude Code plugin with drskill. Running it through uvx is easy enough: % uvx drskill scan --detailed drskill scan — 3 harnesses (10 more empty), 9 skills ... 0 errors, 5 warnings (5 new) · token counts are approximate But none of this repository’s 11 skills appeared. The known limitation explains why: Claude Code skills bundled inside plugins are not scanned yet. I projected the plugin’s skill directory into the plain .claude/skills layout that drskill understands via Justfile: # Check skills with drskill doctor: #!/usr/bin/env bash set -euo pipefail tmp=$(mktemp -d) trap 'trash "$tmp"' EXIT mkdir -p "$tmp/project/.claude/skills" "$tmp/home" for skill in "$PWD"/plugins/thiagowfx/skills/*; do ln -s "$skill" "$tmp/project/.claude/skills/$(basename "$skill")" done uv_cache=$(uv cache dir) cd "$tmp/project" HOME="$tmp/home" UV_CACHE_DIR="$uv_cache" uvx drskill scan…

No comments yet. Log in to reply on the Fediverse. Comments will appear here.