Skip to Content

Integrations

Tandemu integrates with your existing ticket system so developers can pick tasks directly in Claude Code, and leads can see task progress alongside telemetry data.

Supported Platforms

PlatformAuth MethodWhat’s Mapped
JiraAPI TokenProjects → teams
LinearAPI KeyTeams → teams
ClickUpAPI TokenFolders → teams (includes all lists/sprints in the folder)
GitHub IssuesPersonal Access TokenRepositories → teams
AsanaPersonal Access TokenProjects → teams
monday.comAPI TokenBoards → teams

Connecting

Only Owners and Admins can manage integrations.

  1. Go to Settings → Integrations in the dashboard 
  2. Click Connect on the platform you use
  3. Enter your API token (see below for how to get one)
  4. Optionally enter your workspace/site ID

Getting API Tokens

Jira: Go to id.atlassian.net/manage-profile/security/api-tokens  → Create API token. Also note your Jira site URL (e.g., mycompany.atlassian.net).

Linear: Go to linear.app/settings/api  → Create personal API key.

ClickUp: Go to app.clickup.com/settings/apps  → Generate API token. Note your team ID.

GitHub: Go to github.com/settings/tokens  → Generate token with repo scope. Used for task sync (Issues) and DORA metrics (merged PRs synced every 4 hours).

Asana: Go to app.asana.com/0/developer-console  → Create personal access token.

monday.com: Go to monday.com/developers/apps  → Generate API token.

Project-Team Mapping

After connecting, map your external projects to Tandemu teams:

  1. On the integration card, click Manage Mappings
  2. Click Add Mapping
  3. Select the external project (fetched from your ticket system)
  4. Select the Tandemu team
  5. Save

This tells Tandemu: “Tasks from Jira project FRONTEND belong to the Frontend team.” When a developer on the Frontend team runs /morning, they see tasks from that Jira project.

How It Works

Tandemu never stores your tasks. When a developer or the dashboard needs task data, the backend calls your ticket system’s API in real-time and returns the results. This means:

  • Task data is always fresh
  • No sync issues
  • No duplicate data to manage
  • Tandemu only stores the integration config (OAuth token, project mapping)

For display purposes, the backend normalizes statuses into categories (todo, in_progress, in_review, done, cancelled). When updating a task, skills dynamically fetch available statuses from your ticket system and pick the best match — no hardcoded mappings required.

When skills update task status (e.g., /morning sets “in progress”, /finish sets “done”), they fetch the available statuses from your ticket system and pick the best match dynamically. This works with any custom workflow — no hardcoded status names.

Security

API tokens for ticket system integrations are encrypted at rest using AES-256-GCM before storing in PostgreSQL. Tandemu reads task metadata only (titles, statuses, assignees) — it does not access source code or repository contents through integrations.

Last updated on