> ## Documentation Index
> Fetch the complete documentation index at: https://docs.totemlabs.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Development builds

> Planned: share work in progress with chosen testers and keep feedback with the build.

export const StatusBadge = ({state = "available", children}) => {
  const labels = {
    available: "Available",
    "early-access": "Early access",
    planned: "Planned",
    internal: "Internal draft"
  };
  return <span className={`totem-status totem-status--${state}`}>
      {children || labels[state] || state}
    </span>;
};

<StatusBadge state="planned" />

Restricted development builds, tester access, and build-specific feedback are coming soon. The Development tab stays visible in the dashboard as a disabled Coming soon control.

A creator cannot create a private test link, add testers, or collect Totem feedback yet. Keep publishing public games through the MCP workflow that is available today.

There are no setup steps for this feature until it is released. See [Product status](/roadmap) for the planned-surface list.
