$npx -y skills add github/awesome-copilot --skill create-github-issue-feature-from-specificationCreate GitHub Issue for feature request from specification file using feature_request.yml template.
| 1 | # Create GitHub Issue from Specification |
| 2 | |
| 3 | Create GitHub Issue for the specification at `${file}`. |
| 4 | |
| 5 | ## Process |
| 6 | |
| 7 | 1. Analyze specification file to extract requirements |
| 8 | 2. Check existing issues using `search_issues` |
| 9 | 3. Create new issue using `create_issue` or update existing with `update_issue` |
| 10 | 4. Use `feature_request.yml` template (fallback to default) |
| 11 | |
| 12 | ## Requirements |
| 13 | |
| 14 | - Single issue for the complete specification |
| 15 | - Clear title identifying the specification |
| 16 | - Include only changes required by the specification |
| 17 | - Verify against existing issues before creation |
| 18 | |
| 19 | ## Issue Content |
| 20 | |
| 21 | - Title: Feature name from specification |
| 22 | - Description: Problem statement, proposed solution, and context |
| 23 | - Labels: feature, enhancement (as appropriate) |