I gave Claude my dead game's 30-year-old files and asked it to bring the game back to life
TL;DR Highlight
This is a user experience where Claude Code reconstructed an entire online multiplayer game from 1992 based solely on script files and manuals, after the original source code was lost.
Who Should Read
Developers who need to revive legacy projects with incomplete code or documentation, or developers who want to automate large-scale reverse engineering tasks using Claude Code as an agent.
Core Mechanics
- The original author's online multiplayer game 'Legends of Future Past', which was operated on CompuServe in 1992, ended on December 31, 1999, and the source code was no longer available.
- Only three materials remained: hundreds of script files written in a custom scripting language, a GM manual written in 1998, and a 1996 gameplay recording.
- Claude Code inferred the syntax of the custom scripting language, which had no documentation available online, solely from script examples and the manual — it reverse-engineered a language not present in its training data.
- The scale of the reconstructed game: 2,273 rooms, 1,990 items, 297 monsters, 88 spells, a complete crafting system, and combat mechanics — completed in a weekend, which would have taken the original author months.
- The author described the experience as 'collaboration, not autopilot': Claude doesn't run on its own, but is more like a 'tireless, excellent collaborator' that needs direction from the developer within the room.
- The reconstructed game is currently available for free play at lofp.metavert.io, and the code is open-sourced on GitHub (github.com/jonradoff/lofp).
Evidence
- A user shared a story about submitting photos of a 6-page paper printout of a game written in Commodore Pet in 1982 to Claude, which converted it to PET-SCI and even created a disk image.
- There was a comment agreeing with the author's statement that 'agent coding is not autopilot' — a user currently working on a project in agent mode agreed with the message that 'the developer must remain in the room'.
- A user who created a card for the Home Assistant interface with Claude shared an experience where Claude automatically added a washing machine drum rotation animation even when given abstract instructions like 'move the controls'.
- Another user mentioned starting to modernize old game code with Codex and connecting it to ComfyUI to generate assets, with plans to continue reviewing with Claude.
- Comments pointed out that the author is the well-known Jon Radoff (Wikipedia entry), and there were many nostalgic reactions to the MUD genre (text-based multiplayer game).
How to Apply
- If you have a legacy system where only script files, configuration files, and documentation remain without source code, you can instruct Claude Code to 'understand what these files do and reimplement them' — this is valid not only for complete reconstruction but also for partial reverse engineering.
- The key lesson from this case is to design agent coding sessions not as expecting Claude to be a self-running automation tool, but as a collaborative session where you check and modify the direction in between steps — using a checkpoint-based approach by dividing the task into stages is effective.
- If documentation for an old custom DSL (domain-specific language) or in-house scripting language is poor, you can attempt to reverse-engineer the language syntax by submitting actual script example files and non-technical manuals (if available).
Terminology
Related Papers
AI Meets Cryptography 1: What AI Found in Cloudflare's Circl
zkSecurity 팀이 AI 감사 파이프라인을 Cloudflare의 오픈소스 암호화 라이브러리 CIRCL에 돌려서 실제로 존재하는 버그 7개를 발견했고, 그 중에는 속성 기반 암호화의 접근 제어를 완전히 우회할 수 있는 Critical 버그도 포함되어 있다. AI가 암호화 코드 감사에서 실질적인 성과를 낼 수 있음을 보여준 사례라 주목할 만하다.
Show HN: Rowboat – Open-source, local-first alternative to Claude Desktop
이메일, 미팅, Slack, 코드 등 업무 데이터를 로컬 지식 그래프로 인덱싱하고 백그라운드 에이전트로 자동화해주는 오픈소스 데스크톱 AI 비서 앱이다. Claude Desktop처럼 쓰되 훨씬 더 풍부한 업무 컨텍스트와 자체 작업 화면을 제공한다는 점에서 주목할 만하다.
OfficeCLI: Office suite for AI agents to read and edit Microsoft Office files
AI 에이전트가 Microsoft Office 파일을 읽고 편집할 수 있도록 만들어진 오픈소스 CLI 도구로, Office 설치 없이 단일 바이너리만으로 동작한다.
Agent Data Injection Attacks are Realistic Threats to AI Agents
JSON 구분자를 살짝 바꿔 넣는 것만으로 Claude Code, Codex, Gemini CLI에서 원격 코드 실행이 가능한 새로운 AI 에이전트 공격 기법 발견.
Reasoning effort, not tool access, buys first-try reliability in agentic code generation: an observational study
Claude Code로 90번 반복 실험한 결과, Playwright 같은 테스트 도구는 비용만 올리고 실패율엔 무효였으며 xHigh reasoning effort가 첫 시도 완성률을 28%→89%로 끌어올렸다.
Show HN: ctx – Search the coding agent history already on your machine
Claude Code, Cursor, Codex 등 코딩 에이전트가 이전 세션의 논의·결정·실패 시도를 잊지 않도록 SQLite로 인덱싱해 재사용할 수 있게 해주는 오픈소스 CLI 도구다.