Deep code quality review for the inspecto monorepo. Use this skill whenever the user wants to review, audit, or assess the quality of code in the inspecto project — even if they just say "check this file", "is this well written", "review my implementation", or "does this follow the architecture?". Accepts a file path…
Analyze the parameter signature of a specific VSCode extension command by reverse-engineering the minified extension.js source code. Given an extension ID and a command name, extracts the registerCommand callback's formal parameters, infers types from runtime type-checking patterns (typeof, Array.isArray), and checks…
Extract raw source code context around a specific VSCode extension command's registerCommand call. Outputs the surrounding N characters of minified code for manual inspection. Use when the user wants to see the actual source code around a command registration, needs to understand the internal implementation details…
List all commands registered by a VSCode extension, including hidden ones not declared in package.json. Given an extension ID (e.g. anthropic.claude-code), finds the installed extension, extracts declared commands from package.json and runtime-registered commands from extension.js. Use when the user asks: what…
Instructions for inspecto-dev/inspecto, covering inspecto — claude code development guide, project overview, monorepo structure, development phases (load each file as needed) and key architectural decisions.
Use when the AI should handle Inspecto annotation sessions through MCP, including claiming the next task, replying with progress, and resolving work when complete.
Help users set up Inspecto in their project or diagnose Inspector runtime issues. Trigger this skill when the user asks "Set up Inspecto in this project" or similar queries.