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.md
source content

Project Create

Create a new project

Usage

agentuity project create [options]

Options

OptionTypeRequiredDefaultDescription
--name
stringYes-Project name
--dir
stringYes-Directory to create the project in
--domains
arrayYes-Array of custom domains
--template
stringYes-Template to use
--templateDir
stringYes-Local template directory for testing (e.g., ./packages/templates)
--templateBranch
stringYes-GitHub branch to use for templates (default: main)
--install
booleanNo
true
Run bun install after creating the project (use --no-install to skip)
--build
booleanNo
true
Run bun run build after installing (use --no-build to skip)
--confirm
booleanYes-Skip confirmation prompts
--register
booleanNo
true
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"
}
FieldTypeDescription
success
booleanWhether the operation succeeded
name
stringProject name
path
stringProject directory path
projectId
stringProject ID if registered
template
stringTemplate used
installed
booleanWhether dependencies were installed
built
booleanWhether the project was built
domains
arrayArray of custom domains