How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-git-native-issue:createThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a new issue in the current repository using git-native-issue.
Create a new issue in the current repository using git-native-issue.
Parse $ARGUMENTS as the issue creation parameters:
-m "description": issue body/description-l label: label (can be repeated for multiple labels)-p priority: priority level (low, medium, high, critical)-a email: assignee emailIf $ARGUMENTS is empty, ask the user for at least a title.
Verify prerequisites:
git rev-parse --git-dir 2>/dev/null to confirm we are in a git repowhich git-issue 2>/dev/null to confirm git-issue is installedgit config --get issue.remote fails and there is a remote), run git issue init firstConstruct the command from parsed arguments. Pass the title as the first positional argument, flags after.
Execute git issue create and capture the output.
Report the created issue ID and suggest next actions:
git issue show <id> to see detailsgit issue edit <id> --add-label in-progress to start working on it/claude-git-native-issue:create "Fix auth bug" -l bug -p high
/claude-git-native-issue:create "Add dark mode" -m "Users requested dark theme support" -l feature
/claude-git-native-issue:create "Refactor database layer" -l refactor -l elixir -p medium
npx claudepluginhub remenoscodes/claude-plugin-marketplace --plugin claude-git-native-issueCreates GitHub issues interactively: prompts for repo, title, body, labels; uses GitHub MCP tool. Returns issue number and URL.
Creates GitLab issues interactively via /create-issue: prompts for project ID/path, title, description, labels; uses GitLab MCP tool and returns issue URL.
Creates formatted GitHub issues with auto-detected labels (bug, enhancement, performance, security), codebase context via grep searches, recent issues check, and gh CLI.