deploy
This commit is contained in:
46
skills/collections/SKILL.md
Normal file
46
skills/collections/SKILL.md
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
name: collections-routes
|
||||
description: Handle 3 OpenAPI operation(s) under /collections for the collections route group.
|
||||
---
|
||||
|
||||
# collections API Routes
|
||||
|
||||
Handle 3 OpenAPI operation(s) under /collections for the collections route group.
|
||||
|
||||
Use the generated operation tools to make real API calls. Do not invent API responses.
|
||||
If a tool reports missing setup, return the exact setup field name to the caller.
|
||||
For write, update, or delete operations, state the intended action before calling the tool.
|
||||
|
||||
## Operations
|
||||
|
||||
### get_collections
|
||||
|
||||
- Operation ID: `get_collections`
|
||||
- Route: `GET /collections`
|
||||
- Mode: READ
|
||||
- Summary: List all collections
|
||||
- Parameters:
|
||||
- `fields` in `query`
|
||||
- `offset` in `query`
|
||||
- `limit` in `query`
|
||||
|
||||
### get_collections_id_items
|
||||
|
||||
- Operation ID: `get_collections_id_items`
|
||||
- Route: `GET /collections/{collection_id}/items`
|
||||
- Mode: READ
|
||||
- Summary: List collection items
|
||||
- Parameters:
|
||||
- `collection_id` in `path` required
|
||||
- `fields` in `query`
|
||||
- `offset` in `query`
|
||||
- `limit` in `query`
|
||||
|
||||
### get_collections_id
|
||||
|
||||
- Operation ID: `get_collections_id`
|
||||
- Route: `GET /collections/{collection_id}`
|
||||
- Mode: READ
|
||||
- Summary: Get collection by ID
|
||||
- Parameters:
|
||||
- `collection_id` in `path` required
|
||||
Reference in New Issue
Block a user