This skill should be used when the user asks to "check dependencies", "verify plugin requirements", "what plugins am I missing", "validate plugin dependencies", or invokes /utils:dependency-checker. Validates declared dependencies in extends-plugin.json files against installed and enabled plugins.
From utilsnpx claudepluginhub aaronbassett/agent-foundry --plugin utilsThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Validate dependencies declared in extends-plugin.json files against installed and enabled plugins.
/utils:dependency-checker - Check all enabled plugins/utils:dependency-checker --installed - Check all installed plugins/utils:dependency-checker --all - Check all plugins in all marketplaces/utils:dependency-checker --plugin <name> - Check specific pluginParse the user's request to determine appropriate flags:
--installed--all--plugin <name>First, generate the Claude Plugin Root resolver:
# Invoke the find-claude-plugin-root skill to create /tmp/cpr.py
Skill(skill="utils:find-claude-plugin-root")
# Get plugin root
PLUGIN_ROOT=$(python3 /tmp/cpr.py utils)
# Run dependency checker
python3 "$PLUGIN_ROOT/scripts/dependency-checker.py" [FLAGS] > /tmp/dependency-check.json
# Render tables
python3 "$PLUGIN_ROOT/scripts/table-renderer.py" /tmp/dependency-check.json
# Show resolution steps
python3 "$PLUGIN_ROOT/scripts/resolution-steps.py" /tmp/dependency-check.json
After displaying tables and resolution steps, provide a summary including:
If scripts fail:
$PLUGIN_ROOT/scripts/dependency-checker.py - Core validation logic$PLUGIN_ROOT/scripts/table-renderer.py - ASCII table formatting$PLUGIN_ROOT/scripts/resolution-steps.py - Resolution guidance