send_thought
Send a thought for background cognitive processing within Claude's contemplation loop. Specify thought type (pattern, connection, question, general) and content to enable pattern recognition and insight development between conversations.
Instructions
Send a thought for background processing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | The thought content to process | |
priority | No | Priority 1-10 (default 5) | |
thought_type | Yes | Type of thought to process |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "The thought content to process",
"type": "string"
},
"priority": {
"description": "Priority 1-10 (default 5)",
"maximum": 10,
"minimum": 1,
"type": "number"
},
"thought_type": {
"description": "Type of thought to process",
"enum": [
"pattern",
"connection",
"question",
"general"
],
"type": "string"
}
},
"required": [
"thought_type",
"content"
],
"type": "object"
}