dependency-analyzer
Dependency Analyzer
When to Use
Trigger this skill when the user:
- Is planning a framework or SDK upgrade
- Wants to know migration effort for version changes
- Asks about deprecated APIs or breaking changes
- Needs to audit usage of a specific library
- Asks "how much work to upgrade X"
Instructions
- Identify the upgrade path or library to analyze
- Run
/sourceatlas:deps "<upgrade>"with the migration description - Returns deprecated APIs, breaking changes, and migration checklist
Command Formats
- iOS upgrade:
/sourceatlas:deps "iOS 16 → 17" - Android:
/sourceatlas:deps "Android API 35" - React:
/sourceatlas:deps "React 17 → 18" - Python:
/sourceatlas:deps "Python 3.11 → 3.12" - Library audit:
/sourceatlas:deps "kotlinx.coroutines"
What User Gets
- Phase 0 Rule Confirmation (preview before scanning)
- Required Changes: Removable checks, deprecated APIs
- Modernization Opportunities: New features available
- Usage Summary: All API usage with file:line references
- Third-party compatibility
- Migration Checklist with effort estimates
Example Triggers
- "We need to upgrade to iOS 17, how much work?"
- "What breaks if we upgrade React to 18?"
- "Plan the Python 3.12 migration"
- "Check our usage of AFNetworking"
- "How hard is the Swift 6 migration?"
More from lis186/sourceatlas
code-flow-tracer
Trace code execution paths and data flow. Use when user asks "how does X work", "what happens when X", "trace the flow of X", "where does data come from", or needs to understand feature implementation.
13codebase-overview
Quickly understand a new codebase's architecture, tech stack, and patterns. Use when user asks "what is this project", "project overview", "how is this codebase structured", "what tech stack", or when onboarding to a new codebase.
13impact-analyzer
Analyze what code will be affected by changes. Use when user asks "what will break if I change X", "impact of changing X", "dependencies of X", "is it safe to modify X", or before making significant code changes.
11pattern-finder
Find implementation examples and design patterns in the codebase. Use when user asks "how to implement X", "how does this project do X", "show me examples of X", "where is X implemented", or needs to follow existing code conventions.
10history-analyzer
Analyze git history for hotspots, coupling, and knowledge distribution. Use when user asks "who knows this code", "what files change most", "hotspots", "bus factor", "knowledge silos", or needs to understand code evolution.
10overview
Get project overview - scan <5% of files to achieve 70-80% understanding
2