Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问clear审计通过

cobol-modernization科博尔现代化

Agent Skill

cobol-modernization 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,498

周安装

60

GitHub Stars

93

下载量

485
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:cobol-modernization(科博尔现代化)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/cobol-modernization
安装命令:
npx skills add https://github.com/letta-ai/skills --skill cobol-modernization
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill cobol-modernization

简介

cobol-modernization 系统化转换 COBOL 程序至现代语言并保持行为一致。

  • 重点解决固定宽度记录、字节级输出与嵌入式 SQL 的兼容性问题。
  • 分阶段实施:分析→文档化→翻译→验证,确保零回归风险。
  • 依赖详尽的 WORKING-STORAGE 与 FILE SECTION 定义,模糊描述可能导致错误映射。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

COBOL Modernization

Overview

This skill provides a systematic approach for converting COBOL programs to modern languages while ensuring exact behavioral equivalence. The key challenge in COBOL modernization is not just translating logic, but preserving precise data formats, fixed-width record structures, and byte-level output compatibility.

Workflow

Phase 1: Analysis and Documentation

Before writing any code, thoroughly analyze the COBOL source and data files:

  1. Read the complete COBOL source code - Understand the program structure including:

- WORKING-STORAGE SECTION for variable definitions and sizes - FILE SECTION for record layouts and field definitions - PROCEDURE DIVISION for business logic

  1. Document all data formats explicitly - Create a specification for each file:

- Record length (total bytes per record) - Field positions (starting byte, length) - Field types (numeric with COMP-3, alphanumeric, packed decimal) - Padding and alignment requirements

  1. Resolve format discrepancies before implementation - If input files don't match expected formats (e.g., file is 15 bytes but COBOL expects 22 bytes), investigate and document how the COBOL program actually handles this before proceeding.

Phase 2: Testing Harness Setup

Create reusable testing infrastructure before implementing the conversion:

  1. Create a state reset script - Automate restoring original data files: # Example: reset_state.sh cp data/ACCOUNTS.DAT.orig data/ACCOUNTS.DAT cp data/BOOKS.DAT.orig data/BOOKS.DAT cp data/TRANSACTIONS.DAT.orig data/TRANSACTIONS.DAT
  2. Create a comparison script - Automate output comparison: # Example: compare_outputs.sh diff data/ACCOUNTS_PYTHON.DAT data/ACCOUNTS_COBOL.DAT diff data/BOOKS_PYTHON.DAT data/BOOKS_COBOL.DAT diff data/TRANSACTIONS_PYTHON.DAT data/TRANSACTIONS_COBOL.DAT
  3. Preserve original COBOL outputs - Run the COBOL program first and save outputs as reference baselines before any conversion work.

Phase 3: Implementation

When writing the modern language equivalent:

  1. Match COBOL data handling exactly:

- Use fixed-width string formatting, not variable-length - Implement proper padding (spaces for alphanumeric, zeros for numeric) - Handle COBOL's implicit decimal points in numeric fields - Match COBOL's truncation behavior for oversized values

  1. Verify file writes immediately - After writing code files, read them back to confirm complete content was saved correctly before testing.
  2. Use consistent naming - Avoid creating excessive temporary files. Use a clear naming scheme:

- *_COBOL.DAT for COBOL program outputs - *_PYTHON.DAT for Python program outputs - Clean up between test iterations

Phase 4: Systematic Testing

Test all code paths, not just the happy path:

  1. Create a test matrix covering all validation scenarios:

- Valid transactions (success case) - Non-existent primary entities (buyer, seller, book, etc.) - Ownership/permission validation failures - Insufficient balance/resource conditions - Boundary conditions (zero balance, maximum values)

  1. Test each scenario independently:

- Reset state before each test - Run both COBOL and modern implementation - Compare outputs byte-for-byte using diff

  1. Document test results - Track which scenarios passed and any discrepancies found.

Common Pitfalls

Data Format Issues

  • Fixed-width fields: COBOL uses fixed-width fields padded with spaces or zeros. Modern languages default to variable-length strings.
  • Numeric formatting: COBOL's PIC 9(4)V99 means 4 digits, implied decimal, 2 decimal places - stored as 6 characters with no decimal point.
  • Record terminators: COBOL fixed-length records may not use line terminators. Verify whether newlines are expected.

Testing Mistakes

  • Incomplete edge case coverage: Testing only success and one failure case leaves validation paths untested.
  • Not verifying written code: Tool responses may be truncated. Always read back written files to confirm completeness.
  • State pollution: Running tests without resetting state causes cascading failures.

Process Inefficiencies

  • Repeating commands: Create shell scripts for operations performed more than twice.
  • Cluttered workspace: Create a consistent file naming scheme and clean up temporary files.
  • Unresolved discrepancies: If data formats don't match expectations, investigate fully before proceeding.

Verification Checklist

Before declaring the modernization complete:

  • All required output files are generated
  • All data files match COBOL output byte-for-byte (diff returns no output)
  • All validation paths have been tested (success + each failure type)
  • Boundary conditions have been verified
  • No temporary or debug files remain
  • Code has been read back to verify complete and correct content

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.97%
按下载量换算126

OpenCode

21.84%
按下载量换算106

Gemini CLI

18.87%
按下载量换算92

Antigravity

12.66%
按下载量换算61

windsurf

8.76%
按下载量换算42

Cursor

3.78%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills