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

jcl-migration-analyzerjcl 迁移分析器

Agent Skill

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

总安装

349

周安装

15

GitHub Stars

10

下载量

122
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选相关信息。jcl-migration-analyzer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在关键词搜索或任务场景中快速定位候选结果。
  • 使用时需结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • 注意是否会触发联网、命令执行或文件读写操作。

SKILL.md

JCL Migration Analyzer

Analyzes legacy JCL scripts for migration to modern batch processing and workflow orchestration systems like Spring Batch, Apache Airflow, Kubernetes Jobs, or shell scripts.

Overview

This skill provides comprehensive analysis and migration planning for JCL (Job Control Language) batch processing systems. It extracts job structures, converts JCL constructs to modern workflow patterns, maps data dependencies, and generates implementation-ready migration strategies.

Key Migration Focus: JCL to modern orchestration with proper handling of COND logic inversion, data dependencies (DD statements), GDG generations, procedures (PROCs), and batch workflow patterns.

When to Use This Skill

Use this skill when:

  • Analyzing JCL job files (.jcl,.JCL) for modernization
  • Planning migration from mainframe batch processing to modern workflow systems
  • Converting JCL job steps to Spring Batch, Apache Airflow, or shell scripts
  • Understanding JCL COND logic and conditional execution patterns
  • Mapping JCL data sets (DD statements) to modern file operations
  • Extracting JCL procedures (PROCs) and symbolic parameters
  • Generating workflow definitions for orchestration platforms
  • Estimating complexity and effort for JCL migration projects
  • Creating migration documentation and strategy reports
  • Modernizing mainframe batch jobs to cloud-native workflows
  • User mentions: JCL analysis, mainframe job migration, batch workflow conversion, COND logic, job steps, procedures, workflow orchestration

Core Capabilities

1. Job Analysis

Extract job structure (JOB card), step sequences, program invocations (EXEC PGM/PROC), conditional logic (COND, IF/THEN/ELSE), return codes, data sets (DD statements), resource requirements, and symbolic parameters.

2. Data Dependency Mapping

Extract input/output datasets, temporary datasets, GDG handling, concatenation, DISP parameters, and data flow between steps.

3. Procedure Analysis

Parse PROC definitions, symbolic parameters, PROC overrides, nested procedures, INCLUDE statements, and JCLLIB references.

4. Workflow Migration

Generate Spring Batch jobs, Apache Airflow DAGs, Kubernetes Jobs, shell scripts, AWS Step Functions, or Azure Logic Apps.

5. Conditional Logic Translation

CRITICAL: COND logic is INVERTED! Map COND parameters, IF/THEN/ELSE, return codes, step bypassing, and restart logic to modern constructs.

Workflow

Step 1: Discover JCL Assets

Find JCL jobs and procedures in the workspace:

find . -name "*.jcl" -o -name "*.JCL"
find . -name "*.proc" -o -name "*.PROC"

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

Step 2: Extract Structure

Use scripts/extract-structure.py to parse JCL files and extract:

  • Job cards and parameters
  • Step sequences and execution order
  • Program/procedure invocations
  • DD statements with DISP parameters
  • COND and IF/THEN/ELSE logic
  • Symbolic parameters

Output format: JSON with job structure, steps, and dependencies.

Step 3: Analyze Conditional Logic

CRITICAL: Identify and document COND logic (which is INVERTED):

  • COND=(0,NE) → Run if previous RC ≠ 0 (run on ERROR)
  • COND=(0,EQ) → Skip if previous RC = 0 (skip on SUCCESS)
  • IF/THEN/ELSE uses normal logic (not inverted)

Create truth tables for complex conditional logic to avoid errors in migration.

Step 4: Map Data Dependencies

Track data flow between steps:

  • Input datasets (DISP=SHR or OLD)
  • Output datasets (DISP=NEW, CATLG)
  • Temporary datasets (&&TEMP)
  • GDG generations (GDG(0), GDG(+1))
  • Dataset concatenations

Step 5: Estimate Complexity

Use scripts/estimate-complexity.py to calculate migration complexity based on:

  • Number of job steps
  • Conditional logic complexity (COND/IF/THEN/ELSE)
  • Number of procedures (PROCs)
  • Data dependency complexity
  • Number of programs invoked
  • GDG usage patterns

Step 6: Choose Target Platform

Select migration target based on requirements:

  • Spring Batch: Java-based batch processing with comprehensive features
  • Apache Airflow: Python-based workflow orchestration with rich UI
  • Shell Scripts: Simple, lightweight for basic sequential processing
  • Kubernetes Jobs: Container-based batch processing
  • AWS Step Functions: Serverless workflow orchestration
  • Azure Logic Apps: Cloud-based workflow integration

Step 7: Generate Migration Strategy

Create comprehensive migration report with:

  1. Job Overview: Purpose, schedule, dependencies
  2. Step Sequence: Detailed breakdown of each step
  3. Data Flow Diagram: Input/output dependencies
  4. Conditional Logic Map: COND translations (with inversion notes)
  5. Target Implementation: Workflow definition in chosen platform
  6. Migration Estimate: Effort, complexity score, risk assessment
  7. Action Items: Prioritized tasks with acceptance criteria

Use template: assets/migration-report-template.md

Quick Reference

Critical: COND Logic is INVERTED

JCL COND (inverted):

//STEP020 EXEC PGM=PROG2,COND=(0,NE)

Means: "Run if previous RC ≠ 0" → Run on ERROR!

Modern (normal logic):

if [ $rc -ne 0 ]; then run_prog2; fi

