answer
Research complex technical questions, compare options, and provide evidence-based recommendations with implementation steps for architecture decisions, migrations, and debugging.
Instructions
Research a question, compare options, and recommend a path (backed by sources). Use for library choices, architecture trade-offs, migrations, complex debugging, and performance decisions. Returns a concise recommendation, a brief why, and short how-to steps.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| question | Yes | The decision or problem to answer | 
Input Schema (JSON Schema)
{
  "properties": {
    "question": {
      "description": "The decision or problem to answer",
      "type": "string"
    }
  },
  "required": [
    "question"
  ],
  "type": "object"
}