show-linear-issue

Solid

Use this skill when the user asks about a specific Linear issue by identifier (e.g. BLA-123, ENG-456) — for viewing the description, state, assignee, or comments. Trigger when the user says 'look up', 'check on', 'tell me about', 'what's on', or 'what is the status of' an identifier, or asks any direct question about an issue they reference. Do NOT trigger when an identifier appears incidentally inside other prose (commit messages, code review comments, release notes), where the user is talking about the issue rather than asking to fetch it.

Code & Development 30 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 85/100

Stars 20%
50
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
72
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Show Linear Issue !`${CLAUDE_PLUGIN_ROOT}/bin/accelerator config context --skill show-linear-issue --fail-safe` > **Configuration**: Set `work.integration: linear` in `.accelerator/config.md`. > See the > [`### work` section of `configure/SKILL.md`](../../config/configure/SKILL.md#work) > for the full reference. Fetch and render a single Linear issue by identifier. ## Step 1: Resolve the identifier Read the issue identifier from the argument string (e.g. `BLA-123`). If none was supplied, ask the user which issue to show. ## Step 2: Fetch the issue Run: ``` ${CLAUDE_PLUGIN_ROOT}/skills/integrations/linear/scripts/linear-show-flow.sh <IDENTIFIER> [--comments N] ``` Run the bare path **directly** as an executable; never prefix it with `bash`/`sh`/`env` (a wrapper prefix escapes the skill's `allowed-tools` permission and forces an unnecessary prompt). An unknown identifier exits non-zero (`E_SHOW_NOT_FOUND`) — tell the user the issue was not found. ## Step 3: Render the issue Render the issue's fields under `.data.issue`: - **Identifier**: `.identifier` - **Title**: `.title` - **State**: `.state.name` - **Assignee**: `.assignee.name` (or `unassigned`) - **Description**: `.description` — already native Markdown, render it directly (no ADF conversion). - **Comments**: each `.comments.nodes[].body` (Markdown), if any. !`${CLAUDE_PLUGIN_ROOT}/bin/accelerator config instructions show-linear-issue --fail-safe`

Details

Author
atomicinnovation
Repository
atomicinnovation/accelerator
Created
5 months ago
Last Updated
today
Language
HTML
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Solid

create-linear-issue

Use this skill only when the user explicitly invokes /create-linear-issue to create a new Linear issue from a local work-item file. This is a write skill with irreversible side effects — it must never be auto-invoked from conversational context. It reads the work item's title and Markdown body, shows a payload preview, requires explicit confirmation, then creates the issue and writes the remote-allocated identifier (e.g. BLA-123) back into the file's external_id frontmatter field.

30 Updated today
atomicinnovation
Code & Development Solid

update-linear-issue

Use this skill only when the user explicitly invokes /update-linear-issue to change fields on an existing Linear issue (title, description, state, assignee, priority). This is a write skill with irreversible side effects — it must never be auto-invoked from conversational context. It shows a payload preview, requires explicit confirmation, then applies the update.

30 Updated today
atomicinnovation
AI & Automation Solid

search-linear-issues

Use this skill whenever the user wants to search, list, or filter Linear issues — by state, assignee, label, or free text — even if they say 'find', 'show me', 'what's open', 'list my issues', or similar phrasing rather than 'search Linear'. Composes a Linear IssueFilter from structured flags, executes a cursor-paginated search scoped to the configured team, and renders a summary table of the results. Prefer this skill over raw GraphQL whenever the user's intent maps to a structured flag.

30 Updated today
atomicinnovation