search_skills
Search for skills using SQL-like queries to match specific criteria and retrieve targeted results, with support for specifying the number of outputs (up to 100).
Instructions
Search for skills matching specific criteria
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | SQL-like query to search for skills | |
| size | No | Number of results to return (max 100) |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "SQL-like query to search for skills",
"type": "string"
},
"size": {
"description": "Number of results to return (max 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}