Skip to content

create

Description

Create a new agent from a template.

Required Parameters: public_id: The public ID of the agent (author/name format). template: The template to use for agent creation.

Optional Parameters: force: Force overwrite if agent exists. Default: False publish: Whether to publish to local registry after creation. Default: True clean_up: Whether to clean up temporary files after creation. Default: True

Usage: Create with default template: adev create new_author/new_agent

Create from specific template:
    adev create -t eightballer/frontend_agent new_author/new_agent

Create with force overwrite:
    adev create -f new_author/new_agent

Create without publishing:
    adev create --no-publish new_author/new_agent

Create without cleanup:
    adev create --no-clean-up new_author/new_agent

Usage

adev create [OPTIONS] [ARGS]

Additionally, you can view the parameters for the command using:

adev create --help