Audit and inventory existing UI components in a codebase
Scans codebases to audit UI components, identifying duplicates, usage patterns, and consolidation opportunities.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdScan codebases to audit and inventory existing UI components, identifying variations, usage patterns, and opportunities for consolidation.
{
"type": "object",
"properties": {
"scanPath": {
"type": "string",
"description": "Root path to scan for components"
},
"framework": {
"type": "string",
"enum": ["react", "vue", "angular", "svelte", "auto"],
"default": "auto"
},
"patterns": {
"type": "array",
"items": { "type": "string" },
"default": ["**/*.tsx", "**/*.jsx", "**/*.vue"]
},
"excludePaths": {
"type": "array",
"items": { "type": "string" },
"default": ["node_modules", "dist", "build"]
},
"analyzeProps": {
"type": "boolean",
"default": true
},
"detectDuplicates": {
"type": "boolean",
"default": true
}
},
"required": ["scanPath"]
}
{
"type": "object",
"properties": {
"components": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"path": { "type": "string" },
"props": { "type": "array" },
"usageCount": { "type": "number" }
}
}
},
"duplicates": {
"type": "array",
"description": "Similar or duplicate components"
},
"variations": {
"type": "object",
"description": "Component variations grouped by type"
},
"usageMap": {
"type": "object",
"description": "Component usage locations"
},
"statistics": {
"type": "object",
"properties": {
"totalComponents": { "type": "number" },
"uniqueComponents": { "type": "number" },
"averagePropsCount": { "type": "number" }
}
},
"recommendations": {
"type": "array",
"description": "Consolidation recommendations"
}
}
}
const result = await skill.execute({
scanPath: './src',
framework: 'react',
patterns: ['**/*.tsx', '**/*.jsx'],
detectDuplicates: true
});
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.