deploy
This commit is contained in:
67
skills/captchas/SKILL.md
Normal file
67
skills/captchas/SKILL.md
Normal file
@@ -0,0 +1,67 @@
|
||||
---
|
||||
name: captchas-routes
|
||||
description: Handle 6 OpenAPI operation(s) under /api/v1/captchas for the captchas route group.
|
||||
---
|
||||
|
||||
# captchas API Routes
|
||||
|
||||
Handle 6 OpenAPI operation(s) under /api/v1/captchas for the captchas 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_captcha_instances
|
||||
|
||||
- Operation ID: `list_captcha_instances`
|
||||
- Route: `GET /api/v1/captchas`
|
||||
- Mode: READ
|
||||
- Summary: List all CAPTCHA instances
|
||||
|
||||
### create_captcha_instance
|
||||
|
||||
- Operation ID: `create_captcha_instance`
|
||||
- Route: `POST /api/v1/captchas`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a CAPTCHA instance
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_captcha_instance
|
||||
|
||||
- Operation ID: `get_captcha_instance`
|
||||
- Route: `GET /api/v1/captchas/{captchaId}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a CAPTCHA instance
|
||||
- Parameters:
|
||||
- `captchaId` in `path` required
|
||||
|
||||
### update_captcha_instance
|
||||
|
||||
- Operation ID: `update_captcha_instance`
|
||||
- Route: `POST /api/v1/captchas/{captchaId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update a CAPTCHA instance
|
||||
- Parameters:
|
||||
- `captchaId` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### replace_captcha_instance
|
||||
|
||||
- Operation ID: `replace_captcha_instance`
|
||||
- Route: `PUT /api/v1/captchas/{captchaId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Replace a CAPTCHA instance
|
||||
- Parameters:
|
||||
- `captchaId` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_captcha_instance
|
||||
|
||||
- Operation ID: `delete_captcha_instance`
|
||||
- Route: `DELETE /api/v1/captchas/{captchaId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete a CAPTCHA instance
|
||||
- Parameters:
|
||||
- `captchaId` in `path` required
|
||||
Reference in New Issue
Block a user