migrate-analyze
Migration analysis - gap analysis, migration roadmaps, MG-XXX brief generation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Migration analysis - gap analysis, migration roadmaps, MG-XXX brief generation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Start or resume session - loads state and continues work
First-run guided onboarding (teach the register → hunt → rest loop + a consented first hunt) OR reconfigure an existing install (shells `igris configure`). Branches on `igris onboarding status`. Usage: /setup
Guided project handoff — export a project's brain slice to a portable bundle, or import one with a preview/confirm ceremony. Usage: /handoff export <project> | /handoff import <bundle>
Release preparation - changelog generation, version bumps, release notes
Show system status report - briefs, session, blockers, git status
Search the brain's learnings with hybrid BM25+vector recall - filter by project or global, show ranked results (ID/title/snippet/score), and pull a learning into context. Usage: /search <query> [--project <slug> | --global] [--pull <id>] [--limit <N>]
| name | migrate-analyze |
| tier | opt-in |
| description | Migration analysis - gap analysis, migration roadmaps, MG-XXX brief generation |
| disable-model-invocation | false |
| allowed-tools | ["Read","Grep","Glob","Bash","mcp__igris-brain__igris_brief_create"] |
| triggers | ["MIGRATE","PATHFINDER","MIGRATE analyze","migration analysis","migration roadmap","gap analysis"] |
Migration analysis workflow. Compares current codebase against target standards, identifies gaps, and generates migration briefs with prioritized roadmaps.
$ARGUMENTS can specify:
Read ~/.igris/projects/{project}/context/coding_guidelines.md as the target architecture standard.
If a base repo path is provided in $ARGUMENTS, also analyze it for patterns.
Scan the project:
Compare current state vs target standards:
Create MG-XXX briefs for each significant gap:
igris_brief_create MCP tool, fallback to cache write at ~/.igris/projects/{project}/briefs/MG-XXX-{name}.md# Migration Analysis
**Current State:** {summary of current architecture}
**Target State:** {from coding_guidelines.md}
## Gaps Found
| # | Gap | Severity | Files Affected | Effort | Brief |
|---|-----|----------|----------------|--------|-------|
| 1 | {gap description} | Critical | {count} | L | MG-XXX |
| 2 | {gap description} | High | {count} | M | MG-XXX |
## Migration Roadmap
### Phase 1: {name} (Critical)
- MG-XXX: {task description}
- MG-XXX: {task description}
### Phase 2: {name} (High Priority)
- MG-XXX: {task description}
### Phase 3: {name} (Medium Priority)
- MG-XXX: {task description}
## Recommended Order
1. {highest priority migration} -- because {reason}
2. {next priority} -- depends on #1
3. ...