agentsclimarketplace

Clean

Skill 8ddieHu0314/Skill-Lab/tests/fixtures/skills/security/clean

Use when you need to convert a CSV file to JSON format.From its SKILL.md

Install
npx -y skills add 8ddieHu0314/Skill-Lab --skill clean

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

SKILL.md

0.5 KB, 99 tokens by cl100k_base, as published. Nobody here has run it

CSV to JSON Converter

Read the input CSV file and convert it to a JSON array of objects.

import csv, json, sys

with open(sys.argv[1]) as f:
    rows = list(csv.DictReader(f))

print(json.dumps(rows, indent=2))

Pass the path to your CSV as the first argument. Each row becomes a JSON object with the header row as keys. Output goes to stdout so you can pipe or redirect it.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.