一键导入
to-tickets
Quiz the user to fill in a ticket template field-by-field, then publish it to Linear. Use when the user wants to create a Linear issue, ticket, or task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Quiz the user to fill in a ticket template field-by-field, then publish it to Linear. Use when the user wants to create a Linear issue, ticket, or task.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | to-tickets |
| description | Quiz the user to fill in a ticket template field-by-field, then publish it to Linear. Use when the user wants to create a Linear issue, ticket, or task. |
| allowed-tools | mcp__claude_ai_Linear__list_teams, mcp__claude_ai_Linear__list_users, mcp__claude_ai_Linear__list_issue_labels, mcp__claude_ai_Linear__save_issue |
Create a Linear ticket by quizzing the user field-by-field, then publishing.
Before asking anything, fetch both in parallel:
list_teams — to offer team options and resolve team IDlist_users — to offer assignee options and resolve user IDDo NOT fetch labels yet — labels are fetched after the team is chosen (see step 9).
Read TEMPLATE.md from the same directory as this skill file. It defines the ticket title and body format using {{placeholder}} syntax. The interview will collect values for each placeholder.
Ask one question at a time. For each field, suggest a value derived from the current conversation context. Wait for the user's answer before moving on.
Field order (maps to TEMPLATE.md placeholders):
title — short, imperative (e.g. "Add export button to reports page"). Suggest based on conversation.
Type — one of: bug, feature, chore, spike. Suggest based on conversation context. (not in template; passed as issue type to Linear)
role — the user role affected (e.g. "admin", "end user"). Suggest from context.
feature — what they want (the "I want" part). Suggest from context.
benefit — the "so that" reason. Suggest from context.
context — things not covered by the user story: technical constraints, unknowns, accepted tradeoffs, historical record of the feature. Suggest from conversation context, or leave blank if none applies.
acceptance_criteria — markdown checklist. Suggest 2–4 items. Ask the user to confirm, add, or remove. Render as - [ ] item lines.
Team — present a numbered list of teams fetched from Linear. Ask the user to pick one. (not in template; metadata)
Labels (optional) — after the team is chosen, fetch labels filtered by that team. Paginate (cursor) until hasNextPage is false to get the full list. Present all labels and let the user pick any or skip. (metadata)
Assignee (optional) — present a numbered list of users. Pick one or skip. (metadata)
Render the final ticket by substituting all {{placeholder}} values into the template. Show it alongside metadata:
Type: <type>
Team: <team name>
Labels: <labels or none>
Assignee: <name or unassigned>
<rendered TEMPLATE.md with placeholders filled in>
Ask: "Publish this to Linear?" — wait for explicit confirmation before proceeding.
save_issue with: title and body from the rendered template, plus type/team/labels/assignee.Write a structured peer performance review for a colleague by asking the user targeted questions and filling out the review template. Use when the user wants to write a peer review, performance feedback, or 360 review for someone on their team.
Pick up a Linear ticket to work on — fetches ticket details, creates a git branch, updates status to In Progress, then grills the developer on requirements and produces a task plan. Usage: /pick-up-ticket [TICKET-ID]. If no ID given, lists tickets assigned to you.