project-creator

Create projects from BUILDER stack templates with PM2 deployment.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/nera0875/BUILDER --skill project-creator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: project-creator
Source: https://github.com/nera0875/BUILDER/tree/main/.claude/skills/project-creator
Command: npx skills add https://github.com/nera0875/BUILDER --skill project-creator

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill eliminates the manual, error-prone steps required to create and deploy new projects. It clones the BUILDER stack, configures ports, builds, and deploys automatically, saving time and reducing setup complexity.

Core Features & Use Cases

  • Automated project creation: From Dashboard or API, spin up a full project from the BUILDER stack.
  • Port management & PM2 deployment: Automatically assigns a port and deploys with PM2 for reliable run-time.
  • One-click deployment: Triggered via Dashboard or API, enabling rapid iteration and scalable project delivery.

Quick Start

Click the + New Project button on the Dashboard or send POST /api/projects/create with { name: "my-app" } to start. The Skill will validate the name, clone the BUILDER stack, initialize the build context, install dependencies, and deploy on the next available port.

Frequently Asked Questions about project-creator

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

FAQPage Schema
How do I automate project creation and deployment from a template?

Automated project creation clones a BUILDER stack template, assigns a port, installs dependencies, builds production, and deploys via PM2 in one action. Trigger it via the Dashboard 'New Project' button or POST /api/projects/create with a project name.

Can I deploy projects automatically with PM2 and port assignment?

Yes. PM2 deployment with auto-assigned ports is built into the project-creator workflow. After cloning and building, the Skill deploys on the next available port and exposes a health-check endpoint for monitoring.

What naming rules apply when creating new projects?

Project names must be kebab-case, 3-50 characters long, and unique. The Skill validates names before cloning the BUILDER stack and proceeding with setup and deployment.

How does port management work during automated deployment?

The Skill automatically assigns an available port to each new project during PM2 deployment, eliminating manual port configuration and conflicts across multiple running projects.

What happens after the BUILDER stack is cloned?

After cloning, the Skill initializes the .build/ directory, installs dependencies, builds for production, deploys via PM2 on an auto-assigned port, and provides a health-check endpoint.

Can I trigger project creation via API or command line?

Yes. Use POST /api/projects/create with { name: "project-name" }, the Dashboard 'New Project' button, or the create-project [name] command to initiate automated provisioning.