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

cobol-migration-analyzerCobol 迁移分析仪

Agent Skill

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

总安装

865

周安装

35

GitHub Stars

10

下载量

272
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

cobol-migration-analyzer 分析遗留 COBOL 程序与 JCL 脚本,生成 Java 迁移策略。

  • 提取业务逻辑、数据结构、文件定义与调用层次,识别迁移难点。
  • 输出模块化重构建议与等价性验证方案,降低现代化改造成本。
  • 需完整提供源代码与数据样本,缺失关键文件将影响分析准确性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

COBOL Migration Analyzer

Analyze legacy COBOL programs and JCL scripts for migration to Java. Extract business logic, data structures, and dependencies to generate actionable migration strategies.

Core Capabilities

1. COBOL Program Analysis

Extract COBOL divisions (IDENTIFICATION, ENVIRONMENT, DATA, PROCEDURE), Working-Storage variables, file definitions (FD), business logic paragraphs, PERFORM statements, CALL hierarchies, embedded SQL, and error handling patterns.

2. JCL Job Analysis

Parse JCL job steps, program invocations, data dependencies (DD statements), conditional logic (COND, IF/THEN/ELSE), return codes, and resource requirements.

3. Copybook Processing

Extract record layouts with level numbers, REDEFINES clauses, group items, OCCURS clauses, and picture clauses. Generate Java POJOs from copybook structures.

4. Dependency Mapping

Build complete dependency graphs showing CALL hierarchies, copybook usage, file dependencies, database table access, and shared utility references across the codebase.

Workflow

Step 1: Discover COBOL Assets

Find COBOL programs, JCL jobs, and copybooks:

find . -name "*.cbl" -o -name "*.CBL" -o -name "*.cob"
find . -name "*.jcl" -o -name "*.JCL"
find . -name "*.cpy" -o -name "*.CPY"

Use scripts/analyze-dependencies.sh or scripts/analyze-dependencies.ps1 to generate dependency graph.

Step 2: Extract Structure

Use scripts/extract-structure.py to parse COBOL programs and extract divisions, variables, paragraphs, and dependencies in JSON format.

Step 3: Generate Java Code

Use scripts/generate-java-classes.py to convert copybooks to Java POJOs with appropriate data types and Bean Validation annotations.

Step 4: Estimate Complexity

Use scripts/estimate-complexity.py to calculate migration complexity based on LOC, external calls, file operations, SQL statements, and control flow.

Step 5: Create Migration Strategy

Document program overview, dependencies, data structures, business logic patterns, proposed Java design, migration estimate, and action items.

Quick Reference

COBOL to Java Type Mapping

COBOL PictureJava TypeNotes
PIC 9(n)int, long, BigIntegerUnsigned numeric
PIC S9(n)int, long, BigIntegerSigned numeric
PIC 9(n)V9(m)BigDecimalUnsigned decimal
PIC S9(n)V9(m)BigDecimalSigned decimal
PIC S9(n)V9(m) COMP-3BigDecimalPacked decimal - critical precision!
PIC S9(n) COMP / BINARYint, longBinary storage
PIC S9(n) COMP-1floatSingle precision (avoid for financial)
PIC S9(n) COMP-2doubleDouble precision (avoid for financial)
PIC X(n)StringAlphanumeric/character
PIC A(n)StringAlphabetic only
PIC N(n)StringNational/Unicode
OCCURS nList<T> or T[]Fixed arrays/tables
OCCURS n DEPENDING ONList<T>Variable-length arrays
88 levelenum or constantsCondition names
INDEXintTable index (1-based in COBOL)

Common Pattern Conversions

  • File I/O: READ...AT ENDBufferedReader with try-with-resources or NIO streams
  • File updates: REWRITE → Update operations in DB or file systems
  • Table lookup: SEARCH → Linear search with streams
  • Binary search: SEARCH ALLCollections.binarySearch() or stream().filter().findFirst()
  • String operations: STRING/UNSTRINGStringBuilder or String.split()
  • Inspection: INSPECTString.replace(), replaceAll(), or regex
  • CALL statements: → Method calls or service invocations
  • EVALUATE: → switch statement (Java 14+ with enhanced switch)
  • Date arithmetic: FUNCTION INTEGER-OF-DATELocalDate operations
  • ACCEPT DATE/TIME: → LocalDate.now(), LocalTime.now()
  • Condition names (Level 88): → enum or typed constants
  • Computed GO TO: → Strategy pattern or switch statement
  • REDEFINES: → Union types, ByteBuffer views, or separate accessor classes
  • COPY statements: → Package imports or shared entity classes

Example: Copybook to Java POJO

COBOL Copybook:

01  EMPLOYEE-RECORD.
    05  EMP-ID        PIC 9(6).
    05  EMP-NAME      PIC X(30).
    05  EMP-SALARY    PIC S9(7)V99 COMP-3.

Generated Java:

public class EmployeeRecord {
    private int empId;
    private String empName;
    private BigDecimal empSalary;
    // getters/setters
}

Migration Considerations

Critical Patterns:

  1. ALWAYS use BigDecimal for COMP-3 and numeric with decimals (never float/double)
  2. Preserve precision: Use BigDecimal with exact scale for financial calculations
  3. 1-based indexing: Document that COBOL arrays start at 1, Java at 0
  4. Implicit conversions: Make COBOL's automatic numeric↔string conversions explicit
  5. REDEFINES: Model as union type, ByteBuffer overlay, or separate view classes
  6. Computed GO TO: Refactor to strategy pattern or switch statement
  7. ALTER statement: Refactor to structured control flow (if/while/switch)
  8. PERFORM THRU: Map to single method containing full paragraph range
  9. BY REFERENCE vs BY CONTENT: Document parameter passing semantics
  10. Test rigorously: Validate with production data samples, especially for COMP-3

Output Requirements:

  • Program overview and type classification
  • Complete dependency graph (CALL tree, copybooks, files, DB tables)
  • Data structure mapping (copybooks → Java classes)
  • Business logic summary (key paragraphs → methods)
  • Proposed Java architecture (services, repositories, entities)
  • Migration effort estimate (complexity score, LOC, risk factors)
  • Prioritized action items

Advanced Topics

For detailed conversion rules and patterns, see:

Tools and Scripts

All scripts support cross-platform execution (Windows PowerShell, bash):

  • analyze-dependencies.sh/ps1 - Generate dependency graph
  • extract-structure.py - Parse COBOL structure to JSON
  • generate-java-classes.py - Convert copybooks to Java POJOs
  • estimate-complexity.py - Calculate migration complexity score

Scripts use standard libraries only and output JSON for easy integration with CI/CD pipelines.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenCode

28.72%
按下载量换算78

Claude Code

22.34%
按下载量换算61

windsurf

19.95%
按下载量换算54

Cursor

15.06%
按下载量换算41

Codex

8.17%
按下载量换算22

Antigravity

4.13%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills