HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Veraticus

no profile record

Submissions

[untitled]

1 points·by Veraticus·3개월 전·0 comments

Show HN: I built an 8-axis MTG draft advisor that runs inside ChatGPT

savecraft.gg
2 points·by Veraticus·4개월 전·1 comments

Dashboards Are Already Dead

joshsymonds.com
5 points·by Veraticus·4개월 전·2 comments

Show HN: I built an open-source MCP server that parses game save files

github.com
11 points·by Veraticus·4개월 전·6 comments

comments

Veraticus
·4개월 전·discuss
A friend of mine plays a lot of Arena and kept asking ChatGPT for advice, and as many of you know, it worked badly! It would confidently recommend things that didn't exist or had rotated out of Standard months ago. I thought it was a cool problem to tackle, so I built ten MCP reference modules that give Claude and ChatGPT access to real MTG data: 17Lands draft stats across all 31 color archetypes, Frank Karsten's hypergeometric mana base math, Scryfall's full card database, and the MTG Comprehensive Rules with semantic search.

The rabbit hole I fell deepest into was the draft advisor. It's an 8-axis WASPAS scoring engine — baseline win rate (Bayesian-shrunk so sparse archetypes don't produce noise), N-wise card synergy, curve fit, castability via Karsten's tables, signal openness, role composition, color commitment, and opportunity cost. Empirical winning-deck data only works for card-intrinsic axes; state-dependent axes like signal and opportunity cost need theoretical sigmoid parameters or survivorship bias destroys the differentiation.

Try it! The MCP works out of the box with MTG rules, cards, stats, and mana base. If you connect the lightweight Savecraft daemon to your Arena install, it'll watch your `Player.log` and context will automatically flow to the LLM on your specific decks and matches, enabling the draft advisor and play advisor modules (and other cool stuff).

Everything is open source and Apache 2.0 @ https://github.com/joshsymonds/savecraft.gg
Veraticus
·4개월 전·discuss
I'm Josh! I built Savecraft (https://savecraft.gg | https://github.com/joshsymonds/savecraft.gg). It's an open-source MCP server that parses game save files and gives Claude/ChatGPT access to reference modules that do real computation -- an 8-axis WASPAS draft evaluator for MTG Arena using 17Lands data, drop rate calculators with magic find scaling for Diablo II, crop planning for RimWorld, and more.

The blog post is about why I threw away all my wireframes and built the whole thing as a conversation. You see, dashboards are collections of pre-answered questions, and the interesting questions are always the ones the designer didn't anticipate.

The longer version involves getting banned from every gaming subreddit on the internet for mentioning AI, a Reddit moderator accusing me of "interpersonal relationship theft," (!) and a RimWorld veteran telling me my tool was "incredibly useful," lamenting their aging Google skills, and downvoting me to zero. It's been a ride, HN...
Veraticus
·4개월 전·discuss
Oh this is really interesting! I hadn't explored Steam Cloud as a data source. Currently the daemon watches local save directories and parses through WASM, but if Steamworks exposes an API to pull save files remotely, that could work as a server-side adapter (same pattern I use for WoW via Battle.net API). That would eliminate the daemon entirely for Steam games, which is by far the biggest friction point in the install flow right now.

I'd love to see your JS lib if you're willing to share it! The raw files would still need per-game parsers (D2R's .d2s is a gnarly bit-packed binary, for example), but moving file access to the server side would be a big deal for adoption.
Veraticus
·4개월 전·discuss
[dead]
Veraticus
·4개월 전·discuss
Savecraft is an open-source MCP server that parses game save files and serves structured game state to AI assistants. Point it at your save directory and your LLM can help you with gear, stats, skills, quest progress, everything. Upload a build note and get detailed and specific advice about how to optimize your game.

I built this because I got tired of screenshotting my inventory every time I wanted to compare two items in Diablo 2: Resurrected (and am too garbage at the game myself to make the distinction). A local Go daemon watches save directories with fsnotify, parses files through sandboxed WASM plugins, and pushes structured state to Cloudflare Workers over binary protobuf WebSocket.

Every plugin binary is Ed25519 signed: community contributors submit source, CI builds and signs the WASM with a key they never touch. Your machine verifies before execution. This was the only trust model I'd accept for running other people's code on my gaming rig.

Server side is Cloudflare Workers + Durable Objects with WebSocket Hibernation, D1 with FTS5 for full-text search across saves and notes, and reference data modules (like a D2R drop calculator) running as separate WASM Workers via Workers for Platforms dispatch namespaces.

Currently supports Diablo II: Resurrected, Clair Obscur: Expedition 33 (what I'm playing currently!), Stardew Valley (theoretically), and WoW (Battle.net API + Raider.io). Linux and Windows are solid, Mac is kind of undertested. Apache 2.0, solo project. The marketing site is https://savecraft.gg