ReadDocumentsTask
Deeply analyze project files and provide comprehensive technical insights or answers to specific questions using LLM-driven context extraction.
Side-Effect Safe
Interactive Discussion
Multi-Format Support
⚙️ ExecutionConfig.json
{
"inquiry_goal": "Analyze the error handling strategy",
"input_files": ["src/**/*.kt"],
"inquiry_questions": [
"How are network timeouts handled?"
]
}
→
👁️ Session UI (Analysis Tab)
Analysis: Error Handling
Based on src/network/Client.kt, timeouts are managed via a custom RetryPolicy.
Exceptions are caught at the repository level and mapped to DomainResult objects...
# Files Read: 12 files matched glob pattern.
Live Results Showcase
Explore actual analysis artifacts and file context generated by this task.
Runtime Configuration
| Field | Type | Description |
|---|---|---|
inquiry_goal |
String | The high-level purpose of the analysis. * |
inquiry_questions |
List<String> | Specific questions to be addressed. * |
input_files |
List<String> | Glob patterns (e.g., **/*.kt) to include as context. |
task_description |
String | A natural language description of the analysis task. |
task_dependencies |
List<String> | IDs of tasks that must complete before this analysis runs. |
* Either inquiry_goal or inquiry_questions must be provided.