tabletop
with friends
THE BUILDER’S HANDBOOK
Ship & maintainSDK 0.1.0

Old games deserve stable ground

Understand SDK versions, CLI compatibility, deployment releases, and network contracts.

Read Markdown ↗

There are four different version boundaries. Treating them as one number makes upgrades harder than they need to be.

BoundaryWhat it identifiesUpgrade behavior
SDK packageRules engine and authoring APIA repository pins an exact npm version
CLI packageTooling and local rendererLoads the game’s installed SDK through host API 1
Deployment releaseExact code, catalog, settings, and artworkExisting rooms keep their manifest digest
Network / presentation protocolShared host and browser contractBreaking changes require an adapter or retained platform generation

Install an exact SDK version

npm install --save-exact @tabletopwithfriends/sdk@0.1.0
npm install --save-dev --save-exact @tabletopwithfriends/cli@0.1.0

The CLI resolves the SDK from the game module’s repository for inspection, simulation, local sessions, and executor builds. It does not substitute its own SDK. An unsupported host API fails explicitly and leaves the game’s files untouched.

Release lines

During 0.x, a minor version is a compatibility line: 0.1.x and 0.2.x can coexist. Breaking changes move to a new minor; patches preserve compatibility. From 1.0 onward, breaking changes require a new major. A maintenance release can be published to an older line without moving npm’s latest tag backward.

Exact versions remain installable. Tags such as sdk-0.1 identify a maintained line, next contains prereleases, and latest points to the newest stable SDK. The version picker opens the documentation snapshot for the installed SDK.

What is not automatic

Historical game executors do not freeze the shared browser renderer. A future incompatible scene or protocol change still needs a compatibility adapter or a preserved host/client generation. This release supports SDK host API 1 and executor protocol 5. The release matrix records these boundaries; it is not a promise that arbitrary future SDKs will run on an older CLI.

Tabletop with Friends Make something worth playing.