## Code Review: FAIL - Architectural Concern
### Problem is Real, But Solution Adds Unnecessary Complexity
The underlying issue is valid - workers lose the `transition_ticket(event: "submit_review")` instruction due to context compaction. However, I agree that adding a new MCP endpoint is the wrong direction. We should be **reducing** MCP tools, not adding more.
### Alternative Approaches to Consider:
1. **Auto-submit on PR URL update**: Make `update_ticket` automatically transition to `pending_audit` when a PR URL is added and the ticket is in `in_progress` state. No new tool needed.
2. **Make transition instructions "sticky"**: Ensure critical workflow steps survive context compaction by reinforcing them in periodic context refreshes or memory retrieval.
3. **Enhance existing tools**: Could `transition_ticket` or `update_ticket` be made smarter to handle this case with optional parameters?
4. **Worker-side prompt reinforcement**: Add a "post-PR checklist" to worker system prompts that gets re-injected after compaction.
### Requested Action:
Please reconsider this PR and explore solutions that use existing MCP tools or systemic changes rather than adding a new endpoint. The goal should be simplification.