بنقرة واحدة
close-issues
Close GitHub issues that have been implemented, with verification
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Close GitHub issues that have been implemented, with verification
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Implement a plan with coordinated agents
Verify completed plan implementation, fix gaps, and commit fixes
Validate C# scripts compile by running a standalone syntax check
Clean temporary files and build artifacts
Stage and commit current changes with an auto-generated message
Create an implementation plan from GitHub issues or a description
| name | close-issues |
| description | Close GitHub issues that have been implemented, with verification |
| argument-hint | <plan.md or issue numbers: 123,456> |
Close GitHub issues after verifying their implementation is complete. Accepts either a plan file path (to extract referenced issues) or a comma-separated list of issue numbers.
Usage:
/close-issues 5,6 — verify and close specific issues/close-issues plans/my-plan.md — find and close issues referenced in a planParse $ARGUMENTS to determine input mode:
5,6): treat as explicit issue listplans/foo.md): read the file and extract issue numbers from #NNN referencesIf a plan file was provided:
#NNN issue references (regex: #(\d+))If explicit issue numbers were provided, use them directly.
For each issue:
gh issue view <number> --json title,body,state,labels
Skip any issues that are already closed — report them as "already closed" in the final summary.
For each open issue, verify the fix exists in the codebase:
git log --oneline --all --grep="#<number>"git log --oneline -20 --grep="<keyword>"Categorize each issue as:
For each VERIFIED issue:
gh issue close <number> --reason completed --comment "Closed — implemented in $(git log --oneline --all --grep='#<number>' | head -1 | cut -d' ' -f1). Verified in codebase."
For PARTIAL issues:
For NOT FOUND issues:
Present a summary table:
| Issue | Title | Status | Action |
|-------|-------|--------|--------|
| #5 | ... | VERIFIED | Closed |
| #6 | ... | PARTIAL | Commented |