create-github-issue-feature-from-specification
작성자: github
사양 파일에서 feature_request.yml 템플릿을 사용하여 GitHub 이슈를 생성합니다. 사양 파일을 분석하여 요구사항을 추출하고 이슈 제목과 설명을 자동으로 생성합니다. 새 이슈를 생성하기 전에 기존 이슈를 검색하여 중복을 방지합니다. GitHub API를 통해 새 이슈 생성과 기존 이슈 업데이트를 모두 지원합니다. 사양 내용에 따라 feature 및 enhancement 레이블을 자동으로 적용합니다.
npx skills add https://github.com/github/awesome-copilot --skill create-github-issue-feature-from-specificationCreate GitHub Issue from Specification
Create GitHub Issue for the specification at ${file}.
Process
- Analyze specification file to extract requirements
- Check existing issues using
search_issues - Create new issue using
create_issueor update existing withupdate_issue - Use
feature_request.ymltemplate (fallback to default)
Requirements
- Single issue for the complete specification
- Clear title identifying the specification
- Include only changes required by the specification
- Verify against existing issues before creation
Issue Content
- Title: Feature name from specification
- Description: Problem statement, proposed solution, and context
- Labels: feature, enhancement (as appropriate)