gap-analysis
Identify differences between current state and desired future state. Analyze gaps in capabilities, processes, skills, and technology to plan improvements and investments.
npx skills add majiayu000/claude-skill-registry --skill gap-analysis --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Gap Analysis ## Overview Gap analysis systematically compares current capabilities with desired future state, revealing what needs to change and what investments are required. ## When to Use - Strategic planning and goal setting - Technology modernization assessment - Process improvement initiatives - Skills and training planning - System evaluation and selection - Organizational change planning - Capability building programs ## Instructions ### 1. **Gap Identification Framework** ```python # 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: gap
- Overview
- When to Use
- Instructions
- 1. Gap Identification Framework
- 2. Gap Analysis Template
- 3. Gap Closure Planning
- 4. Communication & Tracking
- Best Practices
- ✅ DO
- ❌ DON'T
- Gap Analysis Tips
What does the gap-analysis skill do?
Identify differences between current state and desired future state. Analyze gaps in capabilities, processes, skills, and technology to plan improvements and investments.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill gap-analysis --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
