Use this skill when the user wants to create JSON output from the command line, format data as JSON, build API payloads, or serialize shell variables into JSON structures.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-9a7f643a)More formats (shields.io, HTML) on the badges page.
---
name: jo
description: Use this skill when the user wants to create JSON output from the command line, format data as JSON, build API payloads, or serialize shell variables into JSON structures.
---
# Jo Plugin
JSON output from a shell — create JSON objects, arrays, and nested structures from key=value pairs.
## Commands
### Self
- `jo self version` — Print version
### JSON
- `jo json create` — Create JSON from key=value pairs (passthrough)
### Passthrough
- `jo _ _` — Passthrough for any jo command
## Usage Examples
- "Create a JSON object with name and age"
- "Build a JSON array from a list of values"
- "Convert shell variables to JSON format"
- "Create a nested JSON structure for an API request"
## Installation
```bash
brew install jo
```
## Examples
```bash
# Simple object
jo name=John age=30 active=true
# Nested objects
jo name=John address="city=New York zip=10001"
# Arrays
jo -a name=John name=Jane
# Reading from stdin
echo 'name=Doe' | jo
# Boolean and numbers
jo enabled=true count=42 ratio=3.14
# Empty value (null)
jo name=John title=
# Combine with jq for complex pipelines
jo name=John items="$(jo -a apple banana)" | jq '.items'
```
## Key Features
- Simple key=value syntax for JSON creation
- Automatic type detection (strings, numbers, booleans)
- Nested objects and arrays
- stdin input support
- Pretty-print option
- Array forcing with -a flag
- Null value support via empty values
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!