analyze_document_quality
Assess document quality using AI insights to identify issues like duplication, relevance, and completeness. Input a document path to generate targeted analysis.
Instructions
Perform comprehensive quality analysis on documentation with AI insights
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisTypes | No | Types of analysis to perform | |
documentPath | Yes | Path to the document to analyze | |
includeAI | No | Include AI-powered analysis |
Input Schema (JSON Schema)
{
"properties": {
"analysisTypes": {
"default": [
"quality"
],
"description": "Types of analysis to perform",
"items": {
"enum": [
"quality",
"duplicate",
"relevance",
"completeness"
],
"type": "string"
},
"type": "array"
},
"documentPath": {
"description": "Path to the document to analyze",
"type": "string"
},
"includeAI": {
"default": true,
"description": "Include AI-powered analysis",
"type": "boolean"
}
},
"required": [
"documentPath"
],
"type": "object"
}