Creates a GitHub Issue with typed labels and structured planning metadata via create_issue.sh. Sub-skill invoked by start_task — do not call directly; use /start_task instead.
How this skill is triggered — by the user, by Claude, or both
Slash command
/project-init-workflow:create_issueWhen to use
Invoked by the start_task skill whenever a GitHub Issue must be created; never called directly by users.
This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill whenever creating a GitHub Issue.
Use this skill whenever creating a GitHub Issue.
Before creating the issue, determine:
feat, fix, chore, docs, or testhigh, medium, or lowXS, S, M, L, or XLIf type, title, priority, area, size, or acceptance criteria are not clear from context, ask the user before proceeding.
.claude/scripts/create_issue.sh; do not call gh issue create directly unless the script cannot satisfy the case.gh issue list --state open --search "<keywords>"
Run:
.claude/scripts/create_issue.sh <type> "<title>" \
--priority <high|medium|low> \
--area "<area>" \
--size <XS|S|M|L|XL> \
--reference "<reference>" \
--dependency "<dependency>" \
--acceptance "<criterion>"
Repeat --reference, --dependency, and --acceptance as needed.
After creation, report the issue number and URL:
gh issue view <number> --json url -q .url
npx claudepluginhub vytcepas/project-init --plugin project-init-workflowGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.