AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Close Issue Flow

skill-oschina-gitee-agent-skills-close-issue-flow · by oschina

Use this skill when the user asks to close an issue, wrap up an issue, "close issue", "close-issue-flow", or finish up after a fix has been merged. Requires Gitee MCP Server to be configured.

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-oschina-gitee-agent-skills-close-issue-flow

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-oschina-gitee-agent-skills-close-issue-flow)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Close Issue Flow? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

> Note: If you have mcporter installed locally, you should use mcporter to invoke the MCP tool instead of directly calling the MCP tool. The mcporter CLI provides a more convenient interface and better error handling.

Close Issue Flow via Gitee MCP

Execute the complete Issue closing workflow: verify the fix is merged → post a closing comment → update the Issue status.

Prerequisites

  • Gitee MCP Server configured (tools: get_repo_issue_detail, list_repo_pulls, create_comment (resource_type: issue), update_issue)
  • User must provide: repository owner, repository name, Issue number
  • Typically run after the related PR has been merged or the problem has been resolved

Steps

Step 1: Fetch Issue Details

Use get_repo_issue_detail to retrieve Issue information:

  • Title, description, labels
  • Current state (check if it's already closed)
  • Existing comments (to understand how it was resolved)

If the Issue is already closed, notify the user and stop.

Step 2: Confirm Linked PR Status

Use list_repo_pulls to query the repository's PRs, filtering for:

  • State: merged
  • Description containing closes #[issue number] or fixes #[issue number]

Based on the results:

  • If a merged linked PR is found → confirm the fix is live
  • If the related PR is still open → notify the user that the PR has not been merged yet
  • If no linked PR exists → ask the user how the Issue was resolved

Step 3: Post Closing Comment

Use create_comment (resource_type: issue) to post a closing note. Choose the appropriate template:

When a linked PR was merged:

This issue has been fixed and merged via PR #[number].

**Fix summary**: [brief description of the fix]

Thanks for the report! If the problem persists, feel free to reopen this issue or submit a new one.

When resolved directly (no PR):

This issue has been resolved.

**Solution**: [description of how it was resolved]

If the problem persists, feel free to reopen this issue or submit a new one.

When unable to reproduce or request was declined:

[Explanation, e.g., "Unable to reproduce this issue" or "After discussion, we've decided not to implement this feature at this time."]

If you have new information, feel free to reopen the issue with additional details.

Step 4: Close the Issue

Use update_issue to update the Issue state:

  • state: closed

Optionally:

  • Update labels (e.g., add fixed or resolved)
  • Assign to a milestone (add to a completed milestone)

Step 5: Output Summary

## Issue Closed

- Issue: #[number] [title]
- Reason: [Fixed / Cannot reproduce / Declined]
- Linked PR: #[number] (if any)
- Closing comment posted ✅
- Issue status updated to closed ✅

Notes

  • Always confirm the issue is genuinely resolved before closing, to avoid premature closure
  • When closing a bug reported by a user, thank them for the report
  • When declining a feature request, explain the reason and close politely
  • Using closes #N in a PR description will auto-close the Issue on merge — this skill is for cases where manual closure or an explanatory comment is needed

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.