other
Fellow CLI for Coding Agents
Use the Fellow CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.
6 functions 5 read 1 write Bearer token auth
Fellow CLI for Coding Agents
Let coding agents discover schemas and execute integration functions through CLI commands or MCP.
Use this pattern when another coding agent needs exact commands and schema discovery. The Fellow CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Fellow CLI for Coding Agents
kosmokrator integrations:configure fellow --set access_token="$FELLOW_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call fellow.fellow_list_meetings '{"date_from":"example_date_from","date_to":"example_date_to","cursor":"example_cursor","limit":1}' --json Discovery Before Execution
Agents and scripts can inspect Fellow docs and schemas before choosing a function.
kosmo integrations:docs fellow --json
kosmo integrations:docs fellow.fellow_list_meetings --json
kosmo integrations:schema fellow.fellow_list_meetings --json
kosmo integrations:search "Fellow" --json
kosmo integrations:list --json Useful Fellow CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
fellow.fellow_list_meetings | Read | date_from, date_to, cursor, limit | List meetings from Fellow. Supports date range filters and cursor-based pagination. Returns meeting IDs, titles, dates, attendees, and status. |
fellow.fellow_get_meeting | Read | meeting_id | Get full details of a specific Fellow meeting by ID. Returns the meeting title, date, time, duration, attendees, notes, and action items. |
fellow.fellow_create_note | Write | meeting_id, content, title | Create a note for a specific Fellow meeting. Use this to add meeting notes, summaries, or talking points. |
fellow.fellow_list_action_items | Read | cursor, limit, status | List action items from Fellow. Supports cursor-based pagination and optional status filtering. Returns action item titles, assignees, due dates, and completion status. |
fellow.fellow_list_goals | Read | cursor, limit | List goals from Fellow. Returns goal titles, descriptions, progress, assignees, and due dates. |
fellow.fellow_get_current_user | Read | none | Get the profile of the currently authenticated Fellow user. Returns name, email, and account 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.