Remix Agent Publish:自动部署游戏到 remix.gg - Openclaw Skills

作者:互联网

2026-03-26

其他

什么是 Remix Agent Publish?

Remix Agent Publish 技能旨在桥接 AI 驱动的游戏开发与 remix.gg 平台。通过利用 server-api v1 智能体 REST API,该技能允许开发者在确保完全符合 Farcade 游戏 SDK 要求的前提下,以编程方式部署游戏。对于正在为 Web 游戏构建自主部署流水线的开发者来说,它是 Openclaw Skills 库中的关键组件。

该技能提供了处理身份验证、API 交互和特定框架构建所需的技术保障和参考点。无论您使用 Phaser 还是 Three.js,此工具都能确保您的输出符合 Remix 平台成功托管所需的移动优先标准和提交规则。

下载入口:https://github.com/openclaw/skills/tree/main/skills/chuckstock/remix-agent-publish

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install remix-agent-publish

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 remix-agent-publish。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

Remix Agent Publish 应用场景

  • 在 AI 智能体中实现 remix.gg 游戏发布生命周期的端到端自动化。
  • 在部署前根据 Farcade SDK 标准验证游戏代码。
  • 将游戏创建工作流集成到外部服务或 CI/CD 流水线中。
  • 使用 Openclaw Skills 的 2D 和 3D 框架配套工具实现移动优先的游戏设计。
Remix Agent Publish 工作原理
  1. 建立安全 API 身份验证,作为部署生命周期的第一步。
  2. 从官方 JSON 端点获取最新的 OpenAPI 规范,以同步当前的 Openclaw Skills 要求。
  3. 利用 Phaser 或 Three.js 的框架专用配套技能生成优化的游戏资产。
  4. 应用平台特定的提交规则和移动优先最佳实践来验证游戏构建。
  5. 使用 REST API 智能体端点执行发布工作流,将游戏部署到 remix.gg。

Remix Agent Publish 配置指南

要在 Openclaw Skills 生态系统中使用此技能,请按照以下配置步骤操作:

# 获取 Remix API 的最新 OpenAPI 架构
curl https://api.remix.gg/docs/json

# 根据 server-api 身份验证文档定义,
# 在您的环境中配置相应的 API 身份验证密钥。

Remix Agent Publish 数据架构与分类体系

该技能根据以下架构组织发布数据和元数据:

数据组件 描述 事实来源
API 定义 智能体发布的 REST 端点 api.remix.gg/docs
SDK 参考 Farcade 游戏 SDK 钩子和方法 packages/game-sdk
验证规则 提交和移动优先要求 rules/submission-requirements.md
客户端代码片段 REST 客户端集成示例 snippets/rest-client.md
name: remix-agent-publish
description: Build Remix games for remix.gg with the server-api v1 agents REST API and Farcade game SDK requirements.
metadata:
  tags: remix, games, api, agent, publishing

When to use

Use this skill when users want to automate game publishing on Remix (remix.gg) from AI agents or external services.

How to use

  • Read API Authentication first.
  • Fetch OpenAPI spec at https://api.remix.gg/docs/json before generating API calls.
  • Use API Reference for workflow guardrails (not as the method/path source of truth).
  • For Phaser builds, use Phaser 2D Arcade Companion Skill.
  • For lightweight 3D builds, use Three.js Lite Companion Skill.
  • Use Game SDK Reference when generating or fixing game code.
  • Apply Submission Rules for validation requirements.
  • Follow Game Creation Best Practices for mobile-first and SDK-safe implementation.
  • Use REST Snippets for client integration examples.
  • Use MCP Quickstart for assistant workflows.

Source of truth

When docs and runtime behavior disagree, defer to the server API source and OpenAPI docs:

  • https://api.remix.gg/docs
  • https://api.remix.gg/docs/json
  • apps/server-api/routes/agents.ts
  • apps/server-api/lib/api-auth.ts
  • apps/server-api/lib/agent-api.ts
  • apps/server-api/app/[...path]/route.ts
  • packages/game-sdk/src/index.ts