The Prompt
add checking pr review and commit limit per pr feature. add prompt information in issue and add prompt and response information in pr. ultrawork
Context
User wanted to enhance an existing OpenCode Git Workflow Enforcer plugin with 4 distinct features:
- PR review checking (block merge if not approved)
- Commit limit per PR enforcement (block PR creation if too many commits)
- Enhanced prompt info in GitHub issues (full history)
- Prompt + response info in PRs (conversation context)
The ultrawork suffix triggered a specific mode requiring:
- Plan agent invocation before implementation
- Parallel task execution in waves
- Full verification before completion
Outcome
Worked - All 4 features implemented in ~35 minutes:
- 4 commits, 1 PR created
- ~255 lines added to plugin
- Documentation updated across 3 files
Notable Because
- Concise multi-feature request: 4 distinct features in one sentence, no ambiguity
- Implicit scope clarity: Each feature had clear boundaries
- Mode trigger:
ultraworksuffix activated specific behavior (plan-first, parallel execution) - Zero clarification needed: Request was specific enough to proceed directly
Pattern
{feature1} + {feature2} + {feature3} + {feature4}. {mode-trigger}
When features are:
- Independent (can be implemented separately)
- Clear in scope (no ambiguity)
- Related to same codebase
This pattern allows efficient batch implementation vs 4 separate requests.