create-github-issues-for-unmet-specification-requirements
작성자: github
명세 요구사항 중 아직 코드에 구현되지 않은 항목에 대해 GitHub 이슈를 자동으로 생성합니다. 명세 파일을 분석하여 모든 요구사항을 추출한 후, 각 요구사항에 대한 코드베이스 구현 상태를 확인합니다. 중복 생성을 방지하기 위해 기존 이슈를 검색한 후 새로운 기능 요청 이슈를 생성합니다. 요구사항 ID, 상세 설명, 구현 가이드라인, 수용 기준이 포함된 이슈를 생성합니다. 관련 명세 파일과 코드 패턴을 스캔하여 요구사항이 구현되었는지 확인합니다...
npx skills add https://github.com/github/awesome-copilot --skill create-github-issues-for-unmet-specification-requirementsCreate GitHub Issues for Unmet Specification Requirements
Create GitHub Issues for unimplemented requirements in the specification at ${file}.
Process
- Analyze specification file to extract all requirements
- Check codebase implementation status for each requirement
- Search existing issues using
search_issuesto avoid duplicates - Create new issue per unimplemented requirement using
create_issue - Use
feature_request.ymltemplate (fallback to default)
Requirements
- One issue per unimplemented requirement from specification
- Clear requirement ID and description mapping
- Include implementation guidance and acceptance criteria
- Verify against existing issues before creation
Issue Content
- Title: Requirement ID and brief description
- Description: Detailed requirement, implementation method, and context
- Labels: feature, enhancement (as appropriate)
Implementation Check
- Search codebase for related code patterns
- Check related specification files in
/spec/directory - Verify requirement isn't partially implemented