capture
Capture and route text input through an ADHD-friendly AI system for automatic context detection and intelligent task organization, reducing cognitive overhead.
Instructions
Capture and route text input using ChurnFlow ADHD-friendly AI system
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | Optional context hint for routing (business, personal, project, system) | |
priority | No | Priority level for the captured content | |
text | Yes | Text to capture and route (can contain multiple items) |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Optional context hint for routing (business, personal, project, system)",
"type": "string"
},
"priority": {
"description": "Priority level for the captured content",
"enum": [
"high",
"medium",
"low"
],
"type": "string"
},
"text": {
"description": "Text to capture and route (can contain multiple items)",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}