AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Linear

skill-initializ-forge-linear · by initializ

Read Linear issues, transition state, and post comments. The entry point for ticket-driven agent workflows.

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-initializ-forge-linear

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-initializ-forge-linear)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Linear? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Linear Skill

You can read, search, and update Linear issues, list workflow states, and post comments. Use this skill as the entry point for ticket-driven workflows — turn ENG-123 into a structured payload, transition state, comment on progress.

When to use this skill

  • The user references a Linear issue by identifier (ENG-123, OPS-7, etc.).
  • The user asks for "my tickets" / "open issues" / "what's assigned to me".
  • An automation needs to mark work started, post a PR link as a comment, or move a ticket through workflow states.

Issue identifier format

Linear identifiers look like -ENG-123, OPS-7. They are not GraphQL UUIDs. The Linear API accepts both forms on issue(id:), so always pass the human identifier the user gave you. Never invent or normalise identifiers — use them verbatim.

State transition pattern (hard rule)

You MUST call linear_get_workflow_states first and use the resolved id when calling linear_update_issue_state. State IDs are per-team UUIDs; state names like "Todo" or "In Progress" are not portable across teams and cannot be passed to linear_update_issue_state directly.

Workflow:

  1. linear_get_issue to find the issue's team.id.
  2. linear_get_workflow_states with that team_id to enumerate the team's states.
  3. Pick the state by matching its name (case-insensitive) or type (unstarted, started, completed, canceled, triage, backlog).
  4. linear_update_issue_state with the issue identifier and the resolved state_id.

Commenting etiquette

Post a comment when:

  • Work has been picked up (one comment, e.g. "Working on this.").
  • A pull request has been opened (one comment with the PR URL).
  • Work is blocked and the user should know.
  • Work is complete (one comment summarising what shipped).

Do not chatter. Post no more than one comment per agent action. Do not narrate intermediate tool calls, file edits, or reasoning into Linear comments — the channel-side conversation is the place for that. Comments are durable artifacts on the ticket; treat them like git commit messages, not Slack messages.

Safety rules

  • Never include secrets, tokens, or environment variable values in comment bodies.
  • Never transition an issue to a "Done" or "Completed" state without explicit user confirmation.
  • Never delete issues, comments, or projects through this skill — the tools don't support it. If the user asks, tell them this skill is read/comment/transition only.
  • When the user asks for "my tickets", default to state filter "Todo" or "In Progress" (state types unstarted, started) unless they specify otherwise.

Tool: lineargetissue

Fetch a Linear issue by its human identifier.

Input:

| Parameter | Type | Required | Description | | --- | --- | --- | --- | | identifier | string | yes | Issue identifier like ENG-123 |

Output:

{
  "identifier": "ENG-123",
  "title": "...",
  "description": "...",
  "state": { "id": "...", "name": "In Progress", "type": "started" },
  "assignee": { "email": "...", "name": "..." },
  "team": { "id": "...", "key": "ENG", "name": "Engineering" },
  "labels": ["bug", "p1"],
  "priority": 2,
  "url": "https://linear.app/..."
}

Tool: linearsearchissues

Filter issues across one team — or across all teams the API key can see, if no team is supplied. All parameters are optional. Call this tool with {} when the user asks something broad like "list open issues" or "what's in the backlog" — do not ask for a team_id first; the result will include the team key in each issue's identifier (e.g. ENG-12 vs OPS-7) and the user can drill down from there.

Input:

| Parameter | Type | Required | Description | | --- | --- | --- | --- | | teamid | string | no | Linear team UUID or team key like ENG. Auto-detects which form. Defaults to $LINEAR_DEFAULT_TEAM_ID when set. | | state | string | no | Workflow state type (unstarted, started, completed, canceled, triage, backlog). | | assigneeemail | string | no | Filter by assignee email. | | label | string | no | Filter by label name. | | query | string | no | Free-text search over title and description. | | limit | integer | no | Max results (default 20, capped at 100). |

Examples — call the tool directly, do not ask the user for an ID:

| User says | Tool input | | --- | --- | | "list open issues" / "what's in the backlog" | {} | | "show me INI tickets" | {"team_id": "INI"} (team key works) | | "open bugs in ENG" | {"team_id": "ENG", "state": "unstarted", "label": "bug"} | | "what's @alice working on?" | {"assignee_email": "alice@example.com", "state": "started"} |

Output:

{
  "count": 3,
  "issues": [
    { "identifier": "ENG-1", "title": "...", "state": "Todo", "assignee_email": "...", "url": "..." }
  ]
}

Tool: linearlistmy_issues

List issues assigned to the API key's owner (viewer).

Input:

| Parameter | Type | Required | Description | | --- | --- | --- | --- | | state | string | no | Comma-separated state types. Default: "started,unstarted" ("In Progress" / "Todo"). | | limit | integer | no | Max results (default 20, capped at 100). |

Output: same shape as linear_search_issues.

Tool: lineargetworkflow_states

Enumerate a team's workflow states. Required before linear_update_issue_state.

Input:

| Parameter | Type | Required | Description | | --- | --- | --- | --- | | team_id | string | yes | Linear team UUID (from linear_get_issue's team.id). |

Output:

{
  "team_id": "...",
  "states": [
    { "id": "...", "name": "Todo",        "type": "unstarted", "position": 0 },
    { "id": "...", "name": "In Progress", "type": "started",   "position": 1 },
    { "id": "...", "name": "Done",        "type": "completed", "position": 2 }
  ]
}

States are sorted by position.

Tool: linearupdateissue_state

Transition an issue to a different workflow state. The state_id must come from linear_get_workflow_states — do not invent or guess it.

Input:

| Parameter | Type | Required | Description | | --- | --- | --- | --- | | identifier | string | yes | Issue identifier like ENG-123. | | state_id | string | yes | Workflow state UUID from linear_get_workflow_states. |

Output:

{
  "success": true,
  "identifier": "ENG-123",
  "state": { "id": "...", "name": "In Progress", "type": "started" }
}

Tool: linearaddcomment

Post a markdown comment to an issue.

Input:

| Parameter | Type | Required | Description | | --- | --- | --- | --- | | identifier | string | yes | Issue identifier like ENG-123. | | body | string | yes | Markdown comment body. Capped at 10 000 characters; longer bodies are truncated client-side. |

Output:

{
  "success": true,
  "comment": { "id": "...", "url": "https://linear.app/...", "created_at": "2026-05-20T..." }
}

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.