plugins/cobol-modernization/skills/mainframe-planning/SKILL.md
Create a transformation guide for replacing mainframe-specific COBOL constructs with standard COBOL equivalents. Use when preparing COBOL code for local execution or migration.
npx skillsauth add openhands/skills mainframe-planningInstall 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.
Create a comprehensive transformation guide that maps each mainframe dependency to its standard COBOL replacement.
This guide is a prerequisite for the actual transformation — DO NOT modify any code, only create the guide.
Document each mainframe-specific construct with:
EXEC CICS READ FILE(...))| Code | Meaning | CICS Equivalent | |------|---------|-----------------| | 00 | Success | Normal completion | | 23 | Record not found | NOTFND condition | | 35 | File does not exist | NOTOPEN condition | | 22 | Duplicate key | DUPREC condition | | 3x | I/O errors | Various IOERR conditions |
| CICS Command | Standard COBOL |
|--------------|----------------|
| EXEC CICS READ FILE(...) | READ filename INTO... |
| EXEC CICS WRITE FILE(...) | WRITE record-name FROM... |
| EXEC CICS REWRITE FILE(...) | REWRITE record-name FROM... |
| EXEC CICS DELETE FILE(...) | DELETE filename RECORD |
| EXEC CICS STARTBR FILE(...) | START filename KEY... |
| EXEC CICS READNEXT FILE(...) | READ filename NEXT INTO... |
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.