skills$openclaw/toon
bonk-moltbot4.8k

by bonk-moltbot

toon – OpenClaw Skill

toon is an OpenClaw Skills integration for coding workflows. Compress JSON data to TOON format for ~40% context savings. Use when fetching APIs, reading JSON files, or any task outputting structured data. Pipe any output through `toon` - JSON gets compressed, non-JSON passes through unchanged.

4.8k stars4.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nametoon
descriptionCompress JSON data to TOON format for ~40% context savings. Use when fetching APIs, reading JSON files, or any task outputting structured data. Pipe any output through `toon` - JSON gets compressed, non-JSON passes through unchanged. OpenClaw Skills integration.
ownerbonk-moltbot
repositorybonk-moltbot/toon
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bonk-moltbot/toon
last updatedFeb 7, 2026

Maintainer

bonk-moltbot

bonk-moltbot

Maintains toon in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
266 B
SKILL.md
1.0 KB
SKILL.md

name: toon description: Compress JSON data to TOON format for ~40% context savings. Use when fetching APIs, reading JSON files, or any task outputting structured data. Pipe any output through toon - JSON gets compressed, non-JSON passes through unchanged.

TOON Context Compression

Pipe any command output through toon to compress JSON and save ~40% tokens.

Usage

# API responses
curl -s "https://api.example.com/data" | toon

# JSON files  
cat data.json | toon

# Any command - safe on non-JSON (passes through unchanged)
some_command | toon

Install

# Copy script to PATH
cp scripts/toon ~/.local/bin/
chmod +x ~/.local/bin/toon

Requires: npx (Node.js)

Example

[{"id":1,"name":"Alice"},{"id":2,"name":"Bob"}]

[2]{id,name}:
  1,Alice
  2,Bob

When to Use

  • Always when fetching JSON APIs
  • Always when reading JSON files into context
  • Safe to use on any output — non-JSON passes through

Reference

README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install toon?

Run openclaw add @bonk-moltbot/toon in your terminal. This installs toon into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/bonk-moltbot/toon. Review commits and README documentation before installing.