dart-close-issue
GitHub用于处理 GitHub Issue 的关闭工作流。通过查看 Issue 及评论验证修复状态,撰写包含感谢和解决说明的关闭消息,并在获得明确批准后执行发布评论和关闭 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 currently lives in .claude/commands/, and this generated
Codex skill is a first-class Codex entrypoint.
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
- e0d13fd Current 2026-07-05 10:37


