Install
openclaw skills install gitee-triage-issuesUse this skill when the user asks to triage issues, organize the issue list, "triage issues", "show me all open issues", "categorize issues", "triage-issues"...
openclaw skills install gitee-triage-issuesNote: If you have
mcporterinstalled locally, you should usemcporterto invoke the MCP tool instead of directly calling the MCP tool. ThemcporterCLI provides a more convenient interface and better error handling.
Batch-process a repository's Issues: classify by priority, add labels, identify duplicates, and generate a clear action list.
list_repo_issues, get_repo_issue_detail, update_issue, comment_issue)Use list_repo_issues to retrieve open Issues:
state: open (open Issues only)For each Issue, quickly evaluate:
Type classification
bug: something is broken, throwing errors, or crashingfeature: request for new functionalityenhancement: improvement to existing functionalityquestion: usage questiondocs: documentation-relatedduplicate: same as an existing IssuePriority assessment
P0 - Critical: affects core functionality, production bug, security vulnerabilityP1 - High: significant functional defect, affects many usersP2 - Medium: general improvement, workaround existsP3 - Low: nice-to-have, cosmetic improvementStatus assessment
Output a structured report:
## Issue Triage Report
Repository: [owner/repo]
Date: [date]
Total open issues: [N]
---
### 🔴 P0 Critical (needs immediate attention)
| # | Title | Type | Note |
|---|-------|------|------|
| #N | [title] | bug | [one sentence explaining urgency] |
### 🟠 P1 High Priority
| # | Title | Type | Note |
|---|-------|------|------|
### 🟡 P2 Medium Priority
| # | Title | Type | Note |
|---|-------|------|------|
### 🟢 P3 Low Priority
| # | Title | Type | Note |
|---|-------|------|------|
---
### Needs More Information
- #N [title]: [what information is missing]
### Possible Duplicates
- #N may be a duplicate of #M: [explanation]
### Recommended for Closure
- #N [title]: [reason, e.g., long inactive / already resolved another way]
Ask the user whether to automatically update labels and priorities.
After confirmation, use update_issue for Issues that need updating:
For Issues that need more information, use comment_issue to ask:
Thanks for submitting this issue!
To help us address it more effectively, could you please provide:
- [Missing reproduction steps]
- [Environment and version info]
- [Expected behavior vs. actual behavior]
Thank you!