Lesson 88 of 170

Store, client, and game are different boundaries

Martinez AI Studios Academy

Classify Steam-related responsibilities in two dimensions: assign the owning system boundary, then determine exposure and credential-handling requirements.

1282. Lesson identity

Module
3.12 — Steam integration
Lesson
1 of the module
Academic type
Concept with assessed practice
Estimated time
30–40 minutes
Capability
Classify a Steam-related responsibility by system ownership and exposure requirements, then justify its placement and failure responsibilities.

1283. Learning objective

After this lesson, you can analyze a Steam-related responsibility in two dimensions:

  1. assign its primary owning system boundary and, where necessary, a collaborating boundary; and
  2. classify whether its data may be distributed or must remain secret and restricted.

You can also distinguish the game-owned player-facing response from the owner responsible for operational remediation.

1284. Why this matters

A feature may look unified to the player while spanning several systems. Product metadata is not runtime code, a client-provided capability is not a game rule, and a credential's secrecy does not tell you which system owns the process that uses it.

Mixing these questions can lead to configuration being placed in code, credentials being included in a distributable package, or the game being held responsible for repairing a platform configuration it cannot control. A two-dimensional classification gives you a clearer architecture before you select an API or ask AI to propose implementation details.

1285. Prior knowledge

You should be able to compare runtime environments and distinguish a development run from a packaged run, as practiced in 3.11 L2 — Compare runtime environments. This lesson extends that comparison by identifying who owns each responsibility and what may cross a distribution boundary.

1286. Dimension one: system ownership

Assign each responsibility to the system that has authority to perform or change it.

Owning boundary Responsibilities Guiding question
Store configuration Product-facing metadata and store-side release configuration outside the running game What is configured for the product in the store environment?
Client services Capabilities supplied by the installed platform client What capability does the player's platform environment provide?
Game runtime integration Game code that requests, interprets, and responds to client capabilities What must the running game decide or display?
Controlled release or backend process Restricted operations performed by authorized tooling or services Which controlled process performs this operation without placing privileged material in the game?

Choose one primary owner. If completing the responsibility requires another system, name it as a collaborating boundary and describe the handoff. Collaboration does not erase primary ownership.

For example, producing and uploading a distributable artifact may be owned by controlled build or release tooling, while choosing which uploaded artifact is associated with a store product may be store-side configuration. These are related responsibilities, not one indivisible setting.

1287. Dimension two: exposure and secret handling

After assigning ownership, classify the information used by the responsibility.

Exposure status Meaning Required treatment
Distributable or observable The value may be included in the game package or observed by players Do not rely on it remaining confidential.
Restricted but non-secret Access should be limited operationally, although confidentiality is not the security basis Document who may change or operate it.
Secret and non-distributable Disclosure would defeat the intended control Keep it in an authorized, protected process; never embed it in the distributed game.

Secrecy is a handling constraint, not a single architectural location. A release credential can be owned by a controlled release process and separately marked secret, non-distributable, and restricted. A backend credential can be owned by a backend process under the same exposure classification.

Anything distributed to players should be treated as observable. Obscure names, configuration files, or compiled code do not turn a distributed value into a safe private credential.

1288. Handoffs and two kinds of failure responsibility

Use separate fields for two different decisions:

  • Player-facing runtime response: Which part of the game decides what the player sees or can do when a capability is unavailable, denied, or returns an error?
  • Operational remediation owner: Which team or controlled system investigates and corrects a store, release, service, or deployment problem?

The game normally owns its fallback behavior because it controls its interface and rules. That does not mean the game owns the underlying client service or can repair store configuration. For example, the game may disable a control and show a clear message, while release or platform operations investigate a configuration error.

1289. Boundary-map method

For each responsibility:

  1. Describe the exact responsibility without naming an API.
  2. Assign a primary owning boundary.
  3. Name a collaborating boundary when the work genuinely spans systems.
  4. Describe the handoff: metadata, artifact, availability signal, request, or result.
  5. Define the player-facing runtime response. Write “not applicable” when no running-game behavior is involved.
  6. Assign the operational remediation owner.
  7. Classify exposure: distributable or observable, restricted but non-secret, or secret and non-distributable.
  8. Justify the architecture: explain why the placement reduces a concrete risk or category error.

Compact form:

Responsibility → Primary owner → Collaborator → Handoff → Runtime response → Operational remediation → Exposure → Justification

1290. Worked example

Consider the request: “Show the game in the Steam store and let the player open the platform overlay from the pause menu.”

Exact responsibility Primary owner Collaborator or handoff Player-facing response Operational remediation Exposure
Maintain product title, description, and screenshots Store configuration Authorized publishing process supplies approved metadata Not applicable Store or release operations correct the configuration Observable
Provide the installed client's overlay capability Client services The runtime receives availability and request results The game must not assume availability Platform or integration operations investigate environment or configuration problems Observable interface
Present the pause-menu control and fallback Game runtime integration The game requests the client capability Disable, hide, or explain unavailable behavior according to the design Game team repairs incorrect fallback logic; another owner repairs external configuration Observable
Use a private credential during a controlled release operation Controlled release process The process sends only the required authorized request or artifact Not applicable Release operations rotate or correct the credential and process Secret and non-distributable

