Skip to content

Steam integration

Purpose: Developer reference for the optional Steam API bridge built into the Tauri desktop app. Covers the feature-flag model, Steam Cloud exclusions, achievements / stats / rich presence configuration, and graceful fallback behaviour when Steam is absent.

Audience: Platform engineers implementing or modifying the Steamworks integration in apps/desktop/src-tauri/src/steam.rs and the corresponding React hooks. See Steam achievements, stats, and rich presence for the Steamworks portal configuration companion (what to enter in App Admin).

Privacy guarantee: No conversation content, transcript text, audio, or session details are ever transmitted to Steam. Only aggregate integer counts and generic activity tokens are sent — and only when the Steamworks SDK is active and the player is inside Steam. This is enforced by the integration design, not just policy.


The Steam integration is compiled in only when the steam Cargo feature is enabled. Enabling the feature links the steamworks crate and activates the SteamRuntime implementation.

apps/desktop/src-tauri/Cargo.toml
[features]
steam = ["dep:steamworks"]
[dependencies]
steamworks = { version = "0.11", optional = true }
Build commandSteam SDKUse case
cargo tauri buildNot linkedStandard open-source build; Steam features are no-ops
cargo tauri build --features steamLinkedSteam depot build; full integration active when Steam is running

The open-source release and the Steam depot release are compiled from the same source. Enabling the steam feature in the Steam depot build is the only structural difference between the two.

Valve’s test App ID 480 (Spacewar) can be used for local integration testing without registering the production App ID.

Terminal window
# Start the Tauri dev server with the Steam feature and the test App ID.
SteamAppId=480 cargo tauri dev --features steam

The real App ID is embedded in the depot build by the release workflow via STEAM_APPID in tauri.conf.json. Do not hardcode the production App ID in source files — use the variable substitution in the VDF templates and the workflow environment.


The bridge consists of:

  1. apps/desktop/src-tauri/src/steam.rs — Rust module that wraps the steamworks crate. Contains the SteamRuntime struct (with the unlock_achievement, increment_stat, and set_rich_presence methods) and the graceful-fallback logic. The #[tauri::command] handlers that expose these methods to the front end live in apps/desktop/src-tauri/src/lib.rs.
  2. useSteamAchievements React hook — front-end wrapper that invokes the Tauri steam_unlock_achievement and steam_increment_stat commands.
  3. useSteamRichPresence React hook — front-end wrapper that invokes the Tauri steam_set_rich_presence command.
CommandArgumentsEffect when Steam activeEffect when Steam absent
steam_unlock_achievementname: StringCalls steamworks::UserStats::achievement(name).set() then store_stats()Returns false, no-op
steam_increment_statname: StringReads current value, increments by 1, calls store_stats()Returns false, no-op
steam_set_rich_presencevalue: StringCalls steamworks::Friends::set_rich_presence("steam_display", Some(value)) — the key is fixed internallyReturns false, no-op

Commands can be called freely without checking whether Steam is available. The SteamRuntime managed-state object absorbs all failures silently.

SteamRuntime is constructed once by steam::init() during setup() and registered as a Tauri managed state object in lib.rs, wrapped in an Arc<Mutex<…>> newtype (SteamRuntimeState) so the command handlers can share it:

apps/desktop/src-tauri/src/lib.rs
let (steam_status_val, steam_runtime_val) = steam::init();
let steam_runtime = Arc::new(Mutex::new(steam_runtime_val));
tauri::Builder::default()
.manage(SteamRuntimeState(Arc::clone(&steam_runtime)))
...

steam::init() attempts steamworks::Client::init(). If init fails for any reason — Steam not running, steam feature disabled, wrong App ID, SDK missing — the runtime stores a None client and all subsequent commands return false immediately without logging errors.


Steam Cloud is configured in the Steamworks partner portal to sync only the non-sensitive settings file. The integration is documented in detail in publishing/STEAM_APP_REGISTRATION.md — Steam Cloud configuration.

