create-puzzmo
v1.0.12
Published
Create a Puzzmo game project
Readme
create-puzzmo
Scaffold a new Puzzmo game project.
yarn create puzzmo game
npm create puzzmo game
pnpm create puzzmo gameWhat it does
This is a thin shim that forwards to the puzzmo game create command from @puzzmo/cli. If the CLI isn't installed, it will be installed automatically.
Options
All options are forwarded to puzzmo game create:
yarn create puzzmo game [accesstoken] --name <name> --url <url> --agent <agent>| Option | Description |
| ----------------- | -------------------------------------------------------- |
| [accesstoken] | Optional Puzzmo API token for deployment setup |
| --name <name> | Game name (prompted if not provided) |
| --url <url> | Source URL to import an HTML game from |
| --agent <agent> | LLM agent to use: claude, codex, gemini, or none |
Workflow
- Asks for a game name
- Selects creation mode (currently: import from HTML page)
- Downloads the HTML page and all referenced assets
- Detects installed LLM agents (Claude Code, Codex, etc.)
- Installs Puzzmo migration skills
- Runs an automated pipeline that converts the game step-by-step:
- Convert to Vite
- Integrate Puzzmo SDK
- Wire up game completion
- Apply Puzzmo theme tokens
- Add gameplay statistics (deeds)
- Configure leaderboards
- Create app metadata
- Set up deployment
Each step is verified with a build check and committed to git.
