dart-close-issue
GitHub用于处理 GitHub Issue 关闭流程。检查问题状态,验证修复情况(如合并PR或已解决),起草包含致谢和解决方案的关闭评论。仅在获得明确授权后执行发布评论和关闭Issue的操作。
Trigger Scenarios
Install
npx skills add dartsim/dart --skill dart-close-issue -g -y
SKILL.md
Frontmatter
{
"name": "dart-close-issue",
"description": "DART Close Issue: draft and optionally post a GitHub issue closing message"
}
dart-close-issue
Use this skill in Codex to run the DART dart-close-issue workflow. The editable
workflow source lives in .claude/commands/; this file is its generated adapter
in the shared .agents/skills/ catalog.
Invocation
- Claude Code/OpenCode:
/dart-close-issue <arguments> - Codex:
$dart-close-issue <arguments>
Treat the text after the skill name as $ARGUMENTS. When the workflow
references $1, $2, etc., map those to the positional values supplied by the
user.
Command Body
Close or prepare closing message for issue: $ARGUMENTS
Required Reading
@AGENTS.md @docs/onboarding/contributing.md
Workflow
- Inspect the issue:
gh issue view <ISSUE_NUMBER> --comments. - Verify the stated resolution:
- fixed by merged PR
- already fixed on
main - no longer reproducible
- out of scope or needs a different tracker
- Draft a concise closing message:
- thank the reporter
- state the concrete resolution
- link the fixing PR or relevant docs when available
- Only post and close if the user explicitly requested action and explicit
maintainer/user approval has been given:
gh issue comment <ISSUE_NUMBER> --body "<message>" gh issue close <ISSUE_NUMBER>
Output
- Closing message
- Whether it was posted
- Whether the issue was closed
Version History
- b9fbefc Current 2026-07-19 11:29