Layer 1 — Steamworks portal exclusion patterns

The authoritative exclusion list is in the Steamworks App Admin → Steam Cloud configuration. Every data subdirectory (db/, logs/, models/, packs/, exports/, cache/, crashes/, data/) is excluded with recursive patterns. Only steam_cloud_settings.json is included.

Layer 2 — .nosteamcloudpath sentinel files

The app writes a .nosteamcloudpath file to each data subdirectory on first launch. This sentinel file tells the Steam client not to sync its directory even if the portal configuration changes or is misconfigured. The sentinel files are written by the FastAPI app lifespan hook in services/convsim-core/convsim_core/app.py, which touches a .nosteamcloudpath marker in each data subdirectory on startup. The exclusion semantics are documented in services/convsim-core/convsim_core/steam_cloud.py.

This is the only file allowed to reach Steam Cloud. It carries a small set of non-sensitive preferences so a second machine can pick up where the last one left off. The schema is the CloudSettings model in services/convsim-core/convsim_core/steam_cloud.py; today it holds a single field:

{
"last_model_id": "qwen3-4b-q4_k_m"
}

last_model_id pre-selects the same model on a new device. It must be an opaque model identifier — a field_validator in CloudSettings rejects any value containing a path separator on both write and read, so a filesystem path (which could leak a username or home directory) can never reach the cloud file.

The Steam MVP scope sync scope also permits display preferences and UI layout state as future additions, but only last_model_id is synced today. Any new field must be added to CloudSettings and reviewed for privacy impact before it ships.

Fields that may never appear in this file:

  • Conversation text, prompts, or transcript excerpts
  • Session IDs, session history, or session scores
  • NPC names or scenario identifiers beyond the model preference
  • Audio data of any kind
  • Personal or identifying information

The authoritative sync scope is the Steam Cloud sync for non-sensitive settings row in the Steam MVP scope (display preferences, last-used model ID, UI layout state only — transcripts, model weights, audio files, and session history must never sync), and the privacy risks PR-01 through PR-03 in publishing/STEAM_COMPLIANCE_AND_RISK_REGISTER.md.

After configuring Steam Cloud in the Steamworks portal, verify with the B.11 Steam Cloud sync verification steps in the release checklist.


Full Steamworks portal configuration (App Admin → Achievements tab) is in Steam achievements, stats, and rich presence.

This section covers the integration points.

Display nameEnumAPI nameUnlock event
First ScenarioSteamAchievement::FIRST_SCENARIOACH_FIRST_SCENARIOSession ends or is manually ended
First DebriefSteamAchievement::FIRST_DEBRIEFACH_FIRST_DEBRIEFDebrief screen rendered
Practice StreakSteamAchievement::PRACTICE_STREAKACH_PRACTICE_STREAK3 consecutive calendar days with completed sessions
Pack ExplorerSteamAchievement::PACK_EXPLORERACH_PACK_EXPLORERSession completed from 3+ distinct packs
Creator First ValidateSteamAchievement::CREATOR_FIRST_VALIDATEACH_CREATOR_FIRST_VALIDATECreator workbench validates first custom pack
apps/web/src/hooks/useSteamAchievements.ts
const { unlock } = useSteamAchievements()
// Called at the debrief screen boundary
unlock(SteamAchievement.FIRST_SCENARIO)

The hook resolves to a no-op when window.__TAURI__ is absent (browser context) or when the Tauri command returns false (Steam not running).

Achievement unlock is idempotent — calling unlock on an already-unlocked achievement is silently ignored by the Steamworks API.


Full Steamworks portal configuration is in Steam achievements, stats, and rich presence.

