CLI

Project Commands

Commands for creating and managing Agentuity projects

The project commands allow you to create and manage Agentuity projects.

project create

Creates a new Agentuity project.

Aliases

agentuity create (shortcut for agentuity project create) agentuity project new

Usage

agentuity project create [name] [flags]

Flags

FlagDescription
--dir, -dThe directory to create the project in
--provider, -pThe provider to use for the project

Examples

Create a new project with interactive prompts:

$ agentuity project create my-project
 Project created successfully
 
Next steps:
 
1. Switch into the project directory at ~/my-project
2. Run agentuity run to run the project locally in development mode
3. Run agentuity deploy to deploy the project to the Agentuity Agent Cloud
 
🏠 Access your project at https://app.agentuity.com/projects/proj_123456

Create a new project with a specific provider:

$ agentuity project create my-project --provider javascript
 Project created successfully

project init

Initializes an existing directory as an Agentuity project.

Aliases

agentuity init (shortcut for agentuity project init)

Usage

agentuity project init [directory]

Examples

Initialize the current directory as an Agentuity project:

$ agentuity project init .
 Project initialized successfully

On this page