create_project
Create a project by providing a display name and a URL-safe slug. Pro accounts can have up to 5 projects, Team accounts unlimited. Free accounts cannot create.
Instructions
Create a new project (POST /v1/projects). name = display name; slug = a short URL-safe identifier (/^[a-z][a-z0-9-]{0,31}$/). Pro caps at 5 projects, Team unlimited, Free cannot create (403). As a mutation, session-authenticated requests enforce Origin/Referer (dashboard-driven).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Project display name (1-64 chars) | |
| slug | Yes | Short URL-safe identifier (/^[a-z][a-z0-9-]{0,31}$/, up to 32 chars, starts with a lowercase letter, hyphens allowed) |