verify_feature
Check if a specific feature is implemented in your codebase by analyzing paths and querying details. Validate functionality with optional timeout and output size controls.
Instructions
Verify if a feature is implemented in the codebase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
featureQuestion | Yes | Question about the feature to verify | |
maxOutputKB | No | Maximum output size in KB (optional) | |
paths | No | Optional specific paths to check | |
timeout | No | Timeout in seconds (optional) |
Input Schema (JSON Schema)
{
"properties": {
"featureQuestion": {
"description": "Question about the feature to verify",
"type": "string"
},
"maxOutputKB": {
"default": 1024,
"description": "Maximum output size in KB (optional)",
"type": "number"
},
"paths": {
"description": "Optional specific paths to check",
"items": {
"type": "string"
},
"type": "array"
},
"timeout": {
"default": 300,
"description": "Timeout in seconds (optional)",
"type": "number"
}
},
"required": [
"featureQuestion"
],
"type": "object"
}