
from claude-plugins88
Utility skill and script to locate files inside the Claude Code plugins cache, resolving latest-version paths so orchestrations can find plugin tools and SKILL.
Find Plugin File is a utility skill that helps agents and scripts locate files inside the Claude Code plugins cache (e.g. ~/.claude/plugins/cache). It resolves versioned plugin directories, selects the latest semantic version, and returns file paths or lists of matches so orchestrators and slash commands can run plugin tools without hardcoding paths.
Use this skill when a slash command, orchestrator, or agent needs to reference a script or SKILL.md inside the plugins cache but the exact versioned directory is unknown or varies across installs. It is also useful for automation that must select the latest plugin release at runtime.
find_plugin_file.py — search by filename or path pattern, list plugins, and restrict by plugin name.Designed for Claude Code and other runtime environments that embed plugin caches; examples target Claude Code but the script is usable from any host-level automation that can access the cache directory.
Utility skill for locating files inside the Claude Code plugins cache (~/.claude/plugins/cache) with automatic latest-version resolution. The Python script is well-structured with argparse, type hints, and docstrings. It exited with code 2 in dry-run mode because it requires a file_pattern argument, which is expected behavior — not a crash. No security concerns found; it's a read-only file search tool with no network calls or destructive operations.
Niche but well-built utility for a specific Claude Code plugin development workflow. Clean code, no security issues. Low usefulness score reflects the narrow audience, not quality problems.