基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/rolaca11/linear-cli --skill linear-cli命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | linear-cli |
| description | Instructions for using the Linear CLI to manage issues, projects, teams, and more in Linear |
| version | 1.0.0 |
| license | MIT |
Use this skill when the user wants to interact with Linear - a project management tool for software teams. The linear CLI provides full access to Linear's API for managing issues, projects, teams, cycles, labels, and users.
Activate this skill when the user:
TECH-123, ENG-456, etc.The CLI must be authenticated. Check with:
linear auth status
If not authenticated, guide the user to run:
linear auth login
# List issues with filters
linear issues list --team <TEAM>
linear issues list --team <TEAM> --state "In Progress"
linear issues list --assignee me
linear issues list --project "Project Name"
# View issue details (supports both formats)
linear issues view TECH-123
linear issues view <uuid>
# Create new issue
linear issues create --title "Title" --team TECH
linear issues create --title "Title" --team TECH --description "Details" --priority 2 --assignee me
# Update issue
linear issues update TECH-123 --state "In Progress"
linear issues update TECH-123 --assignee "John Doe"
linear issues update TECH-123 --priority 1
# Add comment
linear issues comment TECH-123 --body "Comment text"
# View comments
linear issues comments TECH-123
# Archive/delete issue
linear issues delete TECH-123
linear projects list
linear projects view "Project Name"
linear projects create --name "New Project" --teams TECH,DESIGN
linear projects update "Project Name" --state completed
linear teams list
linear teams view TECH
linear cycles list --team TECH
linear cycles current --team TECH
linear cycles view <cycle-id>
linear cycles create --team TECH --starts-at 2024-01-01 --ends-at 2024-01-14
linear labels list
linear labels list --team TECH
linear labels create --name "bug" --color "#ff0000"
linear users list
linear users me
linear users view "User Name"
linear states list --team TECH
All commands support --json for machine-readable output:
linear issues list --team TECH --json
Use --no-color to disable colored output.
linear issues list --assignee me --state "In Progress"
linear issues create --title "Bug: description" --team TECH --priority 2 --labels "bug"
linear issues update TECH-123 --state "Done"
linear issues view TECH-123 --json
linear cycles current --team TECH
0 - No priority1 - Urgent2 - High3 - Medium4 - Low--json flag when you need to parse output programmaticallylinear teams list to find available teamsme as assignee to refer to the authenticated userlinear states list --team <TEAM> to see valid states