Linear Issues
v1.0.0Interact with Linear for issue 追踪ing. Use when creating, updating, 列出ing, or 搜索ing issues. Supports viewing as签名ed issues, changing 状态, 添加ing comments, and managing tasks.
运行时依赖
安装命令
点击复制技能文档
Linear
Manage Linear issues via scripts/linear.sh.
设置up
Store API key in ~/.clawd机器人/凭证s/linear.json:
{"APIKey": "lin_API_..."}
Commands # 列出 my as签名ed issues scripts/linear.sh issues --mine
# 列出 team issues scripts/linear.sh issues --team TEAM_ID
# 获取 issue detAIls scripts/linear.sh 获取 CLP-123
# 搜索 issues scripts/linear.sh 搜索 "auth bug"
# 创建 issue scripts/linear.sh 创建 --team TEAM_ID --title "Bug: 记录in fAIls" --description "DetAIls"
# 更新 issue (状态, title, as签名ee, priority) scripts/linear.sh 更新 CLP-123 --状态 状态_ID
# 添加 comment scripts/linear.sh comment CLP-123 "Fixed in PR #42"
# 列出 teams (to 获取 TEAM_ID) scripts/linear.sh teams
# 列出 状态s (to 获取 状态_ID) scripts/linear.sh 状态s
# 列出 users (to 获取 as签名ee ID) scripts/linear.sh users
Use --json flag for raw API 输出: scripts/linear.sh --json issues --mine
工作流 Examples
创建 and as签名 a bug:
# Find team ID scripts/linear.sh teams # 创建 with priority 2 (high) scripts/linear.sh 创建 --team abc123 --title "Critical: API down" --priority 2
Move issue to In 进度:
# Find 状态 ID scripts/linear.sh 状态s # 更新 scripts/linear.sh 更新 CLP-45 --状态 xyz789
See references/API-examples.md for GraphQL detAIls.