Use Template
Clone a game template from the gallery into a new project. This is a fast copy — working code in seconds, not an AI pipeline.
Behavior
Parse arguments: <template-id> [project-name]
- If no arguments provided, read
site/manifest.json, display a numbered list of all templates with their engine/complexity/description, and ask the user to pick one.
template-id is required. project-name defaults to template-id.
Look up template in site/manifest.json by id. If not found, show available IDs and abort.
Determine target directory:
- If current working directory is inside the
game-creator repository → examples/<project-name>/
- Otherwise →
./<project-name>/
- If target already exists, abort with error.
Copy the template source directory to the target, excluding:
node_modules/
dist/
output/
.herenow/
progress.md
test-results/
playwright-report/
Update project metadata:
- In
package.json: set "name" to the project name
- In
index.html (if exists): update <title> to a formatted version of the project name
Install dependencies: Run npm install in the target directory.
Print next steps:
Template cloned successfully!
cd <project-name>
npm run dev
Implementation
const fs = require('fs');
const path = require('path');
const { execSync } = require('child_process');
// Find game-creator root (contains site/manifest.json)
function findRoot(dir) {
let d = dir;
while (d !== path.dirname(d)) {
if (fs.existsSync(path.join(d, 'gallery', 'manifest.json'))) return d;
d = path.dirname(d);
}
return null;
}
const root = findRoot(process.cwd());
const manifest = JSON.parse(fs.readFileSync(path.join(root, 'gallery', 'manifest.json'), 'utf-8'));
// Parse args
const [templateId, projectName] = args; // provided by the agent
const template = manifest.find(t => t.id === templateId);
const name = projectName || templateId;
// Validate project name — reject path traversal and special characters
if (/[\/\\]|^\.\.?$|\.\./.test(name)) {
throw new Error(`Invalid project name: "${name}". Must not contain path separators or ".." sequences.`);
}
if (!/^[a-zA-Z0-9][a-zA-Z0-9._-]*$/.test(name)) {
throw new Error(`Invalid project name: "${name}". Use only alphanumeric characters, hyphens, underscores, and dots.`);
}
// Determine target
const inGameCreator = process.cwd().startsWith(root);
const target = inGameCreator
? path.join(root, 'examples', name)
: path.join(process.cwd(), name);
// Verify resolved path stays within expected parent directory
const expectedParent = inGameCreator ? path.join(root, 'examples') : process.cwd();
if (!path.resolve(target).startsWith(path.resolve(expectedParent))) {
throw new Error('Target directory resolved outside expected parent. Aborting.');
}
// Copy with exclusions
const EXCLUDE = ['node_modules', 'dist', 'output', '.herenow', 'progress.md', 'test-results', 'playwright-report'];
function copyDir(src, dst) {
fs.mkdirSync(dst, { recursive: true });
for (const entry of fs.readdirSync(src, { withFileTypes: true })) {
if (EXCLUDE.includes(entry.name)) continue;
const s = path.join(src, entry.name);
const d = path.join(dst, entry.name);
if (entry.isDirectory()) copyDir(s, d);
else fs.copyFileSync(s, d);
}
}
copyDir(path.join(root, template.source), target);
// Update package.json
const pkgPath = path.join(target, 'package.json');
if (fs.existsSync(pkgPath)) {
const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8'));
pkg.name = name;
fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + '\n');
}
// Update index.html title
const indexPath = path.join(target, 'index.html');
if (fs.existsSync(indexPath)) {
let html = fs.readFileSync(indexPath, 'utf-8');
const prettyName = name.replace(/[-_]/g, ' ').replace(/\b\w/g, c => c.toUpperCase());
html = html.replace(/<title>[^<]*<\/title>/, `<title>${prettyName}</title>`);
fs.writeFileSync(indexPath, html);
}
// Install
execSync('npm install', { cwd: target, stdio: 'inherit' });
// Optional anonymous telemetry — tracks which templates are popular
// Data sent: event type ("clone"), template ID, source ("skill"), schema version
// No PII, IP addresses, file paths, or user-identifiable data is transmitted
// Opt out: set DO_NOT_TRACK=1 or DISABLE_TELEMETRY=1 in your environment
if (!process.env.DO_NOT_TRACK && !process.env.DISABLE_TELEMETRY) {
const https = require('https');
const telemetryUrl = process.env.TELEMETRY_URL || 'https://gallery-telemetry.up.railway.app';
https.get(`${telemetryUrl}/t?event=clone&template=${encodeURIComponent(templateId)}&source=skill&v=1`)
.on('error', () => {});
}
Example Usage
/use-template flappy-bird my-game
/use-template threejs-3d-starter space-shooter
/use-template castle-siege
Security Notes
- Path validation: Project names are validated to reject path traversal (
..), path separators, and special characters. The resolved target path is verified to stay within the expected parent directory.
- npm install: Runs
npm install from the copied template's package.json, which contains only pinned dependencies from the template (Phaser/Three.js, Vite). No arbitrary packages are installed.
- Telemetry: Anonymous, opt-out usage telemetry sends only the template ID and event type (no PII, paths, or user data). Disable with
DO_NOT_TRACK=1 or DISABLE_TELEMETRY=1 environment variables.
- Template source: Templates are copied from the local
site/manifest.json registry within the plugin — no external templates are fetched at clone time.
Key Difference from /viral-game and /make-game
/use-template is a 10-second copy. You get working, runnable code instantly and customize it manually. /viral-game is a 10-minute AI pipeline that scaffolds, designs, adds audio, tests, deploys, and monetizes from a text prompt or tweet URL — opinionated and one-shot. /make-game is the deeper, multi-session game-dev workflow with milestones, ADRs, and docs/STATE.md for projects that need to evolve over time.
1---2name: use-template3description: Clone a game template from the gallery as a starting point. Use when the user says "use a template", "start from a template", "clone flappy-bird", "use the platformer template", or wants to quickly bootstrap a game from an existing example. Do NOT use for creating a game from scratch (use viral-game for one-shot builds or make-game for milestone-driven projects).4license: MIT5---67# Use Template89Clone a game template from the gallery into a new project. This is a fast copy — working code in seconds, not an AI pipeline.1011## Behavior12131. **Parse arguments**: `<template-id> [project-name]`14 - If no arguments provided, read `site/manifest.json`, display a numbered list of all templates with their engine/complexity/description, and ask the user to pick one.15 - `template-id` is required. `project-name` defaults to `template-id`.16172. **Look up template** in `site/manifest.json` by `id`. If not found, show available IDs and abort.18193. **Determine target directory**:20 - If current working directory is inside the `game-creator` repository → `examples/<project-name>/`21 - Otherwise → `./<project-name>/`22 - If target already exists, abort with error.23244. **Copy the template source directory** to the target, **excluding**:25 - `node_modules/`26 - `dist/`27 - `output/`28 - `.herenow/`29 - `progress.md`30 - `test-results/`31 - `playwright-report/`32335. **Update project metadata**:34 - In `package.json`: set `"name"` to the project name35 - In `index.html` (if exists): update `<title>` to a formatted version of the project name36376. **Install dependencies**: Run `npm install` in the target directory.38397. **Print next steps**:40 ```41 Template cloned successfully!4243 cd <project-name>44 npm run dev45 ```4647## Implementation4849```javascript50const fs = require('fs');51const path = require('path');52const { execSync } = require('child_process');5354// Find game-creator root (contains site/manifest.json)55function findRoot(dir) {56 let d = dir;57 while (d !== path.dirname(d)) {58 if (fs.existsSync(path.join(d, 'gallery', 'manifest.json'))) return d;59 d = path.dirname(d);60 }61 return null;62}6364const root = findRoot(process.cwd());65const manifest = JSON.parse(fs.readFileSync(path.join(root, 'gallery', 'manifest.json'), 'utf-8'));6667// Parse args68const [templateId, projectName] = args; // provided by the agent69const template = manifest.find(t => t.id === templateId);70const name = projectName || templateId;7172// Validate project name — reject path traversal and special characters73if (/[\/\\]|^\.\.?$|\.\./.test(name)) {74 throw new Error(`Invalid project name: "${name}". Must not contain path separators or ".." sequences.`);75}76if (!/^[a-zA-Z0-9][a-zA-Z0-9._-]*$/.test(name)) {77 throw new Error(`Invalid project name: "${name}". Use only alphanumeric characters, hyphens, underscores, and dots.`);78}7980// Determine target81const inGameCreator = process.cwd().startsWith(root);82const target = inGameCreator83 ? path.join(root, 'examples', name)84 : path.join(process.cwd(), name);8586// Verify resolved path stays within expected parent directory87const expectedParent = inGameCreator ? path.join(root, 'examples') : process.cwd();88if (!path.resolve(target).startsWith(path.resolve(expectedParent))) {89 throw new Error('Target directory resolved outside expected parent. Aborting.');90}9192// Copy with exclusions93const EXCLUDE = ['node_modules', 'dist', 'output', '.herenow', 'progress.md', 'test-results', 'playwright-report'];9495function copyDir(src, dst) {96 fs.mkdirSync(dst, { recursive: true });97 for (const entry of fs.readdirSync(src, { withFileTypes: true })) {98 if (EXCLUDE.includes(entry.name)) continue;99 const s = path.join(src, entry.name);100 const d = path.join(dst, entry.name);101 if (entry.isDirectory()) copyDir(s, d);102 else fs.copyFileSync(s, d);103 }104}105106copyDir(path.join(root, template.source), target);107108// Update package.json109const pkgPath = path.join(target, 'package.json');110if (fs.existsSync(pkgPath)) {111 const pkg = JSON.parse(fs.readFileSync(pkgPath, 'utf-8'));112 pkg.name = name;113 fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + '\n');114}115116// Update index.html title117const indexPath = path.join(target, 'index.html');118if (fs.existsSync(indexPath)) {119 let html = fs.readFileSync(indexPath, 'utf-8');120 const prettyName = name.replace(/[-_]/g, ' ').replace(/\b\w/g, c => c.toUpperCase());121 html = html.replace(/<title>[^<]*<\/title>/, `<title>${prettyName}</title>`);122 fs.writeFileSync(indexPath, html);123}124125// Install126execSync('npm install', { cwd: target, stdio: 'inherit' });127128// Optional anonymous telemetry — tracks which templates are popular129// Data sent: event type ("clone"), template ID, source ("skill"), schema version130// No PII, IP addresses, file paths, or user-identifiable data is transmitted131// Opt out: set DO_NOT_TRACK=1 or DISABLE_TELEMETRY=1 in your environment132if (!process.env.DO_NOT_TRACK && !process.env.DISABLE_TELEMETRY) {133 const https = require('https');134 const telemetryUrl = process.env.TELEMETRY_URL || 'https://gallery-telemetry.up.railway.app';135 https.get(`${telemetryUrl}/t?event=clone&template=${encodeURIComponent(templateId)}&source=skill&v=1`)136 .on('error', () => {});137}138```139140## Example Usage141142```143/use-template flappy-bird my-game144/use-template threejs-3d-starter space-shooter145/use-template castle-siege146```147148## Security Notes149150- **Path validation**: Project names are validated to reject path traversal (`..`), path separators, and special characters. The resolved target path is verified to stay within the expected parent directory.151- **npm install**: Runs `npm install` from the copied template's `package.json`, which contains only pinned dependencies from the template (Phaser/Three.js, Vite). No arbitrary packages are installed.152- **Telemetry**: Anonymous, opt-out usage telemetry sends only the template ID and event type (no PII, paths, or user data). Disable with `DO_NOT_TRACK=1` or `DISABLE_TELEMETRY=1` environment variables.153- **Template source**: Templates are copied from the local `site/manifest.json` registry within the plugin — no external templates are fetched at clone time.154155## Key Difference from /viral-game and /make-game156157`/use-template` is a **10-second copy**. You get working, runnable code instantly and customize it manually. `/viral-game` is a **10-minute AI pipeline** that scaffolds, designs, adds audio, tests, deploys, and monetizes from a text prompt or tweet URL — opinionated and one-shot. `/make-game` is the deeper, multi-session game-dev workflow with milestones, ADRs, and `docs/STATE.md` for projects that need to evolve over time.