linear
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseLinear Issue Management
Linear问题管理
Before using Linear workflows, search for MCP tools. If not found, treat as not installed.
linear在使用Linear工作流之前,请搜索 MCP工具。如果未找到,则视为未安装。
linearWorkflow
工作流
- Retrieve issue details before starting:
mcp__linear-server__get_issue - Check for sub-issues: Use with
mcp__linear-server__list_issuesfilterparentId - Update issue status when completing:
mcp__linear-server__update_issue - Add completion comment (REQUIRED):
mcp__linear-server__create_comment
- 开始前检索问题详情:
mcp__linear-server__get_issue - 检查子问题:使用带过滤器的
parentIdmcp__linear-server__list_issues - 完成时更新问题状态:
mcp__linear-server__update_issue - 添加完成评论(必填):
mcp__linear-server__create_comment
Creating Issues
创建问题
When creating issues with , MUST add the label.
mcp__linear-server__create_issueclaude code使用创建问题时,必须添加标签。
mcp__linear-server__create_issueclaude codeCompletion 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)
PR关联(必填)
When creating PRs for Linear issues, include magic keywords in PR body:
Fixes LOBE-123Closes LOBE-123Resolves LOBE-123
为Linear问题创建PR时,请在PR正文中包含魔法关键字:
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 → ...
处理多个问题时,完成每个问题后立即更新该问题:
- 完成实现
- 运行
bun run type-check - 运行相关测试
- 如有需要创建PR
- 将状态更新为**“In Review”(而非“Done”)**
- 添加完成评论
- 处理下一个问题
注意:创建PR后将状态改为“In Review”。仅当PR合并后才改为“Done”。
❌ 错误做法:完成所有问题 → 更新所有状态 → 添加所有评论
✅ 正确做法:完成问题A → 更新问题A → 为问题A添加评论 → 完成问题B → ...