initialize_documentation_system
Sets up project documentation automation by initializing system features, including AI-powered analysis, in the specified project directory. Integrates with CastPlan MCP for context-aware assistance.
Instructions
Initialize the enhanced documentation automation system for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enableAI | No | Enable AI-powered analysis features | |
locale | No | Locale for internationalization (optional - auto-detected if not provided) | |
projectRoot | Yes | Root directory of the project | |
timeZone | No | Timezone for date/time operations (optional - auto-detected if not provided) |
Input Schema (JSON Schema)
{
"properties": {
"enableAI": {
"default": true,
"description": "Enable AI-powered analysis features",
"type": "boolean"
},
"locale": {
"description": "Locale for internationalization (optional - auto-detected if not provided)",
"type": "string"
},
"projectRoot": {
"description": "Root directory of the project",
"type": "string"
},
"timeZone": {
"description": "Timezone for date/time operations (optional - auto-detected if not provided)",
"type": "string"
}
},
"required": [
"projectRoot"
],
"type": "object"
}