Json2csv

v1.0.0

Converts JSON files to CSV by flattening nested objects and arrays for easy use in spreadsheets and data analysis.

0· 75·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for albionaiinc-del/json2csv.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Json2csv" (albionaiinc-del/json2csv) from ClawHub.
Skill page: https://clawhub.ai/albionaiinc-del/json2csv
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install json2csv

ClawHub CLI

Package manager switcher

npx clawhub@latest install json2csv
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk97d9n0saq52kha5d12hs9ea6s84t1kj
75downloads
0stars
1versions
Updated 1w ago
v1.0.0
MIT-0

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

Comments

Loading comments...