Heathen Toolbox is Heathen’s dependency and version management tool. It lives under Window > Heathen > Toolbox in the Unity Editor and solves one specific problem: Unity Package Manager cannot reason about dependencies between Heathen packages, or between a Heathen package and the third-party SDKs some of them need. Toolbox can.

Why it exists #
A Heathen Toolkit typically needs its own Foundation, which in turn needs Game Framework, and sometimes GameplayTags, DataLens, or Lexicon Localisation Foundation underneath that. UPM’s own manifest resolution has no idea any of this is related; it just installs what you ask for. Before Toolbox, every product carried its own bespoke “install my dependency” prompt: duplicated logic, inconsistent wording, no shared view of the wider graph.
Toolbox replaces all of that with one real dependency graph, one install planner, and one place to review what’s about to happen before it happens. Every Heathen Foundation and Toolkit now bootstraps into it automatically: install any of them into a project that doesn’t have Toolbox yet, and it offers to install Toolbox for you, then queues a plan for whatever that product still needs.
Hard and soft dependencies #
- Requirement (hard). Always installs before whatever needs it. A Toolkit’s Foundation, a Foundation’s own Game Framework/GameplayTags/DataLens dependencies, Steamworks.NET for Foundation for Steamworks: all Requirements. A plan is never complete while one is unmet.
- Optional (soft). Offered, never forced. UniTask for Foundation for Steamworks is a real example: it improves the API, but nothing breaks without it. An unsatisfied Optional edge shows as a mild warning, never a blocking condition, and Toolbox never adds it to a plan on your behalf.
When multiple installed items constrain the same shared dependency to different version ranges, Toolbox resolves the highest version that satisfies every Requirement at once, and flags the rare case where no such version exists clearly, rather than silently picking one side.
Use it as a project readiness check #
Toolbox computes the real dependency graph against whatever’s actually installed. Open it in an existing multi-tool project and it works as a one-shot readiness check: install Toolbox, let it discover everything already in the project, see exactly what’s missing or out of date against the real graph, and Run Plan to bring the whole project current and dependency-complete in a single pass. This works even in a project that already has everything it needs; confirming there’s nothing to do is still useful information.
Cache modes #
Toolbox offers three ways to fetch a package, chosen on first run and changeable anytime from the gear menu:
- Project Cache (recommended). A
3rdParties/folder alongside the project’s own source control root, so the cache travels with the project’s repo. Best for a team wanting reproducible, version-controlled dependencies. - Web (Git URL). UPM’s own native direct-URL mechanism, no local cache folder. A common choice for solo developers who don’t need the cache to be portable.
- Central Cache. One shared cache across every project on the machine. Lower disk usage, not portable via source control. Closer to UPM’s own usual approach, and generally the least recommended of the three for a real project.
Entitlements and Pro Toolkits #
Heathen’s Foundations are free and open source (Apache-2.0). The paid Toolkit tier is entitlement-gated: sign in from the toolbar (device authorization, no password stored locally) to unlock whatever Toolkits your account owns. A plan item that needs entitlement you don’t have shows dimmed with an explanation, and is skipped (never attempted) if you run the plan anyway; everything else in the same plan still completes.
Other engines #
Toolbox is Unity-specific today. The same approach, one central tool discovering and managing a growing set of modular packages, dependency-aware and entitlement-aware, is the direction Heathen is taking generally. Expect it to reach Godot, O3DE, and Unreal over time.
Source and documentation #
Heathen Toolbox is free and open source: Unity-Heathen-Toolbox on Codeberg.