Summary
Add mandatory quality gate to PR template requiring contributors to review chatmodes, prompts, and instructions with the prompt-builder agent before submission.
Background
AI artifact contributions benefit from validation by the specialized prompt-builder agent which checks for common issues, standards compliance, and quality gates. Currently this step is optional/implicit. Making it explicit in the PR template ensures consistent quality.
Objectives
- Add checkbox requiring
prompt-builder review for AI artifact contributions
- Place requirement prominently in type selection section
- Add detailed validation checklist for AI artifacts
- Improve submission quality through mandatory AI-assisted peer review
Changes
File: .github/PULL_REQUEST_TEMPLATE.md
Change 1: Type Selection Section
Add as first checkbox under "AI Artifacts:" type selection:
- [ ] Reviewed contribution with `prompt-builder` chatmode and addressed all feedback
This appears before the 3 file type checkboxes (instructions/prompt/chatmode), ensuring contributors see the requirement immediately when selecting AI artifact contribution type.
Change 2: Detailed Checklist Section
Add new "AI Artifact Contributions" section in checklist:
### AI Artifact Contributions
<!-- If contributing a chatmode, prompt, or instruction, complete these checks -->
- [ ] Used `prompt-builder` chatmode to review contribution
- [ ] Addressed all feedback from `prompt-builder` review
- [ ] Verified contribution follows common standards and type-specific requirements
Acceptance Criteria
Technical Notes
- Placement strategy: Dual placement (type selection + detailed checklist) ensures visibility without redundancy
- Agent reference: Uses backticks for code formatting:
prompt-builder
- Validation: Template must pass
npm run lint:md
Usage Instructions
When contributing AI artifacts, contributors will:
- Select "AI Artifacts" in Type of Change section
- See immediate requirement: "Reviewed contribution with
prompt-builder chatmode"
- Check detailed validation steps in AI Artifact Contributions checklist section
- Complete all 3 validation checkboxes before submitting PR
Related Issues
Part of AI artifact contribution documentation initiative (PR feat/ai-artifact-contrib-docs)
Summary
Add mandatory quality gate to PR template requiring contributors to review chatmodes, prompts, and instructions with the
prompt-builderagent before submission.Background
AI artifact contributions benefit from validation by the specialized
prompt-builderagent which checks for common issues, standards compliance, and quality gates. Currently this step is optional/implicit. Making it explicit in the PR template ensures consistent quality.Objectives
prompt-builderreview for AI artifact contributionsChanges
File:
.github/PULL_REQUEST_TEMPLATE.mdChange 1: Type Selection Section
Add as first checkbox under "AI Artifacts:" type selection:
This appears before the 3 file type checkboxes (instructions/prompt/chatmode), ensuring contributors see the requirement immediately when selecting AI artifact contribution type.
Change 2: Detailed Checklist Section
Add new "AI Artifact Contributions" section in checklist:
Acceptance Criteria
prompt-builder)Technical Notes
prompt-buildernpm run lint:mdUsage Instructions
When contributing AI artifacts, contributors will:
prompt-builderchatmode"Related Issues
Part of AI artifact contribution documentation initiative (PR feat/ai-artifact-contrib-docs)