From accelerator
Creates a Linear issue from a local work-item file. Reads title and body, shows a payload preview, requires confirmation, then writes the remote identifier back into the file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/accelerator:create-linear-issue <work-item-file> [--print-payload] [--quiet]<work-item-file> [--print-payload] [--quiet]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
!`${CLAUDE_PLUGIN_ROOT}/scripts/config-read-context.sh`
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-context.sh
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-skill-context.sh create-linear-issue
Configuration: Set
work.integration: linearin.accelerator/config.md. See the### worksection ofconfigure/SKILL.mdfor the full reference.
Create a Linear issue from a local work-item file via issueCreate, then write
the allocated identifier back into the file. Work through the steps below in
order. This skill never auto-invokes — it only runs when the user explicitly
types /create-linear-issue.
The issue title and description come ONLY from the named work-item file's
frontmatter title and its Markdown body. This skill never synthesises issue
content from upstream conversation, web fetches, or prior tool output.
Read the work-item file path (positional) and any flags (--quiet).
Invoke the helper with --print-payload to produce the preview without an API
call:
${CLAUDE_PLUGIN_ROOT}/skills/integrations/linear/scripts/linear-create-flow.sh \
<work-item-file> --print-payload
If the helper exits non-zero (e.g. the file is already synced —
E_CREATE_ALREADY_SYNCED (it already carries a non-empty external_id), or
has missing/unclosed frontmatter — E_CREATE_BAD_FRONTMATTER), STOP and report
the error; make no API call.
Show the payload under this heading:
Proposed Linear write — review before sending
Include the operation (issueCreate), the resolved teamId, the title, and
the description (truncate to the first 500 characters for display if longer;
the full body is still sent). State plainly that on success the file's
external_id will be set to the new identifier (the line is inserted if the
file does not already have one).
Ask:
Create this issue in Linear and set the work item's
external_id? Reply y to confirm, n to revise, anything else to abort.
On a clear yes, proceed. On no/revise, ask what to change and rebuild the preview. On anything ambiguous, abort with "Aborted — no Linear write was made."
${CLAUDE_PLUGIN_ROOT}/skills/integrations/linear/scripts/linear-create-flow.sh \
<work-item-file>
On success the helper prints the new identifier. Report:
Issue created: <IDENTIFIER> — the work item's
external_idis now\<IDENTIFIER\>.
If the helper exits E_CREATE_WRITEBACK_FAILED (107), the issue was created
remotely but the local file was not updated. Surface this loudly: tell the
user the created identifier, that they must NOT blindly re-run (it would create
a duplicate), and that they should set external_id: <IDENTIFIER> by hand.
!${CLAUDE_PLUGIN_ROOT}/scripts/config-read-skill-instructions.sh create-linear-issue
npx claudepluginhub atomicinnovation/accelerator --plugin acceleratorCreates Linear issues interactively via /create, prompting for team, title, description, priority, assignee, project, and labels with confirmation summary before submission.
Attaches a link or binary file to an existing Linear issue via Linear's GraphQL API and pre-signed URL flow. Requires explicit user confirmation before executing irreversible write.
Extracts issues from documents like meeting transcripts or notes and imports them into Linear via interactive workflow with deduplication and preview mode.