From remix
Build and publish Remix games with the current Remix toolchain. Use when work touches the official Remix CLI, MCP server, REST publishing APIs, or the @remix-gg/sdk game runtime.
How this skill is triggered — by the user, by Claude, or both
Slash command
/remix:remix-agent-publishThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when users want to create, upload, validate, or inspect Remix games from an agent, terminal workflow, or external service.
Use this skill when users want to create, upload, validate, or inspect Remix games from an agent, terminal workflow, or external service.
remix-cli skill for terminal-based auth, config, upload, and analytics flows.remix-mcp-quickstart skill when the user is working through an MCP client.remix-api-auth skill for authentication setup.https://api.remix.gg/docs/json before generating API calls.remix-api-reference skill for workflow guardrails (not as the method/path source of truth).phaser-2d-arcade skill.threejs-lite skill.remix-game-sdk skill when generating or fixing game code.remix-submission-rules skill for validation requirements.remix-game-best-practices skill for mobile-first and SDK-safe implementation.remix-rest-snippets skill for client integration examples.remix-mcp-quickstart skill for assistant workflows.remix-game-creation - Create a new game draftremix-upload-game - Upload version coderemix-add-image - Generate and add images to a gameremix-add-sprite - Generate and add sprites to a gameremix-shop-items - Create and manage in-game shop itemsremix-multiplayer - Enable multiplayer supportremix-save-game - Add save/load game stateremix-upload-asset - Upload images, audio, or 3D models as hosted game assetsCurrent config files:
.remix-cli.json for project-local config (gameId, versionId).remix-mcp.json for older projects~/.config/remix/credentials.json for CLI credentials that MCP can also reuseReuse existing IDs instead of inventing new ones or blindly calling createGame. Some upstream MCP docs still mention .remix-settings.json; prefer the current packaged MCP skills and package source when those conflict.
Before uploading code, run through the validation checklist in the remix-submission-rules skill to catch blockers early.
All game management is done through REST API calls to https://api.remix.gg. The general pattern is:
https://api.remix.gg/docs/jsonSee the remix-rest-snippets and remix-api-reference skills for details.
When docs and runtime behavior disagree, defer to the server API source and OpenAPI docs:
https://api.remix.gg/docshttps://api.remix.gg/docs/jsonpackages/cli/src/index.tspackages/mcp/src/core/tool-defs.tspackages/mcp/skills/SKILL.mdpackages/mcp/skills/workflows/*.mdapps/server-api/routes/device-auth.ts@remix-gg/sdk (NPM package)npx claudepluginhub matrixy/remix-skills --plugin remixGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.