deploy
This commit is contained in:
57
skills/packages/SKILL.md
Normal file
57
skills/packages/SKILL.md
Normal file
@@ -0,0 +1,57 @@
|
||||
---
|
||||
name: packages-routes
|
||||
description: Handle 5 OpenAPI operation(s) under /v1/packages for the packages route group.
|
||||
---
|
||||
|
||||
# packages API Routes
|
||||
|
||||
Handle 5 OpenAPI operation(s) under /v1/packages for the packages 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
|
||||
|
||||
### list_package_types
|
||||
|
||||
- Operation ID: `list_package_types`
|
||||
- Route: `GET /v1/packages`
|
||||
- Mode: READ
|
||||
- Summary: List Custom Package Types
|
||||
|
||||
### create_package_type
|
||||
|
||||
- Operation ID: `create_package_type`
|
||||
- Route: `POST /v1/packages`
|
||||
- Mode: WRITE
|
||||
- Summary: Create Custom Package Type
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_package_type_by_id
|
||||
|
||||
- Operation ID: `get_package_type_by_id`
|
||||
- Route: `GET /v1/packages/{package_id}`
|
||||
- Mode: READ
|
||||
- Summary: Get Custom Package Type By ID
|
||||
- Parameters:
|
||||
- `package_id` in `path` required
|
||||
|
||||
### update_package_type
|
||||
|
||||
- Operation ID: `update_package_type`
|
||||
- Route: `PUT /v1/packages/{package_id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update Custom Package Type By ID
|
||||
- Parameters:
|
||||
- `package_id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_package_type
|
||||
|
||||
- Operation ID: `delete_package_type`
|
||||
- Route: `DELETE /v1/packages/{package_id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete A Custom Package By ID
|
||||
- Parameters:
|
||||
- `package_id` in `path` required
|
||||
Reference in New Issue
Block a user