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.
daita statusDisplays 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.
daita logsOptions:
| Flag | Short | Default | Description |
|---|---|---|---|
--lines | -n | 10 | Number of deployments to display |
--follow | -f | — | Poll for new deployments in real-time |
# Show last 25 deployments
daita logs -n 25
# Watch for new deployments
daita logs --followThe 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
daita agents listOptions:
| Flag | Default | Description |
|---|---|---|
--type | — | Filter by type: agent or workflow |
--status | — | Filter by status: active or inactive |
--page | 1 | Page number |
--per-page | 20 | Results per page |
#Show agent details
daita agents show <agent_id>Returns full agent metadata including configuration, version, and associated project.
#List deployed agents
daita agents deployedLists all agents that are currently live in the cloud with their deployment configuration.
#deployments
Manage project deployments.
#List deployments
daita deployments listOptions:
| Flag | Default | Description |
|---|---|---|
--limit | 10 | Number of deployments to return |
#Show deployment details
daita deployments show <deployment_id>#Deployment history
daita deployments history <project_name>Options:
| Flag | Default | Description |
|---|---|---|
--limit | 10 | Number of historical deployments to return |
#Delete a deployment
daita deployments delete <deployment_id>Options:
| Flag | Description |
|---|---|
--force | Skip the confirmation prompt |
#Rollback
Roll back to a previous deployment:
daita deployments rollback <deployment_id>Options:
| Flag | Description |
|---|---|
--force | Skip the confirmation prompt |