superdesign_check_files
Verify file changes by comparing current files to a manifest for gallery refresh integration. Input workspace path and manifest to detect modifications.
Instructions
Check for file changes by comparing current files with a manifest (for gallery refresh integration)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
manifest | Yes | File manifest to compare against | |
workspace_path | No | Workspace path (defaults to current directory) |
Input Schema (JSON Schema)
{
"properties": {
"manifest": {
"description": "File manifest to compare against",
"items": {
"properties": {
"modified": {
"type": "number"
},
"name": {
"type": "string"
},
"size": {
"type": "number"
}
},
"required": [
"name",
"size",
"modified"
],
"type": "object"
},
"type": "array"
},
"workspace_path": {
"description": "Workspace path (defaults to current directory)",
"type": "string"
}
},
"required": [
"manifest"
],
"type": "object"
}