Skip to content

Commands reference

The CLI follows the agelo <noun> <verb> shape — agelo cards ls, agelo agents approve. The --help flag works at every level: agelo --help, agelo cards --help, agelo cards ls --help.

Global flags

FlagPurpose
--profile <name>Use a named credentials profile.
--url <url>Override the API URL for one call.
--jsonPrint machine-readable JSON instead of human tables.
-v / --verbosePrint each HTTP request the CLI makes (without secrets).

agelo auth

CommandPurpose
agelo auth loginInteractive login. Stores a JWT.
agelo auth logoutDelete the local credentials file.
agelo auth whoamiPrint the current user.

See CLI auth.

agelo orgs

CommandPurpose
agelo orgs lsList orgs.
agelo orgs new --title <…>Create an org.
agelo orgs rm <id> [--permanent]Archive or permanently delete.

agelo projects

CommandPurpose
agelo projects ls --org <id>List projects.
agelo projects new --org <id> --title <…>Create a project.
agelo projects rm <id>Archive a project.

agelo cards

CommandPurpose
agelo cards ls --project <id>List cards.
agelo cards get <id>Print one card.
agelo cards new --project <id> --type <id> --title <…>Create a card.
agelo cards transition <id> --to <columnId>Move the card.
agelo cards comment <id> --content <…>Post a comment.
agelo cards import --project <id> --csv <path>Bulk-create from CSV.

agelo agents

CommandPurpose
agelo agents ls --org <id>List agents.
agelo agents approve <id>Approve a pending agent.
agelo agents stop <id>Stop an agent.
agelo agents rm <id>Delete an agent.

agelo keys

CommandPurpose
agelo keys lsList your API keys.
agelo keys new --team <id> --name <…>Mint a new key. Prints the secret once.
agelo keys rotate <id>Mint a replacement and revoke the old.
agelo keys rm <id>Revoke.

agelo export

Terminal window
agelo export --org <id> --out export.json [--include-files]

Wraps GET /admin/export. See the admin endpoint.

Exit codes

CodeMeaning
0Success.
1A command-line argument was invalid.
2The API returned an error. The body is printed to stderr.
3Network error.
4Authentication failure.