linear
57
总安装量
57
周安装量
#3816
全站排名
安装命令
npx skills add https://github.com/lobehub/lobe-chat --skill linear
Agent 安装分布
claude-code
50
opencode
41
gemini-cli
34
cursor
33
codex
29
Skill 文档
Linear Issue Management
Before using Linear workflows, search for linear MCP tools. If not found, treat as not installed.
Workflow
- Retrieve issue details before starting:
mcp__linear-server__get_issue - Check for sub-issues: Use
mcp__linear-server__list_issueswithparentIdfilter - Update issue status when completing:
mcp__linear-server__update_issue - Add completion comment (REQUIRED):
mcp__linear-server__create_comment
Creating Issues
When creating issues with mcp__linear-server__create_issue, MUST add the claude code label.
Completion Comment (REQUIRED)
Every completed issue MUST have a comment summarizing work done. This is critical for:
- Team visibility
- Code review context
- Future reference
PR Association (REQUIRED)
When creating PRs for Linear issues, include magic keywords in PR body:
Fixes LOBE-123Closes LOBE-123Resolves LOBE-123
Per-Issue Completion Rule
When working on multiple issues, update EACH issue IMMEDIATELY after completing it:
- Complete implementation
- Run
bun run type-check - Run related tests
- Create PR if needed
- Update status to “In Review” (NOT “Done”)
- Add completion comment
- Move to next issue
Note: Status â “In Review” when PR created. “Done” only after PR merged.
â Wrong: Complete all â Update all statuses â Add all comments
â Correct: Complete A â Update A â Comment A â Complete B â …