1.6 KiB
1.6 KiB
Auto-Resolve Protocol (No-Pause Mode)
When any [NEEDS CLARIFICATION] marker or ambiguity is encountered at any step:
Rule: Auto-Resolve with Optimal Assumption
- Identify every
[NEEDS CLARIFICATION]marker or ambiguous item. - Evaluate the best answer based on:
- Context from the SRS document
- Common engineering best practices for domain
- Conservative, safe defaults (prefer explicit over implicit, standard over custom)
- Existing patterns in the codebase (
src/modules/)
- Choose the optimal assumption and record it with rationale.
- Encode the assumption directly into the document (replace marker with the resolved value).
- Report every resolved item in the
## [AUTO-RESOLVED] Assumptionssection of the phase report.
Auto-Resolved Assumptions Report Format
Every phase report MUST include:
## [AUTO-RESOLVED] Assumptions
| # | ID | Original Question | Auto-Answer | Rationale | Confidence |
|---|----|-------------------|-------------|-----------|------------|
| 1 | TBC-01 | <original question text> | <chosen answer> | <why this was chosen> | High/Med/Low |
> ⚠ User Review Recommended: Items with Confidence=Low should be verified by the user at their convenience.
Confidence Levels
- High — answer derived directly from SRS or existing codebase pattern, highly certain
- Med — answer based on best practice and domain knowledge, likely correct
- Low — answer is a reasonable guess; user should verify when convenient (pipeline continues)