agentuity avatar

agentuity-cli-project-create

Create a new project. Use for project management operations

作者 agentuity|オープンソース

Project Create

Create a new project

Usage

agentuity project create [options]

Options

OptionTypeRequiredDefaultDescription
--namestringYes-Project name
--dirstringYes-Directory to create the project in
--domainsarrayYes-Array of custom domains
--templatestringYes-Template to use
--templateDirstringYes-Local template directory for testing (e.g., ./packages/templates)
--templateBranchstringYes-GitHub branch to use for templates (default: main)
--installbooleanNotrueRun bun install after creating the project (use --no-install to skip)
--buildbooleanNotrueRun bun run build after installing (use --no-build to skip)
--confirmbooleanYes-Skip confirmation prompts
--registerbooleanNotrueRegister 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
successbooleanWhether the operation succeeded
namestringProject name
pathstringProject directory path
projectIdstringProject ID if registered
templatestringTemplate used
installedbooleanWhether dependencies were installed
builtbooleanWhether the project was built
domainsarrayArray of custom domains