- version-bumper: automated multi-file version synchronization - plugin-scaffolder: standardized 12-language i18n template generation - doc-mirror-sync: automated README to docs mirroring - i18n-validator: dictionary key alignment analysis via AST - gh-issue-replier: professional English reply with star-check logic - gh-issue-scheduler: unanswered issue audit and action planning
1.4 KiB
1.4 KiB
name, description
| name | description |
|---|---|
| gh-issue-scheduler | Finds all open GitHub issues that haven't been replied to by the owner, summarizes them, and generates a solution plan. Use when the user wants to audit pending tasks or plan maintenance work. |
Gh Issue Scheduler
Overview
The gh-issue-scheduler skill helps maintainers track community feedback by identifying unaddressed issues and drafting actionable technical plans to resolve them.
Workflow
- Identify Unanswered Issues: Run the bundled script to fetch issues without owner replies.
- Command:
bash scripts/find_unanswered.sh
- Command:
- Analyze and Summarize: For each identified issue, summarize the core problem and the user's intent.
- Generate Solution Plans: Draft a technical "Action Plan" for each issue, including:
- Root Cause Analysis (if possible)
- Proposed Fix/Implementation
- Verification Strategy
- Present to User: Display a structured report of all pending issues and their respective plans.
Tool Integration
Find Unanswered Issues
bash scripts/find_unanswered.sh
Report Format
When presenting the summary, use the following Markdown structure:
📋 Unanswered Issues Audit
Issue #[Number]: [Title]
- Author: @username
- Summary: Concise description of the problem.
- Action Plan:
- Step 1 (e.g., Investigate file X)
- Step 2 (e.g., Apply fix Y)
- Verification (e.g., Run test Z)