# Remarshal

> Use this skill when the user wants to convert between data formats like TOML, YAML, JSON, CBOR, and MessagePack

- Skill: `javimosch/remarshal` (Agent Skill)
- Install (CLI): `npx skillmds@latest add javimosch/remarshal`
- Raw SKILL.md: https://api.skillmd.com/api/skills/javimosch/remarshal/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: javimosch (https://skillmd.com/u/javimosch)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/javimosch/remarshal

---


# Remarshal Plugin

convert between data formats like TOML, YAML, JSON, CBOR, and MessagePack

## Commands
- `remarshal self version` — Print remarshal version
- `remarshal _ _` — Passthrough to remarshal CLI

## Usage Examples
- "Convert this TOML to YAML"
- "Transform JSON to TOML"
- "Convert between any supported formats"

## Installation

```bash
pip install remarshal
```

## Examples
```bash
remarshal --from toml --to yaml config.toml > config.yaml
remarshal --from json --to toml data.json > data.toml
cat data.yaml | remarshal --from yaml --to json
```

## Key Features
- Multi-format support
- Lossless conversion
- Pretty-print options
- Stdin/stdout piping

