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.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 reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.
| Key | Env var | Type | Required | Label |
|---|---|---|---|---|
access_token | TAIGA_ACCESS_TOKEN | Secret secret | yes | Access Token |
url | TAIGA_URL | URL url | no | Taiga API URL |
Command Patterns
The generic command is stable across every integration. The provider shortcut is shorter for humans.
kosmo integrations:call taiga.taiga_list_projects '{"membership":"example_membership","slug":"example_slug","order_by":"example_order_by","page":1,"page_size":1}' --json kosmo integrations:taiga taiga_list_projects '{"membership":"example_membership","slug":"example_slug","order_by":"example_order_by","page":1,"page_size":1}' --json Discovery
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 Automation Contexts
The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.
CLI Functions
Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.
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.
read - Parameters
- membership, slug, order_by, page, page_size
kosmo integrations:call taiga.taiga_list_projects '{"membership":"example_membership","slug":"example_slug","order_by":"example_order_by","page":1,"page_size":1}' --json 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
Get detailed information about a specific Taiga project by its ID. Returns project name, slug, description, statuses, and membership details.
read - Parameters
- id
kosmo integrations:call taiga.taiga_get_project '{"id":1}' --json kosmo integrations:taiga taiga_get_project '{"id":1}' --json taiga.taiga_list_user_stories
List user stories from Taiga. Filter by project, status, milestone, or assignee. Returns story subjects, descriptions, and statuses.
read - Parameters
- project, project__slug, status, milestone, assigned_to, tags, order_by, page, page_size
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 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
Get detailed information about a specific Taiga user story by its ID. Returns the full story with subject, description, status, assignee, and points.
read - Parameters
- id
kosmo integrations:call taiga.taiga_get_user_story '{"id":1}' --json kosmo integrations:taiga taiga_get_user_story '{"id":1}' --json 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.
write - Parameters
- project, subject, description, status, assigned_to, milestone, tags, points
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 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
List issues from Taiga. Filter by project, status, priority, severity, or assignee. Returns issue subjects, descriptions, and statuses.
read - Parameters
- project, project__slug, status, priority, severity, assigned_to, tags, order_by, page, page_size
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 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
Get the currently authenticated Taiga user profile. Returns user details like full name, username, and email.
read - Parameters
- none
kosmo integrations:call taiga.taiga_get_current_user '{}' --json 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 5 parameters
kosmo integrations:schema taiga.taiga_list_projects --json | Parameter | Type | Required | Description |
|---|---|---|---|
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 1 parameters
kosmo integrations:schema taiga.taiga_get_project --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The Taiga project ID. |
taiga.taiga_list_user_stories 9 parameters
kosmo integrations:schema taiga.taiga_list_user_stories --json | Parameter | Type | Required | Description |
|---|---|---|---|
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 1 parameters
kosmo integrations:schema taiga.taiga_get_user_story --json | Parameter | Type | Required | Description |
|---|---|---|---|
id | integer | yes | The Taiga user story ID. |
taiga.taiga_create_user_story 8 parameters
kosmo integrations:schema taiga.taiga_create_user_story --json | Parameter | Type | Required | Description |
|---|---|---|---|
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 10 parameters
kosmo integrations:schema taiga.taiga_list_issues --json | Parameter | Type | Required | Description |
|---|---|---|---|
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 0 parameters
kosmo integrations:schema taiga.taiga_get_current_user --json | Parameter | Type | Required | Description |
|---|---|---|---|
| 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.