scan_inventory
Scan Claude Code configurations across all scopes to inventory memories, skills, servers, and settings with file paths and metadata.
Instructions
Scan all Claude Code configurations across every scope (global, workspace, project). Returns memories, skills, MCP servers, hooks, configs, plugins, and plans with their file paths and metadata.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/ui/app.js:88-99 (handler)The init() function calls the /api/scan endpoint to fetch the inventory data for the UI. The request is named "scan_inventory" by the user prompt, but the implementation is via the /api/scan endpoint in the frontend code.
async function init() { try { data = await fetchJson("/api/scan"); selectedScopeId = getInitialSelectedScopeId(); initializeScopeState(); setupUi(); renderAll(); } catch (error) { document.getElementById("loading").textContent = "Failed to load inventory"; toast(error?.message || "Failed to load inventory", true); } }