Daita Logo

Management Commands

Monitor project status, view deployment history, and manage agents and deployments.

#status

Show the status of your local project and its cloud deployments.

bash
daita status

Displays local project metadata (from daita-project.yaml) if you are inside a Daita project directory, then shows the five most recent cloud deployments for that project. Requires DAITA_API_KEY for cloud information.

#logs

View the deployment history for the current project.

bash
daita logs

Options:

FlagShortDefaultDescription
--lines-n10Number of deployments to display
--follow-fPoll for new deployments in real-time
bash
# Show last 25 deployments
daita logs -n 25
 
# Watch for new deployments
daita logs --follow

The output is filtered to deployments matching the local project name. Timestamps, status icons, and deployment IDs are shown for each entry.

#agents

List and inspect deployed agents.

#List agents

bash
daita agents list

Options:

FlagDefaultDescription
--typeFilter by type: agent or workflow
--statusFilter by status: active or inactive
--page1Page number
--per-page20Results per page

#Show agent details

bash
daita agents show <agent_id>

Returns full agent metadata including configuration, version, and associated project.

#List deployed agents

bash
daita agents deployed

Lists all agents that are currently live in the cloud with their deployment configuration.

#deployments

Manage project deployments.

#List deployments

bash
daita deployments list

Options:

FlagDefaultDescription
--limit10Number of deployments to return

#Show deployment details

bash
daita deployments show <deployment_id>

#Deployment history

bash
daita deployments history <project_name>

Options:

FlagDefaultDescription
--limit10Number of historical deployments to return

#Delete a deployment

bash
daita deployments delete <deployment_id>

Options:

FlagDescription
--forceSkip the confirmation prompt

#Rollback

Roll back to a previous deployment:

bash
daita deployments rollback <deployment_id>

Options:

FlagDescription
--forceSkip the confirmation prompt