원클릭으로
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.