بنقرة واحدة
data-transformer
Transform data between CSV and JSON formats with filtering and column selection
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Transform data between CSV and JSON formats with filtering and column selection
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
A tool that echoes its input for testing
Generates ASCII art from a given text
Roll dice with configurable sides and count - a simple Rust example tool
LLM guide for creating, publishing, and running Enact tools
Scrape, crawl, search, and extract structured data from websites using Firecrawl API - converts web pages to LLM-ready markdown
A simple Go greeting tool
| name | data-transformer |
| description | Transform data between CSV and JSON formats with filtering and column selection |
A TypeScript-based tool that transforms data between CSV and JSON formats with advanced filtering and column selection capabilities.
enact run enact/data/transformer -a '{
"input": "name,age,city\nAlice,30,NYC\nBob,25,LA",
"input_format": "csv",
"output_format": "json"
}'
enact run enact/data/transformer -a '{
"input": "[{\"name\":\"Alice\",\"age\":30},{\"name\":\"Bob\",\"age\":25}]",
"input_format": "json",
"output_format": "csv"
}'
enact run enact/data/transformer -a '{
"input": "[{\"name\":\"Alice\",\"age\":30,\"city\":\"NYC\"},{\"name\":\"Bob\",\"age\":25,\"city\":\"LA\"}]",
"input_format": "json",
"output_format": "json",
"filter_column": "city",
"filter_value": "NYC"
}'
enact run enact/data/transformer -a '{
"input": "[{\"name\":\"Alice\",\"age\":30,\"city\":\"NYC\"}]",
"input_format": "json",
"output_format": "json",
"select_columns": "name,age"
}'
Success response:
{
"status": "success",
"data": "<transformed data>",
"rowCount": 2,
"columnCount": 3,
"columns": ["name", "age", "city"]
}
Error response:
{
"status": "error",
"error": "Error message describing what went wrong"
}