Display nameEnumAPI nameIncrement event
Scenarios CompletedSteamStat::SCENARIOS_COMPLETEDSTAT_SCENARIOS_COMPLETEDSession ends
Debriefs GeneratedSteamStat::DEBRIEFS_GENERATEDSTAT_DEBRIEFS_GENERATEDDebrief screen displayed
Packs ValidatedSteamStat::PACKS_VALIDATEDSTAT_PACKS_VALIDATEDCreator workbench validates a pack
Text Mode SessionsSteamStat::TEXT_MODE_SESSIONSSTAT_TEXT_MODE_SESSIONSSession starts in text mode
Voice Mode SessionsSteamStat::VOICE_MODE_SESSIONSSTAT_VOICE_MODE_SESSIONSSession starts in voice mode

All stats are INT type, monotonically increasing, and count-only. A stat value reveals how many times an event occurred — nothing about the content of the event.

const { incrementStat } = useSteamAchievements()
// Called when the session-start API returns success
incrementStat(SteamStat.TEXT_MODE_SESSIONS)

Full Steamworks portal configuration (including the richpresence.vdf localization file) is in Steam achievements, stats, and rich presence.

TokenDisplay stringSet when
#AtMainMenuBrowsing scenariosscreens/Home and screens/ScenarioLibrary mount
#InScenarioIn a practice scenarioscreens/Conversation mounts
#ReviewingDebriefReviewing a debriefscreens/Debrief mounts
#EditingPackEditing a scenario packscreens/CreatorWorkbench mounts

Tokens are category labels only. No scenario title, NPC name, turn count, or any content from the conversation is transmitted to Steam.

const { setPresence } = useSteamRichPresence()
// Called in screens/Conversation.tsx's useEffect
setPresence(SteamActivity.IN_SCENARIO)

The steam_display key is the only key used. Valve uses the #<token> value to look up the localized string from the uploaded richpresence.vdf file.


Every integration point degrades gracefully when Steam is absent. The fallback layers are:

LayerConditionBehaviour
Cargo feature disabledsteam feature not in buildSteamRuntime stubs compile to instant no-ops at zero runtime cost
Feature enabled but Client::init() failsSteam not running, wrong App ID, SDK unavailableSteamRuntime stores None client; all commands return false
Tauri context absentApp running in browser (not Tauri shell)Hooks check window.__TAURI__; calls are skipped entirely
Command returns falseAny of the aboveCaller receives false; no retry, no error UI shown

The application functions identically whether Steam is present or not. No UI state, no feature gate, no error message is conditioned on Steam availability. This is a deliberate product decision: the Steam integration is additive, not structural.


Run this manual test before the Stage 4 public release gate to confirm the integration is wired correctly:

Terminal window
# Start the app with the test App ID and the steam feature enabled.
SteamAppId=480 cargo tauri dev --features steam
  1. Open Steam in the background (must be logged in).
  2. Launch the Tauri dev app.
  3. Navigate to a scenario and complete it. Confirm the Steam overlay shows the ACH_FIRST_SCENARIO unlock notification.
  4. Open the Debrief screen. Confirm ACH_FIRST_DEBRIEF notification appears.
  5. Navigate to the Creator Workbench. Confirm rich presence changes to "Editing a scenario pack" in the Steam friends list.
  6. Confirm no session title, NPC name, or turn content appears in any Steam-facing string.

Also run with Steam closed to confirm the no-op fallback: all three actions above must complete without any error, console warning, or UI change.


Use this checklist at the Stage 4 gate:

  • All five achievements created in App Admin with correct API names and icon pairs.
  • Hidden flag set on ACH_PRACTICE_STREAK and ACH_PACK_EXPLORER.
  • All five stats created as INT type.
  • Rich presence localization file uploaded for English (at minimum).
  • End-to-end test above completed with Steam running: achievements, stats, and rich presence all fire correctly.
  • End-to-end test completed with Steam closed: no errors, no UI changes.
  • Steam Cloud configured in Steamworks portal — only steam_cloud_settings.json included; all data subdirectories excluded.
  • B.11 Steam Cloud sync verification steps in the release checklist completed and passing.
  • Confirmed no session content appears in any Steam-facing string.