manage_state
Control UCPF processing states by enabling, disabling, resetting, or checking status using a session-specific context for targeted cognitive operations.
Instructions
Control the state management for UCPF processing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The state management action to perform | |
session_id | No | Optional session ID to target a specific session |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "The state management action to perform",
"enum": [
"enable",
"disable",
"reset",
"status"
],
"type": "string"
},
"session_id": {
"description": "Optional session ID to target a specific session",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}