Claude-skill-registry agentuity-cli-project-create
Create a new project. Use for project management operations
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/agentuity-cli-project-create" ~/.claude/skills/majiayu000-claude-skill-registry-agentuity-cli-project-create && rm -rf "$T"
manifest:
skills/data/agentuity-cli-project-create/SKILL.mdsource content
Project Create
Create a new project
Usage
agentuity project create [options]
Options
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| string | Yes | - | Project name |
| string | Yes | - | Directory to create the project in |
| array | Yes | - | Array of custom domains |
| string | Yes | - | Template to use |
| string | Yes | - | Local template directory for testing (e.g., ./packages/templates) |
| string | Yes | - | GitHub branch to use for templates (default: main) |
| boolean | No | | Run bun install after creating the project (use --no-install to skip) |
| boolean | No | | Run bun run build after installing (use --no-build to skip) |
| boolean | Yes | - | Skip confirmation prompts |
| boolean | No | | Register the project, if authenticated (use --no-register to skip) |
Examples
Create new item:
bunx @agentuity/cli project create
Create new item:
bunx @agentuity/cli project create --name my-ai-agent
Create new item:
bunx @agentuity/cli project create --name customer-service-bot --dir ~/projects/agent
Use no install option:
bunx @agentuity/cli project create --template basic --no-install
Use no register option:
bunx @agentuity/cli project new --no-register
Output
Returns JSON object:
{ "success": "boolean", "name": "string", "path": "string", "projectId": "string", "template": "string", "installed": "boolean", "built": "boolean", "domains": "array" }
| Field | Type | Description |
|---|---|---|
| boolean | Whether the operation succeeded |
| string | Project name |
| string | Project directory path |
| string | Project ID if registered |
| string | Template used |
| boolean | Whether dependencies were installed |
| boolean | Whether the project was built |
| array | Array of custom domains |