maestro_get_decision
Force a design decision using partial answers, bypassing remaining interview questions. Returns the best mode, confidence score, and reasoning.
Instructions
Force a design decision with current answers (skip remaining questions).
Use this tool when you want to proceed with partial information and skip the remaining interview questions. MAESTRO will make the best decision based on the answers provided so far.
Args: session_id: Active session ID from maestro_start_session
Returns: Dict containing: - decision: Design decision with: - mode: Selected design mode (design_frontend, design_page, etc.) - confidence: Confidence score (0.0 to 1.0) - parameters: Mode-specific parameters - reasoning: Human-readable explanation - alternatives: Other viable modes - status: "decided" | "failed"
Example: # Force decision after answering some questions result = await maestro_get_decision(session_id="maestro_abc123") if result["status"] == "decided": print(f"Mode: {result['decision']['mode']}") print(f"Confidence: {result['decision']['confidence']}")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes |