一键导入
data-processor
Transform, filter, and analyse data using sandbox handlers
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Transform, filter, and analyse data using sandbox handlers
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Discover, test, and document public REST/GraphQL/JSON APIs — explore endpoints, inspect responses, and build integration guides
KQL language expertise for writing correct, efficient Kusto queries using Fabric RTI MCP tools
Connect and use external MCP servers (M365, GitHub, custom services)
Expert at building professional PDF documents using Hyperlight sandbox modules
Generate documents, reports, and formatted output files
Multi-source web research synthesised into structured reports or presentations
| name | data-processor |
| description | Transform, filter, and analyse data using sandbox handlers |
| triggers | ["CSV","JSON","TSV","CSV to JSON","JSON to CSV","data pipeline","ETL","tabular data","parse CSV","parse JSON","transform CSV","transform JSON"] |
| patterns | ["data-transformation","two-handler-pipeline"] |
| antiPatterns | ["Don't load entire datasets into handler source code — pass via event parameter","Don't process everything in one giant handler call — chunk large datasets","Don't use string manipulation for structured data — parse properly first"] |
| allowed-tools | ["register_handler","execute_javascript","execute_bash","delete_handler","get_handler_source","edit_handler","list_handlers","reset_sandbox","list_modules","module_info","list_plugins","plugin_info","manage_plugin","list_mcp_servers","mcp_server_info","manage_mcp","apply_profile","configure_sandbox","sandbox_help","register_module","write_output","read_input","read_output","ask_user"] |
Use the event dispatch pattern for multi-step processing:
register_handler('processor', `
export function handler(event) {
if (event.action === 'load') { /* parse and store */ }
if (event.action === 'transform') { /* filter/map/reduce */ }
if (event.action === 'export') { /* format output */ }
}
`)
For large datasets:
For file I/O:
Available modules: