analyze_docs
Analyze documentation for tasks like gap identification, outline generation, or consistency checking. Supports custom document lists and outputs results in summary, detailed, or structured formats for efficient agent handoffs.
Instructions
Analyze documentation for specific tasks (foundation for agent handoffs)
Args:
task: Analysis task (e.g., "find_gaps", "generate_outline", "check_consistency")
docs: Optional list of specific documents to analyze
output_format: Output format (summary, detailed, structured)
Returns:
Analysis results ready for agent handoff
Input Schema
Name | Required | Description | Default |
---|---|---|---|
docs | No | ||
output_format | No | summary | |
task | Yes |
Input Schema (JSON Schema)
{
"properties": {
"docs": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Docs"
},
"output_format": {
"default": "summary",
"title": "Output Format",
"type": "string"
},
"task": {
"title": "Task",
"type": "string"
}
},
"required": [
"task"
],
"title": "analyze_docsArguments",
"type": "object"
}