KosmoKrator

other

Fellow CLI for AI Agents

Use the Fellow CLI from KosmoKrator to call Fellow tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

6 functions 5 read 1 write Bearer token auth

Fellow CLI Setup

Fellow can be configured headlessly with `kosmokrator integrations:configure fellow`.

# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure fellow --set access_token="$FELLOW_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor fellow --json
kosmokrator integrations:status --json

Credentials

Authentication type: Bearer token bearer_token. Configure credentials once, then use the same stored profile from scripts, coding CLIs, Lua code mode, and the MCP gateway.

KeyEnv varTypeRequiredLabel
access_token FELLOW_ACCESS_TOKEN Secret secret yes Access Token
url FELLOW_URL URL url no API URL

Call Fellow Headlessly

Use the generic call form when another coding CLI or script needs a stable universal interface.

kosmo integrations:call fellow.fellow_list_meetings '{
  "date_from": "example_date_from",
  "date_to": "example_date_to",
  "cursor": "example_cursor",
  "limit": 1
}' --json

Use the provider shortcut form for shorter human-facing commands.

kosmo integrations:fellow fellow_list_meetings '{
  "date_from": "example_date_from",
  "date_to": "example_date_to",
  "cursor": "example_cursor",
  "limit": 1
}' --json

Agent Discovery Commands

These commands return structured output for coding agents that need to inspect capabilities 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

All CLI Functions

Every function below can be called headlessly. The generic form is stable across all integrations; the provider shortcut is shorter but specific to Fellow.

fellow.fellow_list_meetings

Read read

List meetings from Fellow. Supports date range filters and cursor-based pagination. Returns meeting IDs, titles, dates, attendees, and status.

Parameters
date_from, date_to, cursor, limit

Generic CLI call

kosmo integrations:call fellow.fellow_list_meetings '{"date_from":"example_date_from","date_to":"example_date_to","cursor":"example_cursor","limit":1}' --json

Provider shortcut

kosmo integrations:fellow fellow_list_meetings '{"date_from":"example_date_from","date_to":"example_date_to","cursor":"example_cursor","limit":1}' --json

fellow.fellow_get_meeting

Read read

Get full details of a specific Fellow meeting by ID. Returns the meeting title, date, time, duration, attendees, notes, and action items.

Parameters
meeting_id

Generic CLI call

kosmo integrations:call fellow.fellow_get_meeting '{"meeting_id":"example_meeting_id"}' --json

Provider shortcut

kosmo integrations:fellow fellow_get_meeting '{"meeting_id":"example_meeting_id"}' --json

fellow.fellow_create_note

Write write

Create a note for a specific Fellow meeting. Use this to add meeting notes, summaries, or talking points.

Parameters
meeting_id, content, title

Generic CLI call

kosmo integrations:call fellow.fellow_create_note '{"meeting_id":"example_meeting_id","content":"example_content","title":"example_title"}' --json

Provider shortcut

kosmo integrations:fellow fellow_create_note '{"meeting_id":"example_meeting_id","content":"example_content","title":"example_title"}' --json

fellow.fellow_list_action_items

Read read

List action items from Fellow. Supports cursor-based pagination and optional status filtering. Returns action item titles, assignees, due dates, and completion status.

Parameters
cursor, limit, status

Generic CLI call

kosmo integrations:call fellow.fellow_list_action_items '{"cursor":"example_cursor","limit":1,"status":"example_status"}' --json

Provider shortcut

kosmo integrations:fellow fellow_list_action_items '{"cursor":"example_cursor","limit":1,"status":"example_status"}' --json

fellow.fellow_list_goals

Read read

List goals from Fellow. Returns goal titles, descriptions, progress, assignees, and due dates.

Parameters
cursor, limit

Generic CLI call

kosmo integrations:call fellow.fellow_list_goals '{"cursor":"example_cursor","limit":1}' --json

Provider shortcut

kosmo integrations:fellow fellow_list_goals '{"cursor":"example_cursor","limit":1}' --json

fellow.fellow_get_current_user

Read read

Get the profile of the currently authenticated Fellow user. Returns name, email, and account details.

Parameters
none

Generic CLI call

kosmo integrations:call fellow.fellow_get_current_user '{}' --json

Provider shortcut

kosmo integrations:fellow fellow_get_current_user '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

fellow.fellow_list_meetings

List meetings from Fellow. Supports date range filters and cursor-based pagination. Returns meeting IDs, titles, dates, attendees, and status.

Operation
Read read
Schema command
kosmo integrations:schema fellow.fellow_list_meetings --json
ParameterTypeRequiredDescription
date_from string no Start date for filtering meetings (ISO 8601, e.g., "2026-01-01").
date_to string no End date for filtering meetings (ISO 8601, e.g., "2026-01-31").
cursor string no Pagination cursor — pass the cursor from a previous response to get the next page.
limit integer no Maximum number of meetings to return per page (default: 25).

fellow.fellow_get_meeting

Get full details of a specific Fellow meeting by ID. Returns the meeting title, date, time, duration, attendees, notes, and action items.

Operation
Read read
Schema command
kosmo integrations:schema fellow.fellow_get_meeting --json
ParameterTypeRequiredDescription
meeting_id string yes The Fellow meeting UUID.

fellow.fellow_create_note

Create a note for a specific Fellow meeting. Use this to add meeting notes, summaries, or talking points.

Operation
Write write
Schema command
kosmo integrations:schema fellow.fellow_create_note --json
ParameterTypeRequiredDescription
meeting_id string yes The Fellow meeting UUID.
content string yes The note content in plain text or markdown.
title string no Optional title for the note.

fellow.fellow_list_action_items

List action items from Fellow. Supports cursor-based pagination and optional status filtering. Returns action item titles, assignees, due dates, and completion status.

Operation
Read read
Schema command
kosmo integrations:schema fellow.fellow_list_action_items --json
ParameterTypeRequiredDescription
cursor string no Pagination cursor — pass the cursor from a previous response to get the next page.
limit integer no Maximum number of action items to return per page (default: 25).
status string no Filter by status (e.g., "open", "completed").

fellow.fellow_list_goals

List goals from Fellow. Returns goal titles, descriptions, progress, assignees, and due dates.

Operation
Read read
Schema command
kosmo integrations:schema fellow.fellow_list_goals --json
ParameterTypeRequiredDescription
cursor string no Pagination cursor — pass the cursor from a previous response to get the next page.
limit integer no Maximum number of goals to return per page (default: 25).

fellow.fellow_get_current_user

Get the profile of the currently authenticated Fellow user. Returns name, email, and account details.

Operation
Read read
Schema command
kosmo integrations:schema fellow.fellow_get_current_user --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.