JCL IF/THEN (normal logic):

//IF1 IF RC = 0 THEN
//STEP020 EXEC PGM=PROG2
//ENDIF

Modern:

if [ $rc -eq 0 ]; then run_prog2; fi

Code Patterns

Simple Sequential:

//STEP010 EXEC PGM=PROG1
//INPUT   DD DSN=INPUT.FILE,DISP=SHR
//OUTPUT  DD DSN=OUTPUT.FILE,DISP=(NEW,CATLG)
//STEP020 EXEC PGM=PROG2
//INPUT   DD DSN=OUTPUT.FILE,DISP=SHR
#!/bin/bash
set -e
prog1 --input="input.file" --output="output.file" || exit 8
prog2 --input="output.file" || exit 8

Conditional (COND - inverted!):

//STEP010 EXEC PGM=VALIDATE
//STEP020 EXEC PGM=PROCESS,COND=(0,NE)
validate_data
rc=$?
if [ $rc -ne 0 ]; then process_data; fi  # INVERTED!

IF/THEN/ELSE (normal logic):

//STEP010 EXEC PGM=VALIDATE
//IF1 IF RC = 0 THEN
//STEP020 EXEC PGM=PROCESSOK
//ELSE
//STEP030 EXEC PGM=PROCESSERR
//ENDIF
validate_data
rc=$?
if [ $rc -eq 0 ]; then processok; else processerr; fi

Procedure:

//MYPROC PROC MEMBER=,INFILE=
//STEP1  EXEC PGM=PROG1
//SYSIN  DD DSN=&MEMBER,DISP=SHR
//       PEND
function myproc() {
    prog1 --sysin="$1" --input="$2"
}
myproc "test.data" "prod.file"

Target Platforms

Spring Batch:

@Bean
public Job job() {
    return jobBuilderFactory.get("job")
        .start(step1()).next(step2())
        .on("FAILED").to(errorStep())
        .from(step2()).on("*").to(step3())
        .end().build();
}

Airflow DAG:

with DAG('job', schedule_interval='@daily') as dag:
    step1 = BashOperator(task_id='step1', bash_command='prog1.sh')
    step2 = BashOperator(task_id='step2', bash_command='prog2.sh')
    step1 >> step2

Key Patterns

Error Handling: COND-based → if [$rc -ne 0]; then error_handler; fi GDG: GDG(0)get_latest_generation, GDG(+1)create_new_generation Concatenation: Multiple DD → cat file1 file2 file3 | process Restart: COND restart → checkpoint files (touch.checkpoint_step)

Return Code Reference

RCMeaningAction
0SuccessContinue
4WarningContinue (informational)
8ErrorMay continue based on COND
12Severe ErrorTypically stop
16Fatal ErrorAbort job

Migration Checklist

  • Extract job structure, list steps in order, identify programs/procedures, document COND/IF logic
  • Map input/output datasets, identify temp datasets, document GDG usage, track data dependencies
  • Convert COND to normal logic (INVERT!), translate IF/THEN/ELSE, handle error paths
  • Choose target (Spring Batch/Airflow/shell), define job structure, implement steps, add monitoring
  • Test normal path, error conditions, conditional branches with production-like data
  • Document job purpose, schedule, dependencies, special requirements

Critical Tips

  1. COND is INVERTED - step runs when condition is FALSE! Draw truth tables if needed.
  2. Return codes: 0=success, 4=warning (OK), 8+=error
  3. Data dependencies: Carefully map to avoid race conditions
  4. Restart capability: Implement checkpointing if needed
  5. Monitoring: Add logging and alerting to modern workflows

Output Structure

Provide: Job overview, step sequence, data flow, conditional logic, migration target, workflow definition, migration estimate, action items.

Advanced Topics

For detailed conversion rules and patterns, see:

  • pseudocode-jcl-rules.md - Comprehensive JCL to pseudocode conversion rules including element mapping, return codes, DISP parameters, translation patterns, and COND logic handling
  • pseudocode-common-rules.md - Common pseudocode syntax and conventions applicable to all languages
  • testing-strategy.md - Comprehensive testing approach including unit tests, integration tests, parallel validation, and data-driven testing for migrated workflows
  • transaction-handling.md - Transaction management, rollback strategies, and ACID compliance for batch jobs
  • messaging-integration.md - Message queue integration patterns (MQ, JMS, Kafka) for event-driven workflows
  • performance-patterns.md - Batch processing optimization, memory management, parallel processing, and performance tuning

Tools and Scripts

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

  • analyze-dependencies.sh/ps1 - Generate dependency graph in JSON format showing job-to-job, job-to-dataset, and procedure dependencies
  • extract-structure.py - Parse JCL files and extract structure (job cards, steps, DD statements, COND logic) to JSON
  • generate-java-classes.py - Generate Java POJOs from data structures for Spring Batch item readers/writers
  • estimate-complexity.py - Calculate migration complexity score based on steps, conditional logic, procedures, and data dependencies

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

Integration

Works with job schedulers (Control-M, cron), workflow platforms (Spring Batch, Airflow, K8s), monitoring tools, version control, and CI/CD pipelines.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.32%
按下载量换算35

windsurf

26.06%
按下载量换算32

OpenCode

19.4%
按下载量换算24

Codex

12.23%
按下载量换算15

Antigravity

8.04%
按下载量换算10

Gemini CLI

3.9%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/dauquangthanh/hanoi-rainbow --skill jcl-migration-analyzer;npx skills add dauquangthanh/hanoi-rainbow --skill "jcl-migration-analyzer" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills