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)MITOne 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:
- 1Download the .tgz with the button above.
- 2In Package Manager, click + ▸ "Add package from tarball…".
- 3Select com.anklebreaker.tombstack-0.9.0.tgz — done.
https://github.com/AnkleBreaker-Studio/tombstack-unity.git#v0.9.0
- 1In Unity 6 (6000.0)+, open Window ▸ Package Manager.
- 2Click + and choose "Add package from git URL…".
- 3Paste the URL and press Add — the #v0.9.0 suffix pins the release.
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:
- 1Install the package (tarball or git URL above).
- 2Open Window ▸ Tombstack ▸ Hub in the Unity editor.
- 3Sign in with your Tombstack account & link your game — required before the plugin goes live.
Unity Asset Store
COMING SOONThe 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 DEVELOPMENTA 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).
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.
# CLI — Node 18+, zero dependencies. Download + unzip:curl -LO https://d37yvxlv29ed7d.cloudfront.net/downloads/tombstack-cli.zipunzip tombstack-cli.zip && cd tombstack-cli# tombstack-doctor — verify the whole loop with a synthetic crashTOMBSTACK_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 CInode tools/symbols/symbols.mjs ./Build/Game.pdb