get_recommendations
Analyze Zig code and receive tailored recommendations for improvements and best practices based on your specific requirements or queries.
Instructions
Get code improvement recommendations and best practices
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | Zig code to analyze | |
| prompt | No | Natural language query for specific recommendations |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "Zig code to analyze",
"type": "string"
},
"prompt": {
"description": "Natural language query for specific recommendations",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}