plugins/migration-scoring/skills/migration-scoring-overview/SKILL.md
Evaluate code migration quality with coverage, correctness, and style scoring. Generates executive reports with actionable recommendations.
npx skillsauth add openhands/extensions migration-scoringInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Comprehensive quality evaluation for code migration projects.
This plugin evaluates completed migrations through multiple lenses:
uvexport LLM_API_KEY="your-api-key"
export LLM_MODEL="anthropic/claude-3-5-sonnet-20241022"
uv run python -m lc_sdk_examples.migration_scoring \
--src-path /path/to/migration/project \
--rubric-path /path/to/style_rubric.txt
See ../migration-mapping/SKILL.md
Creates a source→target file mapping:
Output: migration_mapping.json
{
"CALC001.cbl": ["InvoiceCalculator.java", "TaxCalculator.java"],
"CUST002.cbl": ["CustomerService.java"]
}
See ../score-quality/SKILL.md
Scores each source file on:
Output: migration_score.json
{
"CALC001.cbl": {
"coverage": 4,
"correctness": 5,
"justification": "All calculation logic migrated..."
}
}
See ../score-style/SKILL.md
Evaluates target code against style guidelines:
Output: style_score.json
See ../migration-report/SKILL.md
Generates a comprehensive report:
Output: final_report.md
your-project/
├── .lc-sdk/
│ ├── migration_mapping.json
│ ├── migration_score.json
│ ├── style_score.json
│ └── final_report.md
See ../score-quality/references/scoring-criteria.md for the 1-5 scoring scales.
tools
Create an automation that generates an async standup digest from Slack. Searches selected channels for messages since the previous workday, groups updates by project, highlights blockers and decisions, and posts a summary to a target channel.
tools
Create an automation that writes a recurring research brief. Uses Tavily MCP for web research and Notion MCP to publish the final brief with executive summary, implications, and source citations.
tools
Create an automation that triages new Linear issues. Inspects the issue title, description, team, customer, priority, and recent related issues via Linear MCP. Suggests labels, priority, likely owner, duplicates, and posts a clarifying comment.
tools
Create an automation that drafts incident retrospectives. Gathers incident-channel messages from Slack, collects linked tickets and follow-ups from Linear, and publishes a retrospective draft to Notion with a timeline, impact summary, root-cause hypotheses, and action items.