create¶
Description¶
Create a new agent from a template.
Required Parameters:
public_id: The public ID of the agent (author/name format).
template (-t): The template to use for agent creation.
Optional Parameters:
force (-f): Force overwrite if agent exists locally. (Default: False)
fetch (--fetch/--no-fetch): Whether to fetch agent from registry or use local package. (Default: True)
clean_up (-c): Whether to clean up temporary files after creation. (Default: True)
Examples¶
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