productivity
Accelo CLI for Headless Automation
Use the Accelo CLI for headless automation with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 6 read 1 write Bearer token auth
Accelo CLI for Headless Automation
Use KosmoKrator as a non-interactive integration runtime for local automations and wrappers.
Use headless automation when another tool needs a stable local command surface. The Accelo CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Accelo CLI for Headless Automation
kosmokrator integrations:configure accelo --set access_token="$ACCELO_ACCESS_TOKEN" --set deployment="$ACCELO_DEPLOYMENT" --enable --read allow --write ask --json
kosmo integrations:call accelo.accelo_list_tickets '{"limit":1,"page":1,"status":"example_status"}' --json Discovery Before Execution
Agents and scripts can inspect Accelo docs and schemas before choosing a function.
kosmo integrations:docs accelo --json
kosmo integrations:docs accelo.accelo_list_tickets --json
kosmo integrations:schema accelo.accelo_list_tickets --json
kosmo integrations:search "Accelo" --json
kosmo integrations:list --json Useful Accelo CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
accelo.accelo_list_tickets | Read | limit, page, status | List support tickets in Accelo. Returns a paginated list of tickets, optionally filtered by status. |
accelo.accelo_get_ticket | Read | id | Get details of a specific support ticket in Accelo by its ID. |
accelo.accelo_create_ticket | Write | title, body, contract_id, priority | Create a new support ticket in Accelo. Requires a title and body. Optionally associate with a contract and set priority. |
accelo.accelo_list_tasks | Read | limit, page, status | List tasks in Accelo. Returns a paginated list of tasks, optionally filtered by status. |
accelo.accelo_get_task | Read | id | Get details of a specific task in Accelo by its ID. |
accelo.accelo_list_projects | Read | limit, page, status | List projects in Accelo. Returns a paginated list of projects, optionally filtered by status. |
accelo.accelo_get_current_user | Read | none | Get the profile of the currently authenticated Accelo user. Use this to verify credentials and see user details. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.