Find and call Tessl API endpoints token-efficiently. Fires whenever an agent needs a Tessl REST API endpoint — to discover which endpoint does something, learn its path/parameters/request-body/response shape, or actually call it via `tessl api`. Searches and renders just the one endpoint you need instead of loading the whole openapi.json into context.
87
94%
Does it follow best practices?
Impact
94%
1.91xAverage score across 2 eval scenarios
Advisory
Suggest reviewing before use
Find and call Tessl API endpoints token-efficiently, without loading the whole openapi.json spec into context.
tessl install tessl/apiThe Tessl OpenAPI spec is deeply nested JSON:API schemas with repeated unions and byte-identical error envelopes — loading it whole wastes context. This plugin's helper script searches the spec and renders just the endpoint you need, suppressing the noise.
Fires whenever an agent needs a Tessl REST API endpoint — to discover which endpoint does something, learn its path, parameters, request-body, or response shape, or actually call it via tessl api. Reach for it instead of reading the raw openapi.json.
anyOf unions collapsed and a ready-to-run tessl api invocation line.The helper is stdlib-only Python 3 (no installs) and caches the fetched spec for 5 minutes.
| Skill | Description |
|---|---|
api | Search and render single Tessl API endpoints from the OpenAPI spec, then call them via tessl api |