← Back to Skills Marketplace
albionaiinc-del

Json2csv

by albionaiinc-del · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
80
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install json2csv
Description
Converts JSON files to CSV by flattening nested objects and arrays for easy use in spreadsheets and data analysis.
README (SKILL.md)

JSON to CSV Converter

Converts JSON files to CSV format with intelligent flattening of nested objects and arrays, making data usable in spreadsheets and analytics platforms.

Usage

# Convert a JSON file to CSV
python json2csv.py data.json output.csv

# Example input (data.json):
# [
#   {"name": "Alice", "info": {"age": 30, "tags": ["engineer", "admin"]}},
#   {"name": "Bob", "info": {"age": 25, "tags": ["analyst", "user"]}}
# ]

# Output (output.csv):
# info.age,info.tags.0,info.tags.1,name
# 30,engineer,admin,Alice
# 25,analyst,user,Bob

Price

$2.00

Usage Guidance
This skill appears to be what it says: a simple local JSON→CSV converter. Before installing or running it: (1) note the SKILL.md example references json2csv.py but the provided script is tool.py—run with python tool.py or rename if you prefer; (2) run it on non-sensitive data or in a sandbox first if you distrust the unknown source; (3) review or open the script to confirm it only reads/writes the files you expect (it does not perform network calls or access secrets); and (4) be careful not to overwrite important files when specifying the output path.
Capability Analysis
Type: OpenClaw Skill Name: json2csv Version: 1.0.0 The skill bundle is a straightforward utility for converting JSON files to CSV format. The Python script (tool.py) uses standard libraries to flatten nested data structures and perform file I/O operations consistent with its stated purpose, with no evidence of network activity, shell execution, or data exfiltration.
Capability Assessment
Purpose & Capability
The skill's stated purpose (flatten JSON to CSV) matches the provided tool.py implementation which reads a local JSON file, flattens records, and writes CSV. Minor documentation mismatch: SKILL.md examples call python json2csv.py while the repository contains tool.py (filename mismatch could cause confusion but is not a security risk).
Instruction Scope
Runtime instructions only ask to run the converter on local files and show example input/output. The implementation only reads the specified input path and writes the specified output path; it does not access other files, environment variables, or network endpoints.
Install Mechanism
No install spec is provided and the skill is instruction/code-only. Nothing is downloaded or written to disk by an installer step beyond running the provided script.
Credentials
No environment variables, credentials, or config paths are required or accessed. The code does not read os.environ or any secret stores.
Persistence & Privilege
The skill is not forced-always, does not request persistent system privileges, and does not modify other skills or system-wide agent settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install json2csv
  3. After installation, invoke the skill by name or use /json2csv
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of JSON to CSV Converter. - Converts JSON files to CSV format with support for flattening nested objects and arrays. - Designed for easy import of data into spreadsheets and analytics tools. - Simple command-line usage for fast conversions. - Example input and output provided for clarity. - Priced at $2.00.
Metadata
Slug json2csv
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Json2csv?

Converts JSON files to CSV by flattening nested objects and arrays for easy use in spreadsheets and data analysis. It is an AI Agent Skill for Claude Code / OpenClaw, with 80 downloads so far.

How do I install Json2csv?

Run "/install json2csv" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Json2csv free?

Yes, Json2csv is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Json2csv support?

Json2csv is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Json2csv?

It is built and maintained by albionaiinc-del (@albionaiinc-del); the current version is v1.0.0.

💬 Comments