| { | |
| "plugin_id": "data", | |
| "name": "Data Analytics", | |
| "version": "1.0.0", | |
| "description": "Data analysis, SQL generation, visualization, and dashboard creation", | |
| "author": "ZYVA Team", | |
| "runtime": "python", | |
| "entrypoint": "python main.py", | |
| "enabled": true, | |
| "category": "general", | |
| "tools": [ | |
| { | |
| "name": "write_query", | |
| "description": "Generate a SQL query from a natural-language question", | |
| "risk": "low", | |
| "side_effect": false, | |
| "requires": [], | |
| "input_schema": { | |
| "type": "object", | |
| "properties": { | |
| "question": { | |
| "type": "string" | |
| }, | |
| "schema": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "question", | |
| "schema" | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "analyze_dataset", | |
| "description": "Run summary statistics on a dataset path", | |
| "risk": "low", | |
| "side_effect": false, | |
| "requires": [], | |
| "input_schema": { | |
| "type": "object", | |
| "properties": { | |
| "path": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "path" | |
| ] | |
| } | |
| } | |
| ] | |
| } |