一键导入
linear
Native Linear integration using internal tracker tools. Supports issue querying, state transitions, and audit logging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Native Linear integration using internal tracker tools. Supports issue querying, state transitions, and audit logging.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | linear |
| description | Native Linear integration using internal tracker tools. Supports issue querying, state transitions, and audit logging. |
Orchestra now uses a high-performance native tracker for Linear. Do not use raw GraphQL tools.
Use the following system tools to interact with Linear issues:
tracker_query:
MT-123).update_issue:
To get the full context of an issue, including its current state and history:
{
"tool": "tracker_query",
"arguments": {
"identifier": "PROJECT-123"
}
}
To move an issue along the workflow (e.g., to "In Progress" or "In Review"):
{
"tool": "update_issue",
"arguments": {
"identifier": "PROJECT-123",
"state": "In Progress"
}
}
To find issues related to a specific project or state:
{
"tool": "tracker_query",
"arguments": {
"state": "Todo"
}
}
linear_graphql. It has been removed.Todo, In Progress, Done, Canceled).MT-1) over internal database IDs.update_issue call creates a transparent audit trail visible to the user in the Activity tab.