Task Type: Feature Closing
Purpose
Execute Feature Closing tasks by:
- •Verifying acceptance criteria
- •Finalizing documentation
- •Creating pull request
- •Outputting summary
Important Notes
Skill Prerequisite
- •If you HAVE NOT learned
task-execution-guidelineskill, please learn it first before executing this skill.
Important: If Agent DO NOT have skill capability, can directly go to .github/skills/ folder to learn skills. And SKILL.md file is the entry point to understand each skill.
Task Type Default Attributes
| Attribute | Value |
|---|---|
| Task Type | Feature Closing |
| Category | feature-stage |
| Next Task Type | User Manual |
| Require Human Review | No |
| Feature Phase | Feature Closing |
Task Type Required Input Attributes
| Attribute | Default Value |
|---|---|
| Auto Proceed | False |
Skill/Task Completion Output
This skill MUST return these attributes to the Task Data Model upon task completion:
Output:
category: feature-stage
status: completed | blocked
next_task_type: User Manual
require_human_review: No
auto_proceed: {from input Auto Proceed}
task_output_links: [PR link, changelog]
feature_id: FEATURE-XXX
feature_title: {title}
feature_version: {version}
feature_phase: Feature Closing
Definition of Ready (DoR)
| # | Checkpoint | Required |
|---|---|---|
| 1 | Code implementation complete | Yes |
| 2 | Feature status is "Implemented" | Yes |
| 3 | All tests passing | Yes |
Execution Flow
Execute Feature Closing by following these steps in order:
| Step | Name | Action | Gate to Next |
|---|---|---|---|
| 1 | Verify Criteria | Check all acceptance criteria are met | All criteria met |
| 2 | Finalize Docs | Update README, API docs, CHANGELOG | Docs complete |
| 3 | Create PR | Create pull request with proper description | PR created |
| 4 | Output Summary | Provide completion summary to human | Summary delivered |
⛔ BLOCKING RULES:
- •Step 1 → 2: BLOCKED if any acceptance criterion not met
- •Step 1: If criteria not met, STOP and report to human
Execution Procedure
Step 1: Verify Acceptance Criteria
Action: Confirm all criteria are met
1. Get acceptance criteria from feature scope 2. Check each criterion 3. Document verification results 4. Flag any unmet criteria
🎨 Mockup Verification (Conditional):
IF Technical Scope in specification.md includes [Frontend] OR [Full Stack]:
1. Open "Linked Mockups" from specification.md
2. Compare implemented UI against mockup:
- Layout matches mockup design
- All UI elements present
- Interactions work as shown
- Visual styling is consistent
3. Add mockup compliance to verification results
4. Document any approved deviations
ELSE (Backend/API Only/Database):
- Skip visual verification
- Focus on functional acceptance criteria
Verification Template:
## Acceptance Criteria Verification | # | Criterion | Status | Evidence | |---|-----------|--------|----------| | 1 | [Criterion 1] | ✓ Met | [How verified] | | 2 | [Criterion 2] | ✓ Met | [How verified] | | 3 | [Criterion 3] | ✗ Not Met | [What's missing] | | 4 | UI matches mockup (if applicable) | ✓ Met | Visual comparison |
If criteria not met:
- •Stop and report to human
- •Do not proceed to PR creation
- •Wait for guidance
Step 2: Finalize Documentation
Action: Ensure all docs are complete and current
Documentation Checklist:
| Document | Status Check |
|---|---|
| README (if user-facing) | Updated with new feature |
| API docs | Endpoints documented |
| Code comments | Complex logic explained |
| Changelog | Entry added |
| Feature docs | All artifacts present |
Changelog Entry Format:
## [Version] - YYYY-MM-DD ### Added - [Feature name]: [Brief description] ### Changed - [Any changes to existing behavior] ### Fixed - [Any bugs fixed during implementation]
Step 3: Create Pull Request
Action: Create PR with proper description
PR Title Format:
feat: [Feature Name] - [Brief Description]
PR Description Template:
## Summary [1-2 sentences describing what this PR adds] ## Related - Feature: FEATURE-XXX - Design: [link to design doc] ## Changes - [Major change 1] - [Major change 2] - [Major change 3] ## Testing - [ ] Unit tests pass - [ ] Integration tests pass - [ ] Human playground tested ## Screenshots/Demo [If applicable] ## Checklist - [ ] Code follows project conventions - [ ] Tests added/updated - [ ] Documentation updated - [ ] No breaking changes (or documented)
Step 4: Output Summary
Action: Provide completion summary
Summary Template:
## Feature Complete: [Feature Name] ### Delivered - [Key deliverable 1] - [Key deliverable 2] ### Files Changed - X files added - Y files modified - Z tests added ### Acceptance Criteria - [X/Y] criteria met ### Pull Request - PR #XXX: [Title] - [Link to PR] ### Notes - [Any important notes for reviewer]
Definition of Done (DoD)
| # | Checkpoint | Required |
|---|---|---|
| 1 | Acceptance criteria verified | Yes |
| 2 | Documentation finalized | Yes |
| 3 | PR created with proper description | Yes |
| 4 | Summary provided to human | Yes |
Important: After completing this skill, always return to task-execution-guideline skill to continue the task execution flow and validate the DoD defined there.
Output Artifacts
| Artifact | Location | Description |
|---|---|---|
| PR | GitHub/GitLab | Pull request |
| Changelog | CHANGELOG.md | Version entry |
| Summary | (in chat) | Completion report |
| Status Log | x-ipe-docs/features/FEATURE-XXX/changelog.md | Feature history |
Patterns
Pattern: All Criteria Met
1. Verify criteria → All met ✓ 2. Update docs → Complete ✓ 3. Create PR → PR #123 4. Output summary 5. DONE
Pattern: Criteria Not Met
1. Verify criteria → 1 not met
2. STOP
3. Report to human:
"Criterion X not met: [details]
Options:
a) Address the gap
b) Modify criterion
c) Defer to future"
4. Wait for guidance
Pattern: Minor Issues Found
1. Verify criteria → Met with minor issues 2. Fix minor issues 3. Re-verify → All met ✓ 4. Continue to PR
Anti-Patterns
| Anti-Pattern | Problem | Instead |
|---|---|---|
| PR without testing | Broken code merged | Ensure tests pass |
| Empty PR description | Reviewer confused | Write complete description |
| Skipping criteria check | Incomplete feature | Verify each criterion |
| Giant PR | Hard to review | Keep focused on one feature |
| No changelog | Lost history | Always update changelog |
Example
Feature: FEATURE-002 Email/Password Login
1. Execute Task Flow from task-execution-guideline skill
2. DoR Check:
- Code implementation complete ✓
- Feature status: Implemented ✓
- Tests passing ✓
3. Step 1 - Verify Criteria:
Acceptance Criteria:
- [x] User can login with email/password
- [x] Invalid credentials show error
- [x] Token returned on success
- [x] Rate limiting works
All 4/4 met ✓
4. Step 2 - Documentation:
- README.md updated ✓
- API docs added ✓
- CHANGELOG.md entry added ✓
5. Step 3 - Create PR:
Created PR #42:
"feat: Email/Password Authentication"
Description includes:
- Summary of changes
- Files changed
- Test coverage
- Screenshots
6. Step 4 - Summary:
## Feature Complete: Email/Password Login
### Delivered
- User registration
- Login/logout endpoints
- JWT token management
- Rate limiting
### Files
- 8 files added
- 2 files modified
- 15 tests added
### PR
- PR #42: feat: Email/Password Authentication
7. Return Task Completion Output:
feature_id: FEATURE-002
feature_status: Done Feature Closing
category: feature-stage
next_task_type: N/A
require_human_review: No
task_output_links:
- PR #42
- CHANGELOG.md
- x-ipe-docs/features/FEATURE-002/
8. Resume Task Flow from task-execution-guideline skill
(Feature chain COMPLETE)
Human Communication
When closing is complete:
Feature [Name] is complete! 🎉 PR: #XXX - [Title] [Link to PR] Summary: - [Key point 1] - [Key point 2] All acceptance criteria verified. Ready for review/merge.