ask-coding-advisors
Get coding assistance by querying three AI specialists simultaneously for multiple expert opinions on programming questions, with automatic fallback to premium models when needed.
Instructions
Queries three OpenRouter coding specialists (free tier) and falls back to premium models when rate limited.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| question | Yes | ||
| context | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"maxLength": 12000,
"type": "string"
},
"question": {
"maxLength": 4000,
"minLength": 4,
"type": "string"
}
},
"required": [
"question"
],
"type": "object"
}