How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-git-native-issue:closeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Close an issue, optionally with a closing message and reason.
Close an issue, optionally with a closing message and reason.
Parse $ARGUMENTS:
-m "message": closing message (optional, defaults to "Completed")--reason <reason>: closing reason — completed, duplicate, wontfix, invalid--fixed-by <sha>: commit SHA that fixed the issueIf $ARGUMENTS is empty, run git issue ls -l in-progress to show current work and ask which to close. If no in-progress issues, fall back to git issue ls and ask.
$ARGUMENTS.git issue state <id> --close -m "<message>" with optional --reason and --fixed-by./claude-git-native-issue:close a7f3b2c -m "All tests passing"
/claude-git-native-issue:close a7f3b2c --reason duplicate
/claude-git-native-issue:close a7f3b2c --fixed-by abc1234
/claude-git-native-issue:close → interactive selection from open issues
npx claudepluginhub remenoscodes/claude-plugin-marketplace --plugin claude-git-native-issueGuides on working with GitHub issues: read descriptions/comments/related PRs, define acceptance criteria with verifiable behaviors, and commit with proper references.
Manages GitHub issues using GitHub CLI: lists open issues, views details by number, creates with title/body/labels, edits labels/assignees, closes/reopens. Triggers on 'show open issues', 'create issue', etc.
Tracks GitHub issue progress using gh CLI and git: labels issues, adds comments/commits, creates branches/PRs. Use when starting implementation or reporting updates.