Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

rpg-migration-analyzerrpg 迁移分析器

Agent Skill

rpg-migration-analyzer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

559

周安装

24

GitHub Stars

10

下载量

196
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:rpg-migration-analyzer(rpg 迁移分析器)
来源仓库:https://github.com/dauquangthanh/hanoi-rainbow
仓库路径:skills/rpg-migration-analyzer
安装命令:
npx skills add https://github.com/dauquangthanh/hanoi-rainbow --skill rpg-migration-analyzer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/dauquangthanh/hanoi-rainbow --skill rpg-migration-analyzer

简介

rpg-migration-analyzer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,需确认权限范围和维护状态。
  • 使用前建议检查是否会触发联网、命令执行或文件读写等敏感操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

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).

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 TypeJava TypeKey Notes
nP m (packed)BigDecimalMUST preserve precision
nS m (zoned)BigDecimalDecimal with sign
A (char)StringCharacter data
D/T/Z (date/time)LocalDate/LocalTime/LocalDateTimeDate fields
N (indicator)booleanTrue/False flags
I (integer)int or longBinary 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 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 uses 0-based
  3. Replace indicators: Convert *IN01-*IN99 to descriptive boolean variables
  4. File operations: CHAIN → findById(), READ → query methods with Optional
  5. String functions: %SUBST(1:10) → substring(0, 10) - adjust positions
  6. Date operations: RPG date functions → LocalDate/LocalTime API
  7. Transactions: Identify COMMIT operations → @Transactional annotations
  8. Error handling: %ERROR/%STATUS → try-catch with custom exceptions

Example: Data Structure to Java Class

RPG D-spec:

D Employee   DS
D   EmpId             6  0
D   EmpName          30  A
D   Salary           63  2P

Java POJO:

public class Employee {
    private int empId;
    private String empName;
    private BigDecimal salary;  // 6 digits, 2 decimals
    // getters/setters
}

Example: File Operation Conversion

RPG CHAIN:

C     custId  CHAIN  CUSTFILE
C             IF     %FOUND(CUSTFILE)

Java with JPA:

customerRepository.findById(custId).ifPresent(customer -> {
    // process customer
});
// Service usage
public class CustomerService {
    @Autowired
    private CustomerRepository customerRepository;

    public Optional<Customer> findCustomer(Integer custId) {
        return customerRepository.findById(custId);
    }
}

Edge Cases

Case 1: Packed Decimal Precision

Problem: Using double/float causes precision errors. Solution: Always use BigDecimal from String literals: new BigDecimal("123.45")

Case 2: Array Index Shift

Problem: RPG 1-based, Java 0-based. Solution: Adjust all array/string index references. Test thoroughly.

Case 3: External Data Structures

Problem: EXTNAME without DDL source. Solution: Use DSPFFD command, query DB2 SYSTABLES/SYSCOLUMNS, or create entities from runtime data.

Case 4: Legacy Indicators

Problem: *IN01-*IN99 for control flow. Solution: Replace with descriptive booleans: boolean invalidAmount = false;

Case 5: Date Century Handling

Problem: 2-digit years (Y2K). Solution: Use 4-digit LocalDate, apply century window logic, document assumptions.

Guidelines

  1. BigDecimal mandatory: Never float/double for packed/zoned decimals
  2. Named booleans: Replace *IN01-99 with descriptive names
  3. Database access: Map file I/O to JPA/JDBC operations
  4. JPA entities: Create from EXTNAME physical file definitions
  5. Exception handling: Convert %ERROR/%FOUND to exceptions/Optional
  6. Test with AS/400 data: Validate with actual legacy system data
  7. Transactions: Identify COMMIT operations → @Transactional
  8. Document rules: Extract and document implicit business logic
  9. Character encoding: Verify EBCDIC → Unicode conversions
  10. Batch processing: Convert batch jobs to Spring Batch framework

Error Handling

Type 1: File I/O Errors

Detection: %ERROR or %STATUS checks. Handling: Use try-catch with custom exceptions (CustomerNotFoundException, DataAccessException)

Type 2: Arithmetic Overflow

Detection: Insufficient field size. Handling: BigDecimal with appropriate scale/precision, catch ArithmeticException

Type 3: Missing Dependencies

Detection: Missing /COPY members. Handling: Track all includes, create shared interfaces, use Maven/Gradle dependencies

Additional Resources

See detailed documentation in the references/ directory:

RPG Translation Rules (Organized by Topic)

The RPG translation rules are organized into focused, topic-specific files for easier navigation:

Other Reference Documentation

Scripts

Python and shell scripts for automated analysis in scripts/:

  • analyze-dependencies.sh/ps1 - Scans RPG source for CALLB, CALLP, /COPY; generates dependency graph
  • extract-structure.py - Parses RPG specs (H, F, D, C, P); outputs structured JSON
  • generate-java-classes.py - Creates Java POJOs from RPG data structures with proper types
  • estimate-complexity.py - Calculates migration complexity score and effort estimate

Templates

analyze-dependencies.sh /.ps1

  • Scans RPG source files for CALLB, CALLP, /COPY references
  • Generates dependency graph in JSON format
  • Identifies circular dependencies

Usage:

./scripts/analyze-dependencies.sh /path/to/rpg/source

extract-structure.py

  • Extracts program structure (H/F/D/C/P specs)
  • Lists all variables, data structures, files
  • Identifies subroutines and procedures
  • Outputs JSON structure file

Usage:

python scripts/extract-structure.py PROGRAM.rpgle --output structure.json

generate-java-classes.py

  • Generates Java POJO classes from RPG data structures
  • Creates proper field types (BigDecimal for packed decimals)
  • Adds getters, setters, constructors
  • Generates Bean Validation annotations

Usage:

python scripts/generate-java-classes.py structure.json --output-dir ./src/main/java

estimate-complexity.py

  • Calculates migration complexity score
  • Analyzes LOC, dependencies, file operations
  • Provides effort estimate (hours/days)
  • Generates priority ranking

Usage:

python scripts/estimate-complexity.py structure.json --report complexity-report.md

Templates

Use the migration report template for consistent documentation:

Integration with Development Tools

This skill integrates with various development and analysis tools:

IBM i / AS/400 Tools

  • Source Entry Utility (SEU): Extract source code from AS/400
  • Programming Development Manager (PDM): Access member lists and source files
  • WRKMBRPDM: Work with source members
  • DSPFFD: Display file field descriptions for database structure analysis
  • DSPPGMREF: Display program references and dependencies

Database Tools

  • DB2 for i: Query system catalogs (SYSTABLES, SYSCOLUMNS) for metadata
  • IBM Data Studio: Visual database design and SQL development
  • DBeaver: Universal database tool with DB2 support

Modern Development Environment

  • IntelliJ IDEA: Java development with Spring Boot support
  • Eclipse: Java IDE with JPA tooling
  • VS Code: Lightweight editor with Java extensions
  • Git: Version control for both legacy source and new Java code

Migration Support Tools

  • Spring Initializr: Bootstrap Spring Boot projects
  • JPA Buddy: IntelliJ plugin for JPA entity generation
  • Liquibase/Flyway: Database migration version control
  • Maven/Gradle: Build automation and dependency management

Testing and Validation

  • JUnit 5: Unit testing framework
  • Spring Boot Test: Integration testing support
  • Mockito: Mocking framework for unit tests
  • TestContainers: Database integration testing with containers

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

25.73%
按下载量换算50

OpenCode

23.45%
按下载量换算46

Codex

17.02%
按下载量换算33

windsurf

11.86%
按下载量换算23

Antigravity

8.26%
按下载量换算16

Gemini CLI

3.41%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills