analyze-files
Process and evaluate file content for syntax analysis and dependency mapping, enabling enhanced code understanding and workflow optimization in development projects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
files | Yes | Files to analyze |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"files": {
"description": "Files to analyze",
"items": {
"additionalProperties": false,
"properties": {
"content": {
"description": "Content of the file",
"type": "string"
},
"path": {
"description": "Path to the file",
"type": "string"
}
},
"required": [
"path",
"content"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"files"
],
"type": "object"
}