analyze_problem
Analyze and process problem statements using the UCPF framework to enable structured cognitive analysis, knowledge mapping, and perspective generation for advanced problem-solving.
Instructions
Process a problem statement through the full UCPF framework
Input Schema
Name | Required | Description | Default |
---|---|---|---|
detailed | No | Whether to include detailed analysis | |
enable_state | No | Whether to enable state management for this analysis | |
problem | Yes | The problem statement to analyze | |
session_id | No | Optional session ID for maintaining state between calls |
Input Schema (JSON Schema)
{
"properties": {
"detailed": {
"default": false,
"description": "Whether to include detailed analysis",
"type": "boolean"
},
"enable_state": {
"default": false,
"description": "Whether to enable state management for this analysis",
"type": "boolean"
},
"problem": {
"description": "The problem statement to analyze",
"type": "string"
},
"session_id": {
"description": "Optional session ID for maintaining state between calls",
"type": "string"
}
},
"required": [
"problem"
],
"type": "object"
}