Install
openclaw skills install gitee-implement-issueUse this skill when the user asks to implement an issue, "work on this issue", "implement issue", "develop based on an issue", "implement-issue". Requires Gi...
openclaw skills install gitee-implement-issueNote: 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.
Complete the full development loop starting from a Gitee Issue: requirements analysis → coding → creating a PR → linking back to the Issue.
get_repo_issue_detail, list_repo_issues, create_pull, comment_issue, update_issue)Use get_repo_issue_detail to retrieve full Issue information:
Also use list_issue_comments to review comments and check:
Based on the Issue content, produce a requirements analysis:
## Requirements Analysis: [Issue title]
**Type**: [Feature / Bug Fix / Performance / Other]
**Goal**:
[One sentence describing what needs to be implemented]
**Scope** (estimated):
- [Modules / files likely involved]
- [APIs / database tables likely involved]
**Implementation Plan**:
1. [Step 1]
2. [Step 2]
3. [Step 3]
**Potential Risks**:
- [Things to watch out for]
**Acceptance Criteria**:
- [ ] [Criterion 1]
- [ ] [Criterion 2]
Based on the requirements analysis, help the user by:
If the user has already finished coding, proceed to the next step.
Use comment_issue to post a progress update on the Issue:
Starting work on this issue. Expected changes:
- [Main change 1]
Implementation approach:
[Brief summary]
This keeps other contributors informed and avoids duplicated effort.
Use create_pull to create a PR. The PR description should include:
closes #[issue number] (to auto-close the linked Issue on merge)After the PR is created:
comment_issue to post the PR link on the Issueupdate_issue to change itComment template:
PR #[PR number] has been created to address this issue.
Please review: [PR link]
closes #N syntax in the PR description will automatically close the Issue when the PR is merged