Step 02 of 10 3-6 quarters (yes — this is the longest phase)· advanced
Step 2: Business Rule Extraction (the long phase)
Convert each in-scope COBOL program into a structured catalog of business rules, decision tables, calculations, and edge cases — validated by SMEs. This is usually the longest phase.
Recommended prompts
Use one of these to do the work in your IDE
Open the template to read it in full. Click Copy prompt to grab it (with your stack values pre-filled where they apply) — then paste into Claude Code, Cursor, or wherever you build.
Recommended skills
Drop these into Claude Code for this phase
Skills auto-trigger on the right kind of request. Install once; they apply to every prompt that fits.
Recommended MCP configs
Wire these tools into Claude Code first
MCP servers give Claude Code direct access to external systems (Jira, browsers, databases). Configure once.
When you're done
Verify these in your own work before moving on
This is a checklist for you to mentally tick off in your repo and IDE — the site doesn't track it, you do.
- All in-scope programs have extracted rule catalogs
- Rules validated by business analysts
- SMEs signed off on critical-path rules
- Decision tables built for complex branching
- Calculation formulas with rounding rules documented
- Edge cases explicit
- Cross-program rule duplications identified (same rule, different implementations)
- Open questions tracked and assigned
Common pitfalls
What goes wrong at this step
- Trying to extract rules from all 800 programs in parallel — sequence by criticality; do the most important first
- Skipping business-analyst validation — unvalidated rules will produce a wrong rewrite
- Treating extraction as one-shot — iterative refinement is normal; budget for 2-3 passes
- Letting SMEs disengage — SME availability is your scarcest resource; lock in commitments
- Auto-extracted rules treated as final — tools miss context; human review is non-negotiable
- Missing the cross-program patterns — same rule may be implemented 5 different ways across the codebase