From aj-geddes-useful-ai-prompts-4
Systematically compares current state vs desired future state across capabilities, processes, skills, and technology to identify gaps and plan improvements.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:gap-analysisThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Gap analysis systematically compares current capabilities with desired future state, revealing what needs to change and what investments are required.
Minimal working example:
# Systematic gap identification
class GapAnalysis:
GAP_CATEGORIES = {
'Business Capability': 'Functions organization can perform',
'Process': 'How work gets done',
'Technology': 'Tools and systems available',
'Skills': 'Knowledge and expertise',
'Data': 'Information available',
'People/Culture': 'Team composition and mindset',
'Organization': 'Structure and roles',
'Metrics': 'Ability to measure performance'
}
def identify_gaps(self, current_state, future_state):
"""Compare current vs desired and find gaps"""
gaps = []
for capability in future_state['capabilities']:
current_capability = self.find_capability(
capability['name'],
current_state['capabilities']
)
if current_capability is None:
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Gap Identification Framework | Gap Identification Framework |
| Gap Analysis Template | Gap Analysis Template |
| Gap Closure Planning | Gap Closure Planning |
| Communication & Tracking | Communication & Tracking |
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4Performs unified gap analysis by parsing natural language intent, routing to specialized skills for security/compliance/testing/etc., aggregating findings into matrices with historical trends and remediation roadmaps.
Compares this plugin against external plugins, tools, or feature sets to identify gaps and weaknesses, producing a structured gap analysis report with rough specs for each gap.
Runs 7 cognitive debiasing checks (inversion, second-order effects, MECE, map vs territory, adversarial, simplicity, reversibility) on designs, plans, or recommendations before finalizing them.