use-template

Clone a game template from the gallery into a new project directory.

307|37|Updated Jan 28, 2026
One-click install
npx skills add https://github.com/PlayableIntelligence/game-creator --skill use-template
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: use-template
Source: https://github.com/PlayableIntelligence/game-creator/tree/main/skills/use-template
Command: npx skills add https://github.com/PlayableIntelligence/game-creator --skill use-template

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Clone a game template from the gallery to bootstrap a new project quickly, saving time compared with building from scratch.

Core Features & Use Cases

  • Fast bootstrapping: Copy a working template into a new project with minimal setup.
  • Consistent setup: Update project metadata like package.json and index.html title to reflect the new project name.
  • Safe copy & scope: Excludes noisy artifacts (node_modules, build outputs) to ensure a clean clone.

Quick Start

Provide a template-id and optional project-name to clone a template, then npm install in the new project to finish setup.

Frequently Asked Questions about use-template

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
Do I need npm installed to set up a cloned game template?

Yes, npm is required to set up a cloned game template because the tool executes npm install during the cloning process. This automatically fetches and installs all project dependencies defined in the template's package.json.

How do I scaffold a new game project from a starter template?

To scaffold a game project from a starter template, provide a template-id and optional project-name. The tool copies the template files, updates package.json and index.html titles, excludes build artifacts, and runs npm install automatically to finish setup.

Can I clone a game template outside the game-creator repository?

Yes, you can clone a game template as a standalone project outside the game-creator repository. The tool automatically detects your current directory context and determines the correct target path for the new project folder accordingly.

What is excluded when cloning a template to a new project directory?

When cloning a template to a new project directory, noisy build artifacts like node_modules and build outputs are excluded. This ensures a clean copy of the starter project, requiring a fresh npm install to fetch dependencies.

How does the template clone process handle project name validation?

The template clone process validates the provided project-name to prevent path traversal vulnerabilities. This security check ensures the new project directory is created safely within the intended target scope without escaping the file system boundaries.

Do I need npm installed to set up a cloned game template?

Yes, npm is required to set up a cloned game template because the tool executes npm install during the cloning process. This automatically fetches and installs all project dependencies defined in the template's package.json.