From product-management
Batch creates GitHub Issues for feature gaps flagged as FILE in gap analysis, with deduplication, label scoring, and optional per-gap filing.
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-management2plugins reuse this command
First indexed Dec 31, 2025
/fileBatch creates GitHub Issues for feature gaps flagged as FILE in gap analysis, with deduplication, label scoring, and optional per-gap filing.
/create-issueCreates a GitHub issue with automated codebase research, best practices analysis, and duplicate checks. Supports --quick mode for faster async execution.
/issueCreates a well-structured GitHub issue using a deterministic pipeline — reads code, deduplicates, drafts from a canonical template, validates mandatory sections, and creates the issue. Supports --dry-run for review and programmatic invocation via --title/--body-file.
/issue-createCreates a structured GitHub issue from current context or description, with optional template selection and meta-directive handling.
/SKILLGenerates a structured GitHub Issue with title, body, and optional plan section, incorporating context from challenge, research, and think artifacts.
/issuesCreates GitHub issues from research findings as atomic deliverables, with options for dry-run and label assignment.