teoat
deploy: sync from main Sun Jan 11 18:43:53 WIT 2026
4a2ab42
{
"name": "architecture_analyzer",
"version": "1.0.0",
"namespace": "378x492/development/architecture_analyzer",
"author": "378x492 Team",
"description": "Code architecture quality analysis and technical debt assessment",
"capabilities": [
"code_analysis",
"architecture_review",
"technical_debt",
"ci_cd_integration"
],
"security_level": "official",
"api_version": "v1",
"dependencies": [],
"config_schema": {
"type": "object",
"properties": {
"codebase_path": {
"type": "string",
"default": "."
},
"analysis_depth": {
"type": "string",
"enum": [
"basic",
"detailed",
"comprehensive"
],
"default": "detailed"
},
"include_metrics": {
"type": "array",
"items": {
"type": "string",
"enum": [
"cyclomatic_complexity",
"maintainability_index",
"coupling",
"cohesion"
]
},
"default": [
"cyclomatic_complexity",
"maintainability_index"
]
}
}
}
}