json-data-handling

Installation
SKILL.md

JSON Data Handling

Working effectively with JSON data structures.

Python

Basic Operations

import json

# Parse JSON string
data = json.loads('{"name": "John", "age": 30}')

# Convert to JSON string
json_str = json.dumps(data)

# Pretty print
json_str = json.dumps(data, indent=2)
Installs
196
GitHub Stars
52
First Seen
Jan 23, 2026
json-data-handling — bobmatnyc/claude-mpm-skills