一键导入
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 |