KosmoKrator

productivity

Taiga CLI for AI Agents

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

7 functions 6 read 1 write Bearer token auth

Taiga CLI Setup

Taiga can be configured headlessly with `kosmokrator integrations:configure taiga`.

# 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 taiga --set access_token="$TAIGA_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmokrator integrations:doctor taiga --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 TAIGA_ACCESS_TOKEN Secret secret yes Access Token
url TAIGA_URL URL url no Taiga API URL

Call Taiga Headlessly

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

kosmo integrations:call taiga.taiga_list_projects '{
  "membership": "example_membership",
  "slug": "example_slug",
  "order_by": "example_order_by",
  "page": 1,
  "page_size": 1
}' --json

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

kosmo integrations:taiga taiga_list_projects '{
  "membership": "example_membership",
  "slug": "example_slug",
  "order_by": "example_order_by",
  "page": 1,
  "page_size": 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 taiga --json
kosmo integrations:docs taiga.taiga_list_projects --json
kosmo integrations:schema taiga.taiga_list_projects --json
kosmo integrations:search "Taiga" --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 Taiga.

taiga.taiga_list_projects

Read read

List all Taiga projects you have access to. Returns project names, slugs, and descriptions that you can use to query user stories and issues.

Parameters
membership, slug, order_by, page, page_size

Generic CLI call

kosmo integrations:call taiga.taiga_list_projects '{"membership":"example_membership","slug":"example_slug","order_by":"example_order_by","page":1,"page_size":1}' --json

Provider shortcut

kosmo integrations:taiga taiga_list_projects '{"membership":"example_membership","slug":"example_slug","order_by":"example_order_by","page":1,"page_size":1}' --json

taiga.taiga_get_project

Read read

Get detailed information about a specific Taiga project by its ID. Returns project name, slug, description, statuses, and membership details.

Parameters
id

Generic CLI call

kosmo integrations:call taiga.taiga_get_project '{"id":1}' --json

Provider shortcut

kosmo integrations:taiga taiga_get_project '{"id":1}' --json

taiga.taiga_list_user_stories

Read read

List user stories from Taiga. Filter by project, status, milestone, or assignee. Returns story subjects, descriptions, and statuses.

Parameters
project, project__slug, status, milestone, assigned_to, tags, order_by, page, page_size

Generic CLI call

kosmo integrations:call taiga.taiga_list_user_stories '{"project":1,"project__slug":"example_project__slug","status":"example_status","milestone":1,"assigned_to":1,"tags":"example_tags","order_by":"example_order_by","page":1}' --json

Provider shortcut

kosmo integrations:taiga taiga_list_user_stories '{"project":1,"project__slug":"example_project__slug","status":"example_status","milestone":1,"assigned_to":1,"tags":"example_tags","order_by":"example_order_by","page":1}' --json

taiga.taiga_get_user_story

Read read

Get detailed information about a specific Taiga user story by its ID. Returns the full story with subject, description, status, assignee, and points.

Parameters
id

Generic CLI call

kosmo integrations:call taiga.taiga_get_user_story '{"id":1}' --json

Provider shortcut

kosmo integrations:taiga taiga_get_user_story '{"id":1}' --json

taiga.taiga_create_user_story

Write write

Create a new user story in a Taiga project. Requires project ID and subject. Optionally include description, tags, status, and assignee.

Parameters
project, subject, description, status, assigned_to, milestone, tags, points

Generic CLI call

kosmo integrations:call taiga.taiga_create_user_story '{"project":1,"subject":"example_subject","description":"example_description","status":1,"assigned_to":1,"milestone":1,"tags":"example_tags","points":"example_points"}' --json

Provider shortcut

kosmo integrations:taiga taiga_create_user_story '{"project":1,"subject":"example_subject","description":"example_description","status":1,"assigned_to":1,"milestone":1,"tags":"example_tags","points":"example_points"}' --json

taiga.taiga_list_issues

Read read

List issues from Taiga. Filter by project, status, priority, severity, or assignee. Returns issue subjects, descriptions, and statuses.

Parameters
project, project__slug, status, priority, severity, assigned_to, tags, order_by, page, page_size

Generic CLI call

kosmo integrations:call taiga.taiga_list_issues '{"project":1,"project__slug":"example_project__slug","status":"example_status","priority":"example_priority","severity":"example_severity","assigned_to":1,"tags":"example_tags","order_by":"example_order_by"}' --json

Provider shortcut

