library/specializations/ux-ui-design/skills/component-inventory/SKILL.md
Audit and inventory existing UI components in a codebase
npx skillsauth add a5c-ai/babysitter component-inventoryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Scan 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
});
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.