{"id":51145215,"url":"https://github.com/magnexis/cobolx","last_synced_at":"2026-06-26T02:03:50.401Z","repository":{"id":364414492,"uuid":"1208162749","full_name":"magnexis/cobolx","owner":"magnexis","description":"COBOL-X is a modern COBOL-inspired programming platform for readable business logic, deterministic tooling, and backend-oriented workflows. This repository ships a TypeScript-based compiler toolchain, runtime, package manager layer, editor integration, and release validation flow.","archived":false,"fork":false,"pushed_at":"2026-06-25T22:07:53.000Z","size":191,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-25T23:04:26.157Z","etag":null,"topics":["cobol-language","javascript","modernized","programming-language","release","typescript","vscode-extension"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/magnexis.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-11T22:47:56.000Z","updated_at":"2026-06-25T22:07:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/magnexis/cobolx","commit_stats":null,"previous_names":["magnexis/cobolx"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/magnexis/cobolx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magnexis%2Fcobolx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magnexis%2Fcobolx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magnexis%2Fcobolx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magnexis%2Fcobolx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magnexis","download_url":"https://codeload.github.com/magnexis/cobolx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magnexis%2Fcobolx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34799572,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-26T02:00:06.560Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cobol-language","javascript","modernized","programming-language","release","typescript","vscode-extension"],"created_at":"2026-06-26T02:03:47.870Z","updated_at":"2026-06-26T02:03:50.392Z","avatar_url":"https://github.com/magnexis.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# COBOL-X\n\n[![Build](https://img.shields.io/badge/build-passing-brightgreen)](#development)\n[![Version](https://img.shields.io/badge/version-1.0.0-blue)](#release)\n[![VS Code Extension](https://img.shields.io/badge/vscode_extension-1.2.0-007acc)](#vs-code-extension)\n[![License](https://img.shields.io/badge/license-MIT-black)](./LICENSE)\n[![npm](https://img.shields.io/npm/v/cobolx-2)](https://www.npmjs.com/package/cobolx-2)\n\nCOBOL-X is a modern COBOL-inspired programming platform for readable business logic, deterministic tooling, and backend-oriented workflows. This repository ships a TypeScript-based compiler toolchain, runtime, package manager layer, editor integration, and release validation flow.\n\n## Features\n\n- Working compiler pipeline with lexer, parser, AST, semantic analysis, HIR, MIR, optimization, and JavaScript backend emission\n- CLI workflows for build, run, check, test, bench, debug, dev, docs, code generation, migrations, visualization, deploy, and package management\n- CargoX manifest, dependency graph, lockfile, install, update, and local publish support\n- Runtime modules for scheduling, actors, events, distributed service discovery, observability, workflows, self-healing, and versioned state\n- Time-travel debugging support with trace recording and rewind playback\n- LSP and VS Code extension support for `.cbx`, `.cob`, and `.col`\n\n## Installation\n\n```bash\nnpm install cobolx-2\n```\n\n### Build from source\n\n```powershell\nnpm install\nnpm run build\nnpm run validate\n```\n\nHelper scripts are available in [install.ps1](/c:/Users/matth/Desktop/temp%20folder/install.ps1) and [install.sh](/c:/Users/matth/Desktop/temp%20folder/install.sh).\n\n## Quick Start\n\n```powershell\nnode cli/cobolx-cli/dist/index.js new my-service api\ncd my-service\nnode ..\\cli\\cobolx-cli\\dist\\index.js add ledger 1.2.3\nnode ..\\cli\\cobolx-cli\\dist\\index.js install\nnode ..\\cli\\cobolx-cli\\dist\\index.js run\nnode ..\\cli\\cobolx-cli\\dist\\index.js debug --rewind\n```\n\n## COBOL-X Example\n\n```cbx\nPROGRAM Payments\n\nENUM Result:\nOK(value)\nERR(message)\nEND\n\nFUNCTION add(left, right)\nBEGIN\n  RETURN left + right\nEND-FUNCTION\n\nBEGIN\n  LET subtotal = add(20, 22)\n  DISPLAY subtotal\nEND\n```\n\n## Repository Layout\n\n```text\ncobolx/\n├── compiler/\n├── runtime/\n├── stdlib/\n├── cli/\n├── cargox/\n├── lsp/\n├── vscode-extension/\n├── formatter/\n├── linter/\n├── debugger/\n├── profiler/\n├── examples/\n├── tests/\n├── benchmarks/\n├── docs/\n├── LICENSE\n├── CONTRIBUTING.md\n├── CHANGELOG.md\n└── .gitignore\n```\n\n## CLI\n\n- `cobolx build`\n- `cobolx run`\n- `cobolx check`\n- `cobolx test`\n- `cobolx bench`\n- `cobolx add \u003cpkg\u003e \u003cversion\u003e`\n- `cobolx install`\n- `cobolx update`\n- `cobolx publish`\n- `cobolx dev`\n- `cobolx doc`\n- `cobolx repl`\n- `cobolx visualize`\n- `cobolx deploy`\n\n## VS Code Extension\n\nThe publishable extension lives in [vscode-extension](/c:/Users/matth/Desktop/temp%20folder/vscode-extension:1). It includes language registration, syntax highlighting, snippets, LSP-backed diagnostics/hover/completions, and VS Code commands for run, build, REPL, and debug.\n\nVS Code Marketplace:\n\n- [Marketplace Listing Placeholder](https://marketplace.visualstudio.com/items?itemName=magnificent-language.cobolx)\n\nPackaging flow:\n\n```powershell\ncd vscode-extension\nnpm install -g vsce\nnpx @vscode/vsce package\nvsce login Magnexis\nvsce publish\n```\n\n## Examples\n\nRunnable example apps live under [examples](/c:/Users/matth/Desktop/temp%20folder/examples:1):\n\n- [examples/api-server](/c:/Users/matth/Desktop/temp%20folder/examples/api-server:1)\n- [examples/distributed-system](/c:/Users/matth/Desktop/temp%20folder/examples/distributed-system:1)\n- [examples/workflow-engine](/c:/Users/matth/Desktop/temp%20folder/examples/workflow-engine:1)\n- [examples/event-system](/c:/Users/matth/Desktop/temp%20folder/examples/event-system:1)\n- [examples/parallel-processing](/c:/Users/matth/Desktop/temp%20folder/examples/parallel-processing:1)\n- [examples/debugging-demo](/c:/Users/matth/Desktop/temp%20folder/examples/debugging-demo:1)\n\nScreenshots:\n\n- `docs/screenshots/cli-build.png`\n- `docs/screenshots/debug-rewind.png`\n- `docs/screenshots/vscode-extension.png`\n\n## Development\n\n```powershell\nnpm install\nnpm run build\nnpm run check\nnpm run test\nnpm run validate\n```\n\nFurther reading:\n\n- [docs/architecture.md](/c:/Users/matth/Desktop/temp%20folder/docs/architecture.md)\n- [docs/language-spec.md](/c:/Users/matth/Desktop/temp%20folder/docs/language-spec.md)\n- [docs/cli.md](/c:/Users/matth/Desktop/temp%20folder/docs/cli.md)\n- [docs/runtime.md](/c:/Users/matth/Desktop/temp%20folder/docs/runtime.md)\n- [docs/tooling.md](/c:/Users/matth/Desktop/temp%20folder/docs/tooling.md)\n- [docs/packages.md](/c:/Users/matth/Desktop/temp%20folder/docs/packages.md)\n- [docs/platform-systems.md](/c:/Users/matth/Desktop/temp%20folder/docs/platform-systems.md)\n- [docs/vscode-extension.md](/c:/Users/matth/Desktop/temp%20folder/docs/vscode-extension.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagnexis%2Fcobolx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagnexis%2Fcobolx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagnexis%2Fcobolx/lists"}