remix-agent-publish
When to use
Use this skill when users want to create, upload, validate, or inspect Remix games from an agent, terminal workflow, or external service.
How to use
- Prefer the
remix-cliskill for terminal-based auth, config, upload, and analytics flows. - Use the
remix-mcp-quickstartskill when the user is working through an MCP client. - Read the
remix-api-authskill for authentication setup. - Fetch OpenAPI spec at
https://api.remix.gg/docs/jsonbefore generating API calls. - Use the
remix-api-referenceskill for workflow guardrails (not as the method/path source of truth). - For Phaser builds, use the
phaser-2d-arcadeskill. - For lightweight 3D builds, use the
threejs-liteskill. - Use the
remix-game-sdkskill when generating or fixing game code. - Apply the
remix-submission-rulesskill for validation requirements. - Follow the
remix-game-best-practicesskill for mobile-first and SDK-safe implementation. - Use the
remix-rest-snippetsskill for client integration examples. - Use the
remix-mcp-quickstartskill for assistant workflows.
Available 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 assets
Game Settings
Current config files:
- task context or prior tool results first
.remix-cli.jsonfor project-local config (gameId,versionId)- legacy
.remix-mcp.jsonfor older projects ~/.config/remix/credentials.jsonfor CLI credentials that MCP can also reuse
Reuse 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.
Inline Validation
Before uploading code, run through the validation checklist in the remix-submission-rules skill to catch blockers early.
REST API Workflow
All game management is done through REST API calls to https://api.remix.gg. The general pattern is:
- Fetch the OpenAPI spec at
https://api.remix.gg/docs/json - Use the spec to determine exact methods, paths, and schemas
- Make authenticated REST calls with your API key
- Check responses for success/error envelopes
See the remix-rest-snippets and remix-api-reference skills for details.
Source of truth
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)
More from farworld-labs/remix-skills
phaser-2d-arcade
Build mobile-first 2D browser games with Phaser 3 Arcade Physics
37threejs-lite
Build lightweight mobile-friendly 3D browser games with Three.js
33remix-api-auth
Configure and verify authentication for Remix REST, CLI, and MCP workflows. Use when a task needs `REMIX_API_KEY`, `remix login`, stored Remix credentials, or auth troubleshooting.
32remix-add-sprite
Generate and add sprites to a Remix game
31remix-game-sdk
Reference for the current @remix-gg/sdk runtime. Use when generating or repairing Remix game code, shop item integrations, save-state flows, multiplayer hooks, or host-safe mobile UI behavior.
31remix-game-creation
Create a new game draft via the Remix API
31