(input, matches)
| 152 | command: '/do --list', |
| 153 | reason: 'empty input should show available routes instead of guessing.', |
| 154 | resolver: 'exact-command', |
| 155 | final: true, |
| 156 | requiresSemanticClassification: false, |
| 157 | candidates: [], |
| 158 | confidence: 'high', |
| 159 | alternatives: [], |
| 160 | verification: 'Confirm the skill list renders and asks for a direction.', |
| 161 | dimensions: classifyComplexity(input, []), |
| 162 | }; |
| 163 | } |
| 164 | |
| 165 | const tier0 = resolveDeterministicCommand(selectTier0(input), options.projectRoot); |
| 166 | if (tier0) { |
| 167 | if (!tier0.final) { |
| 168 | return semanticDecision({ |
| 169 | mode, |
| 170 | tier: 0, |
| 171 | suggestedRoute: null, |
| 172 | reason: tier0.reason, |
| 173 | resolver: 'exact-command-capability-missing', |
no test coverage detected