Download

GET TOMBSTACK
IN YOUR ENGINE.

One UPM package for Unity — runtime SDK plus editor plugin — and a zero-dependency CLI for symbol upload and integration checks. MIT licensed, free under 10 peak CCU.

Unity SDK + Editor plugin

v0.9.0UNITY 6+ (6000.0)MIT

One package, two halves: the runtime SDK that captures crashes in your build, and the editor hub that links the project to your Tombstack account. Pick an install path:

A — Tarball downloadRECOMMENDED
  1. 1Download the .tgz with the button above.
  2. 2In Package Manager, click + ▸ "Add package from tarball…".
  3. 3Select com.anklebreaker.tombstack-0.9.0.tgz — done.
B — UPM git URL
UPM git URL
https://github.com/AnkleBreaker-Studio/tombstack-unity.git#v0.9.0
  1. 1In Unity 6 (6000.0)+, open Window ▸ Package Manager.
  2. 2Click + and choose "Add package from git URL…".
  3. 3Paste the URL and press Add — the #v0.9.0 suffix pins the release.
What you get
Fully autonomous after Init — exceptions, errors & unobserved Tasks auto-captured
Player log auto-uploaded with every crash and bug report (rolling 512 KB)
Unclean-shutdown detection — hard crash? Next launch reports it + recovers the previous session's log
Breadcrumbs, session heartbeats (live CCU), in-game player bug reports
Editor hub with account sign-in — link your game in-editor
AI triage via the Tombstack MCP server
Source on GitHub All releases

The editor plugin needs your account

Sign-in is mandatory — the hub mints your per-game SDK token and scopes everything the plugin sends to your studio. Three steps, all inside Unity:

  1. 1Install the package (tarball or git URL above).
  2. 2Open Window ▸ Tombstack ▸ Hub in the Unity editor.
  3. 3Sign in with your Tombstack account & link your game — required before the plugin goes live.
Create your accountFree under 10 peak CCU — no credit card.

Unity Asset Store

COMING SOON

The same package is headed to the Asset Store as a free asset. Until the listing is live, the git URL and tarball above are the official installs.

Native C/C++ SDK

v0.1.0 · IN DEVELOPMENT

A standalone SDK for any engine: C99 DLL ABI (shared lib on Linux/macOS), libcurl transport, and offline crash sidecars the CLI uploader drains — CI-built on Windows, Linux and macOS. Crash reporting works today; automatic minidump capture is coming (Phase 2).

tombstack-native on GitHubUNREAL ENGINE — ON THE ROADMAP

CLI & symbols

Three tools ship in the repo's tools/ directory — tombstack-doctor, tombstack-upload and tombstack-symbols. They read TOMBSTACK_BASE_URL + TOMBSTACK_TOKEN from the environment.

terminalNode 18+
# CLI — Node 18+, zero dependencies. Download + unzip:
curl -LO https://d37yvxlv29ed7d.cloudfront.net/downloads/tombstack-cli.zip
unzip tombstack-cli.zip && cd tombstack-cli
 
# tombstack-doctor — verify the whole loop with a synthetic crash
TOMBSTACK_BASE_URL=https://your-tombstack-host TOMBSTACK_TOKEN=tmb_… \
node tools/doctor/doctor.mjs
 
# tombstack-upload — drain offline crash sidecars (native / custom engines)
node tools/uploader/upload.mjs ./crash-sidecars
 
# tombstack-symbols — upload PDB / dSYM / .sym from CI
node tools/symbols/symbols.mjs ./Build/Game.pdb