
Agentuity Cli Project Create
- 1 installs
- Updated May 13, 2026
- agentuity/sdk-explorer
agentuity-cli-project-create is a Claude Code skill that documents the `agentuity project create` command for scaffolding a new Agentuity project from a template.
About
agentuity-cli-project-create is a Claude Code skill documenting the Agentuity CLI command that creates a new project. It scaffolds from a chosen template into a target directory, runs bun install and bun run build by default (toggleable with --no-install and --no-build), and can register the project when authenticated. It returns a JSON result including the project name, path, projectId, and template. A developer uses it to bootstrap a new Agentuity project from the terminal.
- Documents `agentuity project create` to scaffold a new project from a template
- Options for name, dir, template, custom domains, install, build, and register
- Runs bun install and bun run build by default, returns a JSON result with projectId
Agentuity Cli Project Create by the numbers
- 1 all-time installs (skills.sh)
- Ranked #467 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
agentuity-cli-project-create capabilities & compatibility
- Capabilities
- project create · project scaffold · cli command
- Use cases
- devops · api development
- Runs
- Hosted SaaS
What agentuity-cli-project-create says it does
Create a new project. Use for project management operations
bunx @agentuity/cli project create --name customer-service-bot --dir ~/projects/agent
npx skills add https://github.com/agentuity/sdk-explorer --skill agentuity-cli-project-createAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| Last updated | May 13, 2026 |
| Repository | agentuity/sdk-explorer ↗ |
What it does
Scaffolding a new Agentuity project from a template via the CLI.
Who is it for?
Bootstrapping a new Agentuity project from a template
Skip if: Modifying or deleting existing projects
When should I use this skill?
You need to create and scaffold a new Agentuity project from the CLI.
What you get
A new project directory scaffolded from a template, optionally installed, built, and registered.
- A new scaffolded Agentuity project directory with a JSON result
By the numbers
- 3 boolean defaults: --install true, --build true, --register true
Files
Project Create
Create a new project
Usage
agentuity project create [options]Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
--name | string | Yes | - | Project name |
--dir | string | Yes | - | Directory to create the project in |
--domains | array | Yes | - | Array of custom domains |
--template | string | Yes | - | Template to use |
--templateDir | string | Yes | - | Local template directory for testing (e.g., ./packages/templates) |
--templateBranch | string | Yes | - | GitHub branch to use for templates (default: main) |
--install | boolean | No | true | Run bun install after creating the project (use --no-install to skip) |
--build | boolean | No | true | Run bun run build after installing (use --no-build to skip) |
--confirm | boolean | Yes | - | Skip confirmation prompts |
--register | boolean | No | true | Register the project, if authenticated (use --no-register to skip) |
Examples
Create new item:
bunx @agentuity/cli project createCreate new item:
bunx @agentuity/cli project create --name my-ai-agentCreate new item:
bunx @agentuity/cli project create --name customer-service-bot --dir ~/projects/agentUse no install option:
bunx @agentuity/cli project create --template basic --no-installUse no register option:
bunx @agentuity/cli project new --no-registerOutput
Returns JSON object:
{
"success": "boolean",
"name": "string",
"path": "string",
"projectId": "string",
"template": "string",
"installed": "boolean",
"built": "boolean",
"domains": "array"
}| Field | Type | Description |
|---|---|---|
success | boolean | Whether the operation succeeded |
name | string | Project name |
path | string | Project directory path |
projectId | string | Project ID if registered |
template | string | Template used |
installed | boolean | Whether dependencies were installed |
built | boolean | Whether the project was built |
domains | array | Array of custom domains |