kosmo integrations:taiga taiga_list_issues '{"project":1,"project__slug":"example_project__slug","status":"example_status","priority":"example_priority","severity":"example_severity","assigned_to":1,"tags":"example_tags","order_by":"example_order_by"}' --json

taiga.taiga_get_current_user

Read read

Get the currently authenticated Taiga user profile. Returns user details like full name, username, and email.

Parameters
none

Generic CLI call

kosmo integrations:call taiga.taiga_get_current_user '{}' --json

Provider shortcut

kosmo integrations:taiga taiga_get_current_user '{}' --json

Function Schemas

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

taiga.taiga_list_projects

List all Taiga projects you have access to. Returns project names, slugs, and descriptions that you can use to query user stories and issues.

Operation
Read read
Schema command
kosmo integrations:schema taiga.taiga_list_projects --json
ParameterTypeRequiredDescription
membership string no Filter by membership: "admin", "project_owner", "member".
slug string no Filter by project slug.
order_by string no Order results by a field (e.g. "name", "-created_date").
page integer no Page number for pagination (default: 1).
page_size integer no Number of results per page (default: 40).

taiga.taiga_get_project

Get detailed information about a specific Taiga project by its ID. Returns project name, slug, description, statuses, and membership details.

Operation
Read read
Schema command
kosmo integrations:schema taiga.taiga_get_project --json
ParameterTypeRequiredDescription
id integer yes The Taiga project ID.

taiga.taiga_list_user_stories

List user stories from Taiga. Filter by project, status, milestone, or assignee. Returns story subjects, descriptions, and statuses.

Operation
Read read
Schema command
kosmo integrations:schema taiga.taiga_list_user_stories --json
ParameterTypeRequiredDescription
project integer no Filter by project ID.
project__slug string no Filter by project slug (e.g., "my-project").
status string no Filter by status name (e.g., "New", "In progress", "Ready for test", "Done").
milestone integer no Filter by milestone (sprint) ID.
assigned_to integer no Filter by assigned user ID.
tags string no Filter by tags as a comma-separated string.
order_by string no Order results (e.g., "subject", "-created_date", "backlog_order").
page integer no Page number for pagination (default: 1).
page_size integer no Number of results per page (default: 40).

taiga.taiga_get_user_story

Get detailed information about a specific Taiga user story by its ID. Returns the full story with subject, description, status, assignee, and points.

Operation
Read read
Schema command
kosmo integrations:schema taiga.taiga_get_user_story --json
ParameterTypeRequiredDescription
id integer yes The Taiga user story ID.

taiga.taiga_create_user_story

Create a new user story in a Taiga project. Requires project ID and subject. Optionally include description, tags, status, and assignee.

Operation
Write write
Schema command
kosmo integrations:schema taiga.taiga_create_user_story --json
ParameterTypeRequiredDescription
project integer yes The Taiga project ID to create the story in.
subject string yes The user story title / subject line.
description string no Detailed description of the user story. Supports Markdown formatting.
status integer no Status ID for the user story. Omit to use the default status.
assigned_to integer no User ID to assign the story to.
milestone integer no Milestone (sprint) ID to associate with.
tags array no Array of tag strings to apply (e.g., ["frontend", "bug"]).
points object no Story points as a mapping of role ID to point value (e.g., {"1": 3}).

taiga.taiga_list_issues

List issues from Taiga. Filter by project, status, priority, severity, or assignee. Returns issue subjects, descriptions, and statuses.

Operation
Read read
Schema command
kosmo integrations:schema taiga.taiga_list_issues --json
ParameterTypeRequiredDescription
project integer no Filter by project ID.
project__slug string no Filter by project slug (e.g., "my-project").
status string no Filter by status name (e.g., "New", "In progress", "Ready for test", "Closed").
priority string no Filter by priority name (e.g., "Low", "Normal", "High", "Critical").
severity string no Filter by severity name (e.g., "Wishlist", "Minor", "Normal", "Important", "Critical").
assigned_to integer no Filter by assigned user ID.
tags string no Filter by tags as a comma-separated string.
order_by string no Order results (e.g., "subject", "-created_date", "severity").
page integer no Page number for pagination (default: 1).
page_size integer no Number of results per page (default: 40).

taiga.taiga_get_current_user

Get the currently authenticated Taiga user profile. Returns user details like full name, username, and email.

Operation
Read read
Schema command
kosmo integrations:schema taiga.taiga_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.