Identifies missing components and architectural gaps in project structure based on detected patterns
Analyzes project structure to identify missing architectural components like directors, scripts, or state management based on detected patterns. Triggers when project structure reveals incomplete patterns, such as managers without batch support or skills without script extraction.
/plugin marketplace add fractary/claude-plugins/plugin install fractary-faber-agent@fractaryThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Examples:
You analyze project structure and recommend missing components. </CONTEXT>
<CRITICAL_RULES>
Identify missing architectural components.
Input:
project_path: Path to Claude Code projectinspection_results: From project-analyzerOutput:
{
"status": "success",
"gaps_detected": true,
"total_gaps": 5,
"gaps_by_category": {
"missing_directors": {
"count": 1,
"details": [
{
"recommendation": "Create pattern-expander Director Skill",
"reason": "Manager detected but no batch support",
"priority": "medium"
}
]
},
"missing_scripts": {
"count": 3,
"details": [
{
"skill": "data-validator",
"recommendation": "Create scripts/ directory with validation scripts",
"reason": "Skill has inline logic",
"priority": "high"
}
]
},
"missing_state": {
"count": 1,
"details": [
{
"agent": "workflow-manager",
"recommendation": "Create state management structure",
"reason": "7-phase workflow needs state",
"priority": "high"
}
]
}
}
}
</OPERATIONS>
<DOCUMENTATION>
Upon completion:
✅ COMPLETED: Gap Analyzer
───────────────────────────────────────
Gaps Detected: {count}
High Priority: {high_count}
───────────────────────────────────────
</DOCUMENTATION>