Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问许可证需确认审计异常

quick-game快速游戏

Agent Skill

quick-game 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,225

周安装

262

GitHub Stars

109

下载量

2,180
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:quick-game(快速游戏)
来源仓库:https://github.com/opusgamelabs/game-creator
仓库路径:skills/quick-game
安装命令:
npx skills add https://github.com/opusgamelabs/game-creator --skill quick-game
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/opusgamelabs/game-creator --skill quick-game

简介

quick-game 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于运维和基础设施类任务,支持多宿主环境集成。
  • 可通过 npx skills add 命令从 GitHub 仓库安装。

SKILL.md

Performance Notes

  • Take your time to do this thoroughly
  • Quality is more important than speed
  • Do not skip validation steps

Quick Game (Fast Prototype)

Build a playable game prototype as fast as possible. This is /make-game without the polish — just scaffold + implement the core loop. Get something on screen, then incrementally add layers with /add-assets, /design-game, /add-audio, /game-deploy, and /monetize-game.

What you'll get:

  1. A scaffolded game project with clean architecture
  2. Core gameplay — input, movement, scoring, fail condition, restart
  3. A running dev server you can play immediately

What you skip (run these later if you want):

  • /add-assets — pixel art sprites (2D) or 3D models
  • /design-game — visual polish, particles, transitions
  • /add-audio — music and sound effects
  • /record-promo — promo video capture
  • /game-deploy — deploy to here.now
  • /monetize-game — Play.fun integration

Instructions

Step 0: Parse arguments

Parse $ARGUMENTS to determine the game concept:

Direct specification: [2d|3d] [game-name]

  • Engine: 2d (Phaser) or 3d (Three.js). If not specified, default to 2d.
  • Name: kebab-case. If not specified, ask the user.

Tweet URL: If arguments contain a tweet URL (x.com/*/status/*, twitter.com/*/status/*, fxtwitter.com/*/status/*):

  1. Fetch the tweet using the fetch-tweet skill
  2. Default to 2D
  3. Creatively abstract a game concept from the tweet
  4. Generate a kebab-case name
  5. Tell the user what you'll build

Meshy API Key (3D only): If 3D, check for MESHY_API_KEY. If missing, ask the user (link to https://app.meshy.ai). Store for model generation.

Step 1: Scaffold + Implement

Infrastructure (main thread):

  1. Locate the template directory — check ~/.claude/plugins/cache/local-plugins/game-creator/*/templates/ or templates/ relative to this plugin
  2. Target directory: If inside the game-creator repo, create in examples/<game-name>/. Otherwise, create in ./<game-name>/.
  3. Copy the template:

- 2D: templates/phaser-2d/ → target - 3D: templates/threejs-3d/ → target

  1. Update package.json name and index.html title
  2. Run npm install
  3. Start the dev server (npm run dev) in the background. Check port availability first — if 3000 is taken, try 3001, 3002, etc.

Game implementation (subagent via Task):

Launch a Task subagent with:

You are building a quick game prototype. Speed is the priority — get a playable core loop working. Project path: <project-dir> Engine: <2d|3d> Game concept: <description> Skill to load: phaser (2D) or threejs-game (3D) Implement in this order: 1. Input (touch + keyboard from the start) 2. Player movement / core mechanic 3. Fail condition (death, collision, timer) 4. Scoring 5. Restart flow (GameState.reset() → clean slate) Scope: 1 scene, 1 mechanic, 1 fail condition. Keep it tight. Rules: - All cross-module communication via EventBus - All magic numbers in Constants.js - No title screen — boot directly into gameplay - No in-game score HUD — Play.fun widget handles score display - Mobile-first input: touch + keyboard, use unified InputSystem pattern - Import SAFE_ZONE from Constants.js — keep UI below SAFE_ZONE.TOP - Minimum 7-8% canvas width for collectibles/hazards - Character sizing: GAME.WIDTH * 0.12 to GAME.WIDTH * 0.15 for character-driven games - Preserve the template's createButton() helper in GameOverScene — do NOT rewrite it - Wire spectacle events: SPECTACLE_ENTRANCE, SPECTACLE_ACTION, SPECTACLE_HIT, SPECTACLE_COMBO, SPECTACLE_STREAK, SPECTACLE_NEAR_MISS - Add isMuted to GameState for future audio support - Ensure restart is clean — 3 restarts in a row should work identically

Step 2: Verify

After the subagent returns:

  1. Run npm run build in the project directory to confirm no errors
  2. If the build fails, fix the issues (up to 2 retries)
  3. If Playwright MCP is available, navigate to the dev server, take a screenshot, and do a quick visual check

Example Usage

2D game

/quick-game 2d asteroid-dodge

Result: Copies Phaser template → implements player ship, asteroid spawning, collision death, score counter, restart flow → dev server running at localhost:3000 in ~2 minutes. Shapes only, no polish.

From tweet

/quick-game https://x.com/user/status/123456

Result: Fetches tweet → abstracts game concept → scaffolds and implements a playable prototype inspired by the tweet content.

Troubleshooting

Game scaffolds but won't start

Cause: Vite config or import paths incorrect. Fix: Verify vite.config.js has correct root. Check that main.js is referenced in index.html.

Missing core files

Cause: Scaffold skipped EventBus/GameState/Constants. Fix: Every game needs core/EventBus.js, core/GameState.js, core/Constants.js. Re-run scaffold or create manually.

Done

Tell the user:

Your game is running at http://localhost:<port>. Open it in a browser to play! To keep building, run these commands: - /add-assets — replace shapes with pixel art sprites - /design-game — add visual polish (particles, gradients, juice) - /add-audio — add music and sound effects - /game-deploy — deploy to the web - /monetize-game — add Play.fun integration Or run /make-game next time for the full pipeline.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.17%
按下载量换算789

Claude

30.89%
按下载量换算673

Cursor

16.57%
按下载量换算361

Gemini CLI

8.31%
按下载量换算181

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills