From product-management
Creates GitHub issues for gaps marked 'FILE' in gap analysis via gh CLI. Supports interactive review (no args), batch 'all', or specific gap ID.
How this command is triggered — by the user, by Claude, or both
Slash command
/product-management:fileThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Feature Filing Create GitHub Issues for gaps marked "FILE" in gap analysis. ## Prerequisites 1. Check GitHub CLI availability: If not authenticated: "Run `gh auth login` first." 2. Check gap analysis exists: - Read latest `.pm/gaps/*.md` file - If missing: "Run `/pm:gaps` first." ## Process ### Without Arguments - Review Mode Walk through each gap from latest analysis: 1. Show gap with score and evidence 2. Ask: "FILE / WAIT / SKIP?" 3. Allow score adjustments 4. Save decisions to gap analysis file ### With Argument - File Specific or All If `$ARGUMENTS` is "all": -...
Create GitHub Issues for gaps marked "FILE" in gap analysis.
Check GitHub CLI availability:
gh auth status
If not authenticated: "Run gh auth login first."
Check gap analysis exists:
.pm/gaps/*.md file/pm:gaps first."Walk through each gap from latest analysis:
If $ARGUMENTS is "all":
If $ARGUMENTS is specific gap ID:
For each gap to file:
Deduplication Check
gh issue list --search "[gap title]" --label "pm:feature-request" --json number,title
If >70% match exists: Show existing issue, ask to continue
Create Issue using template from references/issue-template.md:
gh issue create \
--title "Feature: [Gap Name]" \
--body "[Issue template filled]" \
--label "pm:feature-request" \
--label "[winning-label]" \
--label "[priority-label]"
Apply Labels:
winning:high, priority:nowwinning:medium, priority:nextwinning:low, priority:laterSave Local Copy
.pm/requests/[issue-number].mdReturn Issue URLs to user
Output markdown formatted for manual GitHub issue creation.
npx claudepluginhub arush361/product-claude-code --plugin product-management/fileCreates GitHub issues for gaps marked 'FILE' in gap analysis via gh CLI. Supports interactive review (no args), batch 'all', or specific gap ID.
/create-issueCreates a GitHub issue with automated codebase research, best practices analysis, and duplicate checks. Supports --quick mode for faster async execution.
/issueCreates a structured GitHub issue with type classification, title prefix, and repository routing, designed for downstream pipeline consumption.
/issue-createCreates a structured GitHub issue from current context or description, with optional template selection and meta-directive handling.
/SKILLCreates GitHub issues from a description following TDD principles, labeling conventions, and repo templates. Analyzes state, avoids duplicates, and reports issue URL.
/create-issueCreates a well-structured GitHub issue interactively: prompts for type-specific details (bug/feature/task), applies templates/labels/milestones/projects, and uses GitHub API. Reports issue URL.