process_thoughts
Analyzes brain dump markdown files to extract actionable tasks, identify logical groupings, and determine priorities based on project context for structured task management.
Instructions
Reads brain dump markdown files from .project/thoughts/todos/ and returns the content along with project context for analysis.
This tool gathers:
Raw thought content - The unstructured brain dump as written
Project context - Existing tasks, roadmap milestones, decisions for reference
Task format guide - The YAML structure for creating tasks
YOU (the LLM) should then analyze the content to:
Understand the user's intent (explicit, shadow/underlying, practical)
Identify logical task groupings (consolidate related items)
Determine appropriate priorities based on context
Create well-structured tasks using create_task
After creating tasks, use archive_thought to archive the processed file
The tool does NOT automatically create tasks - it provides you with everything needed to make intelligent decisions about task creation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | Specific thought file to process (e.g., "my-ideas.md"). If not provided, processes all files in thoughts/todos/. | |
| project | Yes | Project prefix for task IDs when you create tasks (e.g., "AUTH", "API"). |