I've run remote engineering teams on four different PM tools across the last five years — Jira, Linear, ClickUp, and GitHub Projects. This is the opinionated take I'd give a CTO friend asking "which one in 2026?" The WordPress version of this piece covers all 10 tools for general SMB; this is the dev-team subset and the API math that actually matters when you're going to script around it.
The dev-team criteria that override "feature count"
- Keyboard speed. Devs leave PM tools that take 3 seconds to load a board. Linear, GitHub, and Plane fit. ClickUp, Notion, Jira don't, even after their 2024-2025 speed improvements.
- API quality. If you can't script standups, auto-create issues from CI failures, and sync tickets to a Slack bot, the tool will be abandoned in 6 months.
- GitHub/GitLab integration. Real bidirectional — branch names linked to issues, PR status visible on the issue card, merge → close the ticket. Not "we have a Zapier zap."
- Markdown everywhere. Tickets, comments, descriptions. If the tool has its own document format (looking at you, Atlassian Document Format), the friction compounds daily.
- Self-host option. Not required, but it's a tiebreaker for teams paranoid about data lock-in or just budget-conscious at scale.
That's the rubric. Now the contenders.
Linear — the dev favourite, and it earns it
$10/user/month. The fastest tool in the category — sub-100ms navigation, every action keyboard-accessible, beautifully designed. The GraphQL API is first-class with a typed SDK:
import { LinearClient } from "@linear/sdk";
const linear = new LinearClient({ apiKey: process.env.LINEAR_API_KEY });
// Create an issue from a CI failure
async function reportCIFailure(workflow: string, runUrl: string, error: string) {
const team = await linear.team("ENG");
return linear.createIssue({
teamId: team.id,
title: `CI failed: ${workflow}`,
description: `Run: ${runUrl}\n\n\`\`\`\n${error.slice(0, 1000)}\n\`\`\``,
priority: 2, // High
labelIds: [(await linear.issueLabels({ filter: { name: { eq: "ci" } } })).nodes[0].id],
});
}
15 lines and you have CI-to-Linear in any language with a GraphQL client. The SDK is well-typed; the docs are good; the rate limits are generous (1,500 req/hour authenticated).
Where Linear loses: it's engineering-only by design. Marketing and ops will feel cramped, and you can't bolt them on. If your dev team works closely with non-dev colleagues, Linear's purity becomes a wall. Also: $10/user × 50 people × 12 months = $6,000/year. Not bad, but not free.
Jira — only if you're forced into it
$7.75/user/month (Standard). The enterprise software default. It does sprints, backlogs, reporting, and compliance dashboards at a depth Linear can't match. The pain is everything else.
// Same "create issue from CI failure" in Jira REST
async function reportCIFailureJira(workflow: string, runUrl: string, error: string) {
const res = await fetch(`${JIRA_HOST}/rest/api/3/issue`, {
method: "POST",
headers: {
Authorization: `Basic ${Buffer.from(`${EMAIL}:${API_TOKEN}`).toString("base64")}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
fields: {
project: { key: "ENG" },
summary: `CI failed: ${workflow}`,
// ADF, not markdown. This is one paragraph.
description: {
type: "doc",
version: 1,
content: [
{ type: "paragraph", content: [{ type: "text", text: `Run: ${runUrl}` }] },
{
type: "codeBlock",
attrs: { language: "text" },
content: [{ type: "text", text: error.slice(0, 1000) }],
},
],
},
issuetype: { name: "Task" },
priority: { name: "High" },
},
}),
});
// ...
}
Atlassian Document Format (ADF) is the API equivalent of a tax return. Every formatting decision becomes a tree of typed nodes. Markdown converters exist but they're approximate. Add OAuth refresh logic, multi-step issue type configuration, custom fields with cryptic IDs, and a rate limit you have to look up per endpoint, and integration time triples vs Linear.
Pick Jira when: you're on a team where it was picked for you, or you genuinely need its compliance/audit features. Otherwise, the speed and DX gap with Linear is unbridgeable.
GitHub Projects — the underrated pick
Free with any GitHub account. GitHub Projects v2 (the new one, GraphQL-based) is a real PM tool — tables, boards, roadmap, custom fields, automations — built into the place your code already lives. The mutation to add an issue to a project:
mutation AddIssueToProject($projectId: ID!, $contentId: ID!) {
addProjectV2ItemById(input: { projectId: $projectId, contentId: $contentId }) {
item { id }
}
}
The integration is unbeatable because there's no integration — your PRs, issues, commits, and project board are one system. Closing an issue via PR is one line in the commit message; sprint velocity is calculated from real merge timestamps; the project board updates as you push code.
Where it loses: docs are sparse (use the GraphQL Explorer to discover the schema), the UI is less mature than Linear or ClickUp, and it has no built-in standup or time-tracking. For pure engineering work with a small team (≤15), it's surprisingly enough. For larger teams or anything beyond engineering, you'll outgrow it.
ClickUp — the cheap all-in-one for mixed teams
$7/user/month (Unlimited), +$9/user for AI. Worth considering when your team is not engineering-only — when one platform has to serve devs, designers, marketing, and ops. The REST API is decent; webhooks have quirks (we covered them in the ClickUp developer review). For a dev-only team, Linear wins. For a 30-person remote SMB where dev is 8 people and the rest are ops/marketing, ClickUp at $7 beats running Linear for engineering plus something else for everyone else.
Notion — the docs-plus-tasks hybrid
$10/user/month. Notion isn't a PM tool, it's a documents tool that grew a database feature. For dev teams that live in design docs, RFCs, ADRs, and runbooks, Notion's "context next to task" beats a dedicated PM tool. The API is RESTful, the schema-via-property-types approach is workable but verbose, and the rate limits will hit you on bulk operations. Best as the docs layer next to Linear or GitHub, not as the primary task tool.
Self-hosted: when SaaS prices stop making sense
For 50+ user teams, the math shifts. Linear at $500/month becomes uncomfortable; Jira's per-user fees keep growing. Two self-hosted alternatives worth knowing in 2026:
Plane — modern, JIRA-like, the strongest open-source option. We covered the Docker compose setup in the ClickUp developer post.
Vikunja — simpler, kanban/list-focused, two-service setup:
# docker-compose.yml — Vikunja self-hosted
services:
db:
image: postgres:16-alpine
restart: unless-stopped
environment:
POSTGRES_PASSWORD: ${PG_PASSWORD}
POSTGRES_USER: vikunja
POSTGRES_DB: vikunja
volumes:
- vikunja-db:/var/lib/postgresql/data
vikunja:
image: vikunja/vikunja:latest
restart: unless-stopped
ports:
- "3456:3456"
environment:
VIKUNJA_DATABASE_TYPE: postgres
VIKUNJA_DATABASE_HOST: db
VIKUNJA_DATABASE_USER: vikunja
VIKUNJA_DATABASE_PASSWORD: ${PG_PASSWORD}
VIKUNJA_DATABASE_DATABASE: vikunja
VIKUNJA_SERVICE_PUBLICURL: https://vikunja.yourdomain.com
VIKUNJA_SERVICE_JWTSECRET: ${JWT_SECRET}
volumes:
- vikunja-files:/app/vikunja/files
depends_on:
- db
volumes:
vikunja-db:
vikunja-files:
Drop it on a $6 VPS, point a subdomain, slap Caddy in front for TLS, and you have a no-monthly-fee PM tool with a real REST API, native sharing, and Kanban/list/Gantt views. Trade-offs: no native GitHub integration (you write webhooks yourself), no advanced sprint reporting, and the community is smaller than Plane's. Worth it for small engineering teams who like owning their stack.
The honest reality of self-hosting: budget 2-4 hours/month for backups, updates, and the occasional firefight. That's ~$50-100/month in your time at consultant rates. The self-host wins when team size × SaaS per-seat cost crosses ~$200/month, not before.
Mistakes devs make picking PM tools
Optimising for features instead of adoption. The best tool is the one your team will actually update. Linear is loved because devs find updating it pleasant; Jira is hated because every interaction feels like paperwork. If your team won't update the tool, you don't have a PM tool — you have a graveyard.
Falling for "all-in-one" pitches. ClickUp's "replace 10 tools!" is genuine value for non-dev SMBs. For dev teams, you'll spend 6 months configuring it to feel like Linear, then switch to Linear. Specialised wins for technical workflows.
Ignoring the AI add-on math. ClickUp Brain is $9/user/mo extra; Notion AI is bundled but capped; Jira AI is enterprise-tier only. If "AI features" are in the pitch, calculate the real cost — your team's existing ChatGPT/Claude Pro subs may already cover 80% of what the in-tool AI does.
Underestimating webhook reliability cost. Every integration ("PR opened → create issue") needs retry logic, signature verification, and idempotency. Linear's webhooks are clean; Jira's are powerful but quirky; GitHub's are battle-tested; ClickUp's are workspace-scope-only. Build resilient handlers regardless.
TL;DR
- Engineering-only, 2-50 people, latency matters more than budget: Linear.
- Engineering-only, on a shoestring, already using GitHub heavily: GitHub Projects.
- Forced to use Jira by org/regulation: at least lobby for Linear sync via API.
- Mixed team (dev + non-dev) at SMB: ClickUp Unlimited, accept the speed hit.
- Docs-first team where work emerges from RFCs: Notion + GitHub Projects.
- 50+ people, want to own the stack: Plane (JIRA-like) or Vikunja (simpler).
For the broader 10-tool comparison covering Asana, Monday, Trello, Basecamp, Wrike, and Height (the tools more relevant to non-dev SMBs), see the WordPress version of this piece.
Originally published on trackstack.tech with the full 10-tool comparison and FAQ.
Top comments (0)