deploy
This commit is contained in:
75
skills/behaviors/SKILL.md
Normal file
75
skills/behaviors/SKILL.md
Normal file
@@ -0,0 +1,75 @@
|
||||
---
|
||||
name: behaviors-routes
|
||||
description: Handle 7 OpenAPI operation(s) under /api/v1/behaviors for the behaviors route group.
|
||||
---
|
||||
|
||||
# behaviors API Routes
|
||||
|
||||
Handle 7 OpenAPI operation(s) under /api/v1/behaviors for the behaviors 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_behavior_detection_rules
|
||||
|
||||
- Operation ID: `list_behavior_detection_rules`
|
||||
- Route: `GET /api/v1/behaviors`
|
||||
- Mode: READ
|
||||
- Summary: List all behavior detection rules
|
||||
|
||||
### create_behavior_detection_rule
|
||||
|
||||
- Operation ID: `create_behavior_detection_rule`
|
||||
- Route: `POST /api/v1/behaviors`
|
||||
- Mode: WRITE
|
||||
- Summary: Create a behavior detection rule
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### get_behavior_detection_rule
|
||||
|
||||
- Operation ID: `get_behavior_detection_rule`
|
||||
- Route: `GET /api/v1/behaviors/{behaviorId}`
|
||||
- Mode: READ
|
||||
- Summary: Retrieve a behavior detection rule
|
||||
- Parameters:
|
||||
- `behaviorId` in `path` required
|
||||
|
||||
### replace_behavior_detection_rule
|
||||
|
||||
- Operation ID: `replace_behavior_detection_rule`
|
||||
- Route: `PUT /api/v1/behaviors/{behaviorId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Replace a behavior detection rule
|
||||
- Parameters:
|
||||
- `behaviorId` in `path` required
|
||||
- Body: JSON request body accepted.
|
||||
|
||||
### delete_behavior_detection_rule
|
||||
|
||||
- Operation ID: `delete_behavior_detection_rule`
|
||||
- Route: `DELETE /api/v1/behaviors/{behaviorId}`
|
||||
- Mode: WRITE
|
||||
- Summary: Delete a behavior detection rule
|
||||
- Parameters:
|
||||
- `behaviorId` in `path` required
|
||||
|
||||
### activate_behavior_detection_rule
|
||||
|
||||
- Operation ID: `activate_behavior_detection_rule`
|
||||
- Route: `POST /api/v1/behaviors/{behaviorId}/lifecycle/activate`
|
||||
- Mode: WRITE
|
||||
- Summary: Activate a behavior detection rule
|
||||
- Parameters:
|
||||
- `behaviorId` in `path` required
|
||||
|
||||
### deactivate_behavior_detection_rule
|
||||
|
||||
- Operation ID: `deactivate_behavior_detection_rule`
|
||||
- Route: `POST /api/v1/behaviors/{behaviorId}/lifecycle/deactivate`
|
||||
- Mode: WRITE
|
||||
- Summary: Deactivate a behavior detection rule
|
||||
- Parameters:
|
||||
- `behaviorId` in `path` required
|
||||
Reference in New Issue
Block a user