Notice that the credential is not itself an ownership boundary. Its owning process is identified first; secrecy is classified second.

1291. Common mistakes

Treating secrecy as a location

“Put it in secrets” does not identify which controlled process owns the credential. Name the release tool, backend, or other authorized environment responsible for using it, then state the handling constraint.

Assigning one failure owner for every failure

The game can own a safe player-facing fallback while another owner corrects store, release, or platform configuration. Record both responsibilities.

Combining artifact production and store association

Producing or uploading a compilation or package (build) may belong to controlled release tooling. Configuring which artifact is associated with the store product may belong to store configuration. State the exact responsibility and any collaboration instead of forcing both into one vague row.

Treating all Steam work as runtime code

A shared product label does not imply shared architectural ownership. Classify the responsibility before choosing an API or generating code.

1292. Guided practice

Prepare a five-row boundary map for these exact responsibilities:

  1. Maintain the product description and screenshots shown in the store.
  2. Present a pause-menu control that requests a client-provided capability.
  3. Display a fallback when the platform client or requested capability is unavailable.
  4. Use a private credential in a controlled server-side or release process.
  5. Configure which previously produced distributable package is associated with the store product. Name the controlled release process as a collaborator if it produces or uploads the package.

For every row, provide the primary owner, collaborator or “none,” handoff, player-facing runtime response, operational remediation owner, exposure status, and a short architectural justification.

Then select one row that should not be implemented as game runtime code. Explain the category error or risk prevented by keeping it outside the game.

1293. Validation and evidence

Submit the five-row map through the attached practical assessment. It is evaluated for:

  • correct primary ownership;
  • precise collaborators and handoffs;
  • separation of player-facing fallback from operational remediation;
  • correct exposure and credential handling;
  • an architectural justification tied to a specific risk.

The quiz checks the core distinctions. The practical assessment evaluates whether you can apply them to responsibilities with real handoffs and shared operational concerns.

1294. Key takeaways

  • First assign the owning system; then classify exposure and secret-handling requirements.
  • A secret is a handling classification, not a universal system boundary.
  • The game owns its player-facing fallback, but it does not necessarily own operational remediation.
  • Responsibilities spanning release tooling and store configuration need an exact primary owner and a named collaboration.
  • Treat everything distributed in the client as observable.

1295. Next lesson

Continue to 3.12 L2 — Write an integration check without secrets. Carry forward both dimensions: system ownership and exposure controls.

1296. Knowledge check

Answer these items for yourself before reading the answers.

A controlled release process uses a private credential to upload an artifact. How should this be classified?

  • A. The credential is the primary system boundary because every secret belongs to the same location.
  • B. The controlled release process owns the operation; the credential is separately classified as secret and non-distributable.
  • C. The game runtime owns the operation because the artifact contains the game.
  • D. Store configuration owns both the release process and every credential it uses.
Show answer and feedback

Answer: The controlled release process owns the operation; the credential is separately classified as secret and non-distributable.

Why: Ownership and exposure are separate dimensions. The controlled process owns the operation, while the credential requires secret, restricted, and non-distributable handling.

A client capability is unavailable because of external configuration. Which allocation is most precise?

  • A. The game owns both the fallback and all external configuration remediation.
  • B. The client owns the player-facing fallback because it supplies the capability.
  • C. The game owns the player-facing fallback, while the relevant operational owner investigates and corrects the external configuration.
  • D. No owner is needed if the capability is optional.
Show answer and feedback

Answer: The game owns the player-facing fallback, while the relevant operational owner investigates and corrects the external configuration.

Why: The game controls what the player experiences, but ownership of that fallback does not transfer control of store, release, or platform configuration to the game.

Which statements correctly describe a responsibility that spans release tooling and store configuration?

  • A. Producing or uploading an artifact can be separated from configuring which artifact is associated with the store product.
  • B. The map may name one primary owner and a collaborating boundary with an explicit handoff.
  • C. Any responsibility involving an artifact must be owned by the running game.
  • D. A shared product goal requires every related operation to have the same owner.
Show answer and feedback

Answer: Producing or uploading an artifact can be separated from configuring which artifact is associated with the store product.; The map may name one primary owner and a collaborating boundary with an explicit handoff.

Why: The exact operations can have different owners. A primary owner, collaborating boundary, and explicit handoff preserve accountability without pretending the systems are isolated.

A value is included in the distributable game but its name is deliberately obscure. What exposure classification is appropriate?

  • A. Secret, because obscurity prevents observation.
  • B. Observable, and therefore unsuitable as a private credential.
  • C. Restricted but secret as long as the game is compiled.
  • D. Unclassified until the platform client reads it.
Show answer and feedback

Answer: Observable, and therefore unsuitable as a private credential.

Why: Anything shipped to players must be treated as observable. Naming, packaging, or compilation does not provide a safe secret boundary.

Support