بنقرة واحدة
clean
Use when you need to convert a CSV file to JSON format.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when you need to convert a CSV file to JSON format.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Creates detailed reports from data when the user asks for report generation or data summaries.
Use when you need to test a skill that produces a security warning (not block).
Tests various features in applications to ensure quality. Use when testing is needed.
Use when you need to test a skill with allowed-tools as a YAML list.
[this is broken yaml
Use when you need to test a skill with non-string values in the metadata map.
| name | clean |
| description | Use when you need to convert a CSV file to JSON format. |
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.