frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Launch HN: Hypercubic (YC F25) – AI for COBOL and Mainframes

https://www.hypercubic.ai/
36•sai18•2h ago
Hi HN, we’re Sai and Aayush and we’re building Hypercubic (https://www.hypercubic.ai/)!

Hypercubic is an AI platform that helps Fortune 500 companies understand, preserve, and modernize their mainframe systems. These are the systems that run COBOL from the 1960s that still quietly power banking, insurance, airlines, and governments today.

70% of the Fortune 500 still run on mainframes, but the engineers who built and maintained them are retiring. Today, the average age of a COBOL/mainframe engineer is about 55 and rapidly increasing. What’s left behind are opaque, black box systems with almost no one who understands how they work. Modernization projects often fail, documentation is decades out of date, and critical institutional knowledge lives only in the minds of a few senior subject matter experts who are now leaving the workforce.

Current “AI for code” tools focus on codebases and repositories, so they miss the unwritten rules, historical context, and architectural reasoning that live in human minds. In the COBOL/mainframe world, that institutional knowledge is the key missing piece.

What we heard from modernization leaders is that the hard part is not the code analysis. The challenge is the institutional knowledge that never made it into code or documentation and has walked out the door. Modernization projects fail not because no one can parse COBOL, but because no one can answer “why was this billing edge case added in 1995 and what breaks if we remove it.”

Hypercubic is building an AI-native maintenance and modernization platform that learns how legacy mainframe systems actually work and captures the human reasoning behind operating them. We’re doing this with two initial tools, HyperDocs and HyperTwin.

HyperDocs ingests COBOL, JCL, and PL/I codebases to generate documentation, architecture diagrams, and dependency graphs. Enterprises currently spend months or years hiring contractors to reverse-engineer these systems; HyperDocs compresses that work to take much less time.

COBOL was designed to resemble English and business prose, making it a good fit for LLMs today. Mainframes have decades of consistent patterns (COBOL, JCL, CICS, batch jobs) and a finite set of recurring tasks (such as payroll, transaction processing, billing).

For example, here’s a billing fragment that would be run nightly in production at large insurance companies for moving money, closing accounts, and triggering downstream reports:

  EVALUATE TRUE
      WHEN PAYMENT-DUE AND NOT PAID
          PERFORM CALCULATE-LATE-FEE
          PERFORM GENERATE-NOTICE
      WHEN PAYMENT-RECEIVED AND BALANCE-DUE = 0
          MOVE "ACCOUNT CLEAR" TO STATUS
          PERFORM ARCHIVE-STATEMENT
      WHEN OTHER
          PERFORM LOG-ANOMALY
  END-EVALUATE.
Now imagine thousands of these rules, each running payrolls, processing claims, or reconciling accounts, spread across millions of lines of code written over 40+ years. HyperDocs ingests that code and reconstructs it into readable, living documentation that shows how the black box system works.

Our other tool, HyperTwin, tackles the “tribal knowledge” problem. It learns directly from subject-matter experts, observing workflows, analyzing screen interactions, and conducting AI-driven interviews to capture how they debug and reason about their systems. The goal is to build digital “twins” of the experts on how they debug, architect, and maintain these systems in practice.

Together, HyperDocs and HyperTwin form a knowledge graph of legacy systems linking code, systems, and human reasoning.

Here’s a demo video of our HyperTwin product: https://www.youtube.com/watch?v=C-tNtl9Z_jY

You can explore our documentation platform, including examples from the AWS Card Demo (a widely used COBOL codebase example) and a dummy insurance project here: https://hyperdocs-public.onrender.com/.

e.g. Developer perspective docs - High level system architecture of credit card management: https://hyperdocs-public.onrender.com/docs/aws-carddemo-with...

We’re curious to hear your thoughts and feedback, especially from anyone who’s worked with mainframes or tried to modernize legacy systems.

Comments

jclay•1h ago
Exciting work! I’ve often wondered if an LLM with the right harness could restore and optimize an aging C/C++ codebase. It would be quite compelling to get an old game engine running again on a modern system.

I would expect most of these systems come with very carefully guarded access controls. It also strikes me as a uniquely difficult challenge to track down the decision maker who is willing to take the risk on revamping these systems (AI or not). Curious to hear more about what you’ve learned here.

Also curious to hear how LLMs perform on a language like COBOL that likely doesn’t have many quality samples in the training data.

sai18•1h ago
Thank you!

The decision makers we work with are typically modernization leaders and mainframe owners — usually director or VP level and above. There are a few major tailwinds helping us get into these enterprises:

1. The SMEs who understand these systems are retiring, so every year that passes makes the systems more opaque.

2. There’s intense top-down pressure across Fortune 500s to adopt AI initiatives.

3. Many of these companies are paying IBM 7–9 figures annually just to keep their mainframes running.

Modernization has always been a priority, but the perceived risk was enormous. With today’s LLMs, we’re finally able to reduce that risk in a meaningful way and make modernization feasible at scale.

You’re absolutely right about COBOL’s limited presence in training data compared to languages like Java or Python. Given COBOL is highly structured and readable, the current reasoning models get us to an acceptable level of performance where it's now valuable to use them for these tasks. For near-perfect accuracy (95%+), that is where we see an large opportunity to build domain-specific frontier models purpose built for these legacy systems.

mkoubaa•1h ago
I'm excited for you but nervous about the kinds of bugs that might get caused
sai18•1h ago
Given how far back these systems go, the real challenge isn’t just the code or the lack of documentation, but the tribal knowledge baked into them. A lot of the critical logic lives in conventions, naming patterns, and unwritten rules that only long-time SMEs understand.

Using AI and a few different modalities of information that exist about these systems (existing code, docs, AI-driven interviews, and workflow capture), we can triangulate and extract that tribal knowledge out.

zurfer•1h ago
I heard the story once on how you migrate these old systems: 1 you get a super extensive test suite of input - output pairs

2 you do a "line by line" reimplementation in Java (well banks like it).

3 you run the test suite and track your progress

4 when you get to 100 percent, you send the same traffic to both systems and shadow run the new implementation. Depending on how that goes you either give up, go back to work implementation or finally switch to the new system

This obviously is super expensive and slow to minimize any sort of risks for systems that usually handle billions or trillions of dollars.

aayn•1h ago
Yeah, we've heard the same "big bang" story a bunch of times as well. However, step 1 (extensive test suite) is often missing and is something you'd have to do as part of the modernization effort as well. Overall, it is a pretty hairy and difficult problem.
1970-01-01•1h ago
This is weird. Mainframes are the dinosaurs of tech. Never would I think, 'let's add some AI' to a mainframe. It would be like adding opposable thumbs to dinosaurs. You are still solving the wrong problem, but it sure will be interesting watching the systems cope.
koolba•56m ago
IIUC, what's being solved here is not the mainframe, it's the lack of knowledge transfer of what the heck that software is doing and how it works. Anything that drives down the cost of answering those types of questions, whether for debugging or replacing, is going to be worth a lot to the dinosaurs running these systems.
sai18•46m ago
Looks like it's already been pointed out. We’re not applying AI to these systems — IBM is already pursuing those initiatives (https://research.ibm.com/blog/spyre-for-z).

Our focus is different: we’re using AI to understand these 40+ year-old black box systems and capture the knowledge of the SMEs who built and maintain them before they retire. There simply aren’t enough engineers left who can fully understand or maintain these systems, let alone modernize them.

The COBOL talent shortage has already been a challenge for many decades now, and it’s only becoming more severe.

koolba•53m ago
Neat stuff. For more esoteric environments that could use this type of automated leg up, check out MUMPS: https://en.wikipedia.org/wiki/MUMPS

There's a bunch of mainly legacy hospital and government (primarily VA) systems that run on it. And where there's big government systems, there's big government dollars.

sai18•38m ago
Thanks for sharing. It seems MUMPS is just as old and legacy as some of the COBOL systems!
gregsadetsky•34m ago
I submitted this [0] story a few weeks ago, which led to some discussion and then being flagged since (I think) people were unsure of how verifiable the stats around COBOL were (the submitted page had more than a tinge of self-promotional language).

I was curious to ask you, as domain experts, if you could talk more to the "70% of the Fortune 500 still run on mainframes" stat you mentioned.

Where do these numbers come from? And also, does it mean that those 70% of Fortune 500s literally run/maintain 1k-1M+ LoC of COBOL? Or do these companies depend on a few downstream specialized providers (financial, aviation/logistics, etc.) which do rely on COBOL?

Like, is it COBOL all the way down, or is everything built in different ways, but basically on top of 3 companies, and those 3 companies are mostly doing COBOL?

Thanks!

[0] https://news.ycombinator.com/item?id=45644205

le-mark•33m ago
I’ve witnessed two legacy migration projects, both failed. One was a source translation to Java, this one failed because they didn’t have the expertise to manage production Java applications and pulled the plug. The other was a rewrite that went over budget and was cancelled.

> HyperDocs ingests COBOL, JCL, and PL/I codebases to generate documentation, architecture diagrams, and dependency graphs.

Lots of tools available that do this already without AI.

> The goal is to build digital “twins” of the experts on how they debug, architect, and maintain these systems in practice.

That will be a neat trick, will the output be more than sparsely populated wiki?

My experience is there’s not a lot of Will or money to follow these things through.

Edit to add there was a lot of work around business rule extraction, automatic documentation, and static analysis of mainframe systems in 90s leading up to Y2K, but it all fizzled out after that. You all should search the literature if you haven’t.

cess11•15m ago
All I can think about when reading this presentation is that Glamorous Toolkit pretty much has this and more.

Unexpected things that are people

https://bengoldhaber.substack.com/p/unexpected-things-that-are-people
137•lindowe•2h ago•64 comments

Asus Ascent GX10

https://www.asus.com/networking-iot-servers/desktop-ai-supercomputer/ultra-small-ai-supercomputer...
130•jimexp69•2h ago•114 comments

Launch HN: Hypercubic (YC F25) – AI for COBOL and Mainframes

https://www.hypercubic.ai/
36•sai18•2h ago•14 comments

Think Weirder: The Year's Best SciFi Ideas

https://thinkweirder.com
52•mooreds•1w ago•31 comments

Benchmarking leading AI agents against Google reCAPTCHA v2

https://research.roundtable.ai/captcha-benchmarking/
31•mdahardy•2h ago•26 comments

Interesting SPI Routing with iCE40 FPGAs

https://danielmangum.com/posts/spi-routing-ice40-fpga/
71•hasheddan•5h ago•5 comments

Pose Animator – An open source tool to bring SVG characters to life (2020)

https://blog.tensorflow.org/2020/05/pose-animator-open-source-tool-to-bring-svg-characters-to-lif...
89•jerlendds•6d ago•9 comments

Cops Can Get Your Private Online Data

https://www.eff.org/deeplinks/2025/06/how-cops-can-get-your-private-online-data
136•jamesgill•2h ago•34 comments

LLMs are steroids for your Dunning-Kruger

https://bytesauna.com/post/dunning-kruger
118•gridentio•3h ago•82 comments

Time to start de-Appling

https://heatherburns.tech/2025/11/10/time-to-start-de-appling/
162•msangi•3h ago•124 comments

Steven Heller's Font of the Month: Archive Matrix

https://ilovetypography.com/2025/11/07/steven-hellers-font-of-the-month-archive-matrix/
40•baruchel•5h ago•3 comments

Staying opinionated as you grow

https://hugo.writizzy.com/being-opinionated/57a0fa35-1afc-4824-8d42-3bce26e94ade
59•hlassiege•5d ago•31 comments

Zig and the design choices within

https://blueberrywren.dev/blog/on-zig/
63•lerno•3h ago•30 comments

Reminder to passengers ahead of move to 100% digital boarding passes

https://corporate.ryanair.com/news/ryanair-issues-reminder-to-passengers-ahead-of-move-to-100-dig...
50•teekert•3h ago•132 comments

ClickHouse acquires LibreChat, open-source AI chat platform

https://clickhouse.com/blog/librechat-open-source-agentic-data-stack
49•samaysharma•2h ago•16 comments

Installing and using HP-UX 9

https://thejpster.org.uk/blog/blog-2025-11-08/
98•TMWNN•10h ago•41 comments

Games Preservation Is Hard and Sometimes Involves Private Detectives

https://kotaku.com/gog-preservation-program-private-detectives-drm-2000635611
61•PaulHoule•3h ago•15 comments

Beets: The music geek’s media organizer

https://beets.io/
203•hyperific•12h ago•83 comments

Hacker News Headlines (game)

https://projects.peercy.net/projects/hn-oracle/index.html
16•greenwallnorway•1h ago•11 comments

Using the expand and contract pattern for schema changes

https://www.prisma.io/dataguide/types/relational/expand-and-contract-pattern
74•tanelpoder•1w ago•29 comments

Modular monolith and microservices: Modularity is what matters

https://binaryigor.com/modular-monolith-and-microservices-modularity-is-what-truly-matters.html
107•BinaryIgor•6d ago•115 comments

Refashion: Reconfigurable Garments via Modular Design

https://arxiv.org/abs/2510.11941
24•PaulHoule•5h ago•4 comments

Multistable thin-shell metastructures for multiresponsive metabots

https://www.science.org/doi/10.1126/sciadv.adx4359
11•PaulHoule•4h ago•1 comments

DNS Provider Quad9 Sees Piracy Blocking Orders as "Existential Threat"

https://torrentfreak.com/dns-provider-quad9-sees-piracy-blocking-orders-as-existential-threat/
201•gslin•7h ago•91 comments

Show HN: What Is Hacker News Working On?

https://waywo.eamag.me/
194•eamag•4d ago•39 comments

Ask HN: What Are You Working On? (Nov 2025)

344•david927•21h ago•1038 comments

XSLT RIP

https://xslt.rip/
589•edent•11h ago•384 comments

Europe to decide if 6 GHz is shared between Wi-Fi and cellular networks

https://www.theregister.com/2025/11/09/europe_to_decide_if_6/
148•FridayoLeary•8h ago•185 comments

How the UK lost its shipbuilding industry

https://www.construction-physics.com/p/how-the-uk-lost-its-shipbuilding
197•surprisetalk•17h ago•422 comments

Redmond, WA, turns off Flock Safety cameras after ICE arrests

https://www.seattletimes.com/seattle-news/law-justice/redmond-turns-off-flock-safety-cameras-afte...
8•dredmorbius•25m ago•1 comments