deploy
This commit is contained in:
54
skills/radar/SKILL.md
Normal file
54
skills/radar/SKILL.md
Normal file
@@ -0,0 +1,54 @@
|
||||
---
|
||||
name: radar-routes
|
||||
description: Handle 4 OpenAPI operation(s) under /radar for the radar route group.
|
||||
---
|
||||
|
||||
# radar API Routes
|
||||
|
||||
Handle 4 OpenAPI operation(s) under /radar for the radar 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
|
||||
|
||||
### radar_standalone_controller_assess
|
||||
|
||||
- Operation ID: `radar_standalone_controller_assess`
|
||||
- Route: `POST /radar/attempts`
|
||||
- Mode: WRITE
|
||||
- Summary: Create an attempt
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### radar_standalone_controller_update_radar_attempt
|
||||
|
||||
- Operation ID: `radar_standalone_controller_update_radar_attempt`
|
||||
- Route: `PUT /radar/attempts/{id}`
|
||||
- Mode: WRITE
|
||||
- Summary: Update a Radar attempt
|
||||
- Parameters:
|
||||
- `id` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### radar_standalone_controller_update_radar_list
|
||||
|
||||
- Operation ID: `radar_standalone_controller_update_radar_list`
|
||||
- Route: `POST /radar/lists/{type}/{action}`
|
||||
- Mode: WRITE
|
||||
- Summary: Add an entry to a Radar list
|
||||
- Parameters:
|
||||
- `type` in `path` required
|
||||
- `action` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### radar_standalone_controller_delete_radar_list_entry
|
||||
|
||||
- Operation ID: `radar_standalone_controller_delete_radar_list_entry`
|
||||
- Route: `DELETE /radar/lists/{type}/{action}`
|
||||
- Mode: WRITE
|
||||
- Summary: Remove an entry from a Radar list
|
||||
- Parameters:
|
||||
- `type` in `path` required
|
||||
- `action` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
Reference in New Issue
Block a user