From game-creator
Reviews existing game codebases for architecture patterns like EventBus/GameState, performance issues like delta time/object pooling, code quality, and monetization readiness.
npx claudepluginhub opusgamelabs/game-creator --plugin game-creatorThis skill uses the workspace's default tool permissions.
- Take your time to do this thoroughly
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Analyze an existing game codebase and provide a structured review. This is the final step in the pipeline — it checks everything is wired up correctly and gives you a quality score.
Analyze the game at $ARGUMENTS (or the current directory if no path given).
package.json for dependencies and scriptsCheck for these required patterns and report compliance:
Check for common issues:
getDelta() capped to prevent death spirals?domain:action, files use PascalCaseProvide a structured report with:
/review-game examples/flappy-bird
Result: Architecture 6/6, Performance 4/5, Code Quality 4/4, Monetization 2/4 → Top recommendations: add Play.fun SDK, add object pooling for pipes, add delta time capping. Positive findings: clean EventBus usage, proper GameState reset, well-organized directory structure.
Tell the user:
Your game has been through the full pipeline! Here's what you have:
- Scaffolded architecture (
/make-game)- Visual polish (
/design-game)- Music and sound effects (
/add-audio)- Automated tests (
/qa-game)- Architecture review (
/review-game)What's next?
- Add new gameplay features with
/game-creator:add-feature [description]- Deploy to the web — run
npm run build && ~/.agents/skills/here-now/scripts/publish.sh dist/for instant hosting, or use GitHub Pages, Vercel, Netlify, itch.io- Keep iterating! Run
/design-game,/add-audio, or/review-gameagain anytime after making changes.