install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/aronchick/expanso-csv-to-json" ~/.openclaw/skills/openclaw-skills-expanso-csv-to-json-f26622 && rm -rf "$T"
manifest:
skills/aronchick/expanso-csv-to-json/skill.yamlsource content
Skill: csv-to-json
Version: 1.0.0
Convert CSV data to JSON.
Runs locally without API calls.
name: "csv-to-json" version: "1.0.0" description: "Convert CSV data to JSON array of objects"
author: name: "Expanso Team" url: "https://expanso.io" avatar: "EX"
credentials: []
inputs:
- name: csv type: string required: true description: CSV data with header row
- name: delimiter type: string default: "," description: Field delimiter
outputs:
- name: data type: array description: Array of JSON objects
- name: row_count type: integer description: Number of data rows
- name: columns type: array description: Column names from header
backends:
- name: local type: local requires: [] description: Pure local conversion
components: inputs: - stdin - http_server processors: - mapping outputs: - stdout - sync_response