rpg-migration-analyzer
Analyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
What this skill does
# RPG Migration Analyzer Analyzes legacy RPG programs (RPG III/IV/ILE) from AS/400 and IBM i systems for migration to modern Java applications, extracting business logic, data structures, file operations, and generating actionable migration strategies. ## Overview This skill provides comprehensive analysis and migration planning for RPG (Report Program Generator) applications. It extracts program specifications, converts RPG data types to Java equivalents, maps file operations to modern database access patterns, and generates implementation-ready Java code structures. **Key Migration Focus**: RPG to Java with proper handling of packed decimals (BigDecimal), data structures (POJOs), file operations (JPA/JDBC), indicators (boolean variables), and business logic preservation. ## When to Use This Skill Use this skill when: - Analyzing RPG source files (.rpg, .rpgle, .RPGLE) for modernization - Planning migration from AS/400 or IBM i systems to Java - Converting RPG data structures (D-specs) to Java classes - Mapping RPG file operations (F-specs) to database access patterns - Understanding RPG program dependencies and call chains - Generating Java code equivalents from RPG business logic - Estimating complexity and effort for RPG migration projects - Creating migration documentation and strategy reports - Modernizing legacy mainframe applications to microservices - User mentions: RPG analysis, AS/400 migration, IBM i modernization, Report Program Generator, packed decimal conversion ## Core Capabilities ### 1. Program Analysis Extract and analyze RPG program components: - **Specification types**: H-spec (header/control), F-spec (file definitions), D-spec (data definitions), C-spec (calculation/logic), P-spec (procedures) - **Data structures**: D-specs with nested structures, arrays (DIM), external references (EXTNAME), qualifiers (LIKEDS, QUALIFIED) - **File definitions**: Physical files, logical files, display files (WORKSTN), printer files - **Business logic**: Calculation specifications, control structures (IF/ELSE/DO/FOR), expressions (EVAL) - **Indicators**: Legacy indicators (*IN01-*IN99), built-in indicators (*INLR,*INOF) - **Built-in functions**: String functions (%SUBST, %TRIM, %SCAN), date functions (%DATE, %DAYS), math functions (%DEC, %INT), file status (%EOF, %FOUND, %ERROR) - **Error handling**: %ERROR, %STATUS, ON-ERROR blocks ### 2. Data Structure Mapping Convert RPG data definitions to Java equivalents: - **D-spec conversion**: Data structure definitions to Java classes (POJOs) - **Data type mapping**: - Packed decimal (P) → `BigDecimal` (preserve precision) - Zoned decimal (S) → `BigDecimal` (decimal with sign) - Character (A) → `String` - Date (D) → `LocalDate` - Time (T) → `LocalTime` - Timestamp (Z) → `LocalDateTime` - Indicator (N) → `boolean` - Binary integer (I) → `int` or `long` - **Arrays (DIM)**: Convert to Java `List<T>` or arrays `T[]` - **Nested data structures**: Convert LIKEDS to nested Java classes - **External data structures (EXTNAME)**: Generate JPA entities from database table definitions - **Initialization (INZ)**: Map to Java field initializers or constructors ### 3. File Operations Parse and convert RPG file I/O to modern database access: - **File types**: Physical files (DISK), logical files (keyed access), display files (WORKSTN), printer files (PRINTER) - **Access methods**: Sequential (full read), keyed (direct access by key), arrival sequence - **I/O operations**: - READ/READE → JPA query methods, JDBC ResultSet iteration - WRITE → JPA persist(), JDBC INSERT - UPDATE → JPA merge(), JDBC UPDATE - DELETE → JPA remove(), JDBC DELETE - CHAIN → JPA findById(), Optional pattern - SETLL/READE loop → JPA findBy...() queries with ordering - **File status**: %EOF (end of file), %FOUND (record found), %ERROR (I/O error) → Java exceptions or Optional - **Transaction boundaries**: Identify commit boundaries (COMMIT operation code) ### 4. Java Migration Strategy Generate modern Java implementation patterns: - **POJOs**: Plain Old Java Objects from D-spec data structures - **JPA Entities**: @Entity annotations for database tables (from EXTNAME files) - **Repository pattern**: Spring Data JPA repositories for file operations - **Service methods**: Business logic from procedures and subroutines - **Bean Validation**: @NotNull, @Size, @DecimalMin/Max from RPG field validations - **Exception handling**: Convert %ERROR patterns to try-catch blocks with custom exceptions - **Collections**: Java Collections API (List, Map, Set) from RPG arrays and data structures - **DTOs**: Data Transfer Objects for service boundaries - **Transaction management**: @Transactional annotations for commit boundaries ### 5. Dependency Analysis Map program relationships and external dependencies: - **Program calls**: CALLB (bound procedure calls), CALLP (prototyped procedure calls) - **Service programs**: BNDDIR (binding directories), *SRVPGM objects - **File dependencies**: All physical/logical files accessed by the program - **Database tables**: DB2 for i tables referenced (EXTNAME) - **/COPY members**: Include files, copy source members, prototypes - **Call chains**: Identify calling programs and called programs - **Shared data areas**: *DTAARA usage - **Message queues**: QMHSNDPM (send program message) ## Instructions Follow these steps to analyze and migrate RPG programs to Java: ### Step 1: Locate RPG Source Files Find RPG source files (.rpg, .rpgle, .RPGLE extensions for RPG III/IV/ILE free-format). ```bash find . -name "*.rpg" -o -name "*.rpgle" -o -name "*.RPGLE" ``` ### Step 2: Analyze Program Structure Extract specifications (H, F, D, C, P), data structures, file definitions, procedures, and dependencies. **Automation**: Run `scripts/extract-structure.py` for automated extraction. ### Step 3: Map Data Types Convert RPG to Java types - **CRITICAL**: Always use `BigDecimal` for packed/zoned decimals (never float/double). | RPG Type | Java Type | Key Notes | |----------|-----------|-----------| | `nP m` (packed) | `BigDecimal` | **MUST** preserve precision | | `nS m` (zoned) | `BigDecimal` | Decimal with sign | | `A` (char) | `String` | Character data | | `D/T/Z` (date/time) | `LocalDate/LocalTime/LocalDateTime` | Date fields | | `N` (indicator) | `boolean` | True/False flags | | `I` (integer) | `int` or `long` | Binary integer | | `DIM(n)` (array) | `List<T>` or `T[]` | Arrays | ### Step 4: Convert Code Patterns Transform RPG operations to Java - key conversions: - **Calculations**: EVAL expressions → BigDecimal arithmetic methods - **File I/O**: CHAIN → `findById()` with Optional, READ → query methods - **Arrays**: Adjust 1-based (RPG) to 0-based (Java) indexing - **Strings**: %SUBST(1-based) → substring(0-based) - **Indicators**: *IN01 → named boolean variables See [pseudocode-rpg-rules.md](references/pseudocode-rpg-rules.md) for comprehensive conversion patterns. ### Step 5: Generate Java Implementation Create: 1. POJOs from D-spec data structures (`scripts/generate-java-classes.py`) 2. JPA entities for database tables 3. Repository interfaces (Spring Data JPA) 4. Service methods for business logic 5. Exception handling and validation ### Step 6: Analyze Dependencies Map program calls (CALLB/CALLP), file dependencies, /COPY members, service programs. **Automation**: Run `scripts/analyze-dependencies.sh` or `.ps1` ### Step 7: Create Migration Report Generate documentation with program overview, dependencies, data mappings, Java design, and complexity estimate. **Template**: Use `assets/migration-report-template.md` ### Step 8: Validate and Test Verify: BigDecimal usage, index adjustments, transaction boundaries, error handling, unit tests with AS/400 data samples. ## Quick Reference ### Critical Migration Rules 1. **ALWAYS use BigDecimal** for RPG packed (P) and zoned (S) decimals - never float/double 2. **Adjust indexing**: RPG uses 1-based arrays/strings, Java
Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".
composing-html
IncludedComposes single-file HTML artifacts (PR review writeups, status reports, incident postmortems, slide decks, design systems, prototypes, flowcharts, module maps, feature explainers, kanban boards, prompt tuners) from a small JSON spec instead of hand-written HTML/CSS/JS. Use when the user asks to "compare options side-by-side", requests an HTML version of a report or review or deck, asks for a flowchart, status update, postmortem, design system reference, interactive prototype, custom editor — or explicitly says "HTML artifact", "single HTML file", "self-contained HTML". Skip for ad-hoc HTML snippets (forms, emails, embedded widgets) where there's no template fit.