一键导入
linear
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Linear issues, projects, and cycles via the Linear GraphQL API.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Retrieve secrets and vault items from 1Password using the op CLI with a service account token.
Create, read, and search Apple Notes on macOS using osascript AppleScript.
Manage Docker containers, images, volumes, and docker-compose stacks via the docker CLI.
List, create, close, comment on, and triage GitHub issues and pull requests via the gh CLI.
Create, read, transition, and comment on Jira issues via the Jira REST API v3.
Read, search, create, and update Notion pages and databases via the Notion API.
| name | linear |
| description | Manage Linear issues, projects, and cycles via the Linear GraphQL API. |
| always | false |
| metadata | {"clawlite":{"emoji":"📐","auth":{"requiredEnv":["LINEAR_API_KEY"]}}} |
Use this skill when the user wants to create, update, search, or triage Linear issues and projects.
Set LINEAR_API_KEY (from https://linear.app/settings/api).
ENDPOINT="https://api.linear.app/graphql"
HEADERS='-H "Authorization: $LINEAR_API_KEY" -H "Content-Type: application/json"'
query {
issues(filter: { state: { name: { eq: "In Progress" } } }, first: 20) {
nodes { id identifier title priority state { name } assignee { name } }
}
}
curl -s -X POST "$ENDPOINT" \
-H "Authorization: $LINEAR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"{ issues(first:20){nodes{id identifier title state{name}}} }"}'
mutation {
issueCreate(input: {
title: "Fix login bug"
description: "Steps to reproduce..."
teamId: "TEAM_ID"
priority: 2
}) {
issue { id identifier url }
}
}
mutation {
issueUpdate(id: "ISSUE_ID", input: { stateId: "STATE_ID" }) {
issue { id state { name } }
}
}
query { teams { nodes { id name states { nodes { id name } } } } }
teamId and stateId before mutations.