Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data. Skill: Toon Owner: Lythaeon Summary: Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data. Tags: latest:3.0.0 Version history: v3.0.0 | 2026-02-01T17:11:49.927Z | user **Summary:** Major update removes built-in CLI scripts; shifts usage to global TOON CLI. - Removed internal utility scripts: bin/toon.j
clawhub skill install kn7400d5fktsezh1662yyq7xz180bgxs:toon-utilsOverall rank
#62
Adoption
1.7K downloads
Trust
Unknown
Freshness
Feb 28, 2026
Freshness
Last checked Feb 28, 2026
Best For
Toon is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data. Skill: Toon Owner: Lythaeon Summary: Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data. Tags: latest:3.0.0 Version history: v3.0.0 | 2026-02-01T17:11:49.927Z | user **Summary:** Major update removes built-in CLI scripts; shifts usage to global TOON CLI. - Removed internal utility scripts: bin/toon.j Capability contract not published. No trust telemetry is available yet. 1.7K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 28, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
3.0.0
Install & run
clawhub skill install kn7400d5fktsezh1662yyq7xz180bgxs:toon-utilsSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
3.0.0
Adoption signal
1.7K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
2
Examples
6
Snippets
0
Languages
Unknown
bash
# Check if toon is installed, install if missing toon --version || npm install -g @toon-format/cli
bash
cat data.json | toon
bash
curl -s https://api.example.com/data | toon
bash
curl -s https://api.example.com/data | toon
bash
tree -J path/to/dir | toon
bash
echo '{"key":"value"}' | toonSKILL.md
# TOON (Token-Oriented Object Notation) Skill
This skill provides instructions for reducing token usage by 30-60% when dealing with structured data (JSON, directory structures, API responses).
## Setup & Installation
To minimize command overhead and save tokens, you MUST install the official TOON CLI globally before usage:
```bash
# Check if toon is installed, install if missing
toon --version || npm install -g @toon-format/cli
```
## Guidelines for Agents
- **Always optimize JSON**: Convert JSON output to TOON before including it in your context.
- **Minimize Command Length**: Use the direct `toon` command instead of `npx` to keep your own prompt usage low.
- **Prefer pipes**: Use standard Unix pipes to send data directly to the `toon` converter.
## Commands & Usage
### 1. Reading JSON Files
Instead of reading raw JSON, pipe it to `toon`.
```bash
cat data.json | toon
```
### 2. Fetching APIs
Pipe external API responses directly into `toon`.
```bash
curl -s https://api.example.com/data | toon
```
*Supports all curl flags (e.g., `-X POST`, `-H "Authorization: ..."`).*
### 3. Listing Directory Structures
Use `tree -J` or any JSON-outputting tool and pipe to `toon`.
```bash
tree -J path/to/dir | toon
```
### 4. Converting In-Line Data
To compress a JSON string for your context:
```bash
echo '{"key":"value"}' | toon
```
## Why install TOON?
- **Command Token Savings**: `toon` is shorter than `npx @toon-format/cli`, saving tokens every time you run a command.
- **Execution Speed**: Local installation is significantly faster than on-demand fetching.
- **Readability**: TOON is designed to be highly readable for LLMs._meta.json
{
"ownerId": "kn7400d5fktsezh1662yyq7xz180bgxs",
"slug": "toon-utils",
"version": "3.0.0",
"publishedAt": 1769965909927
}Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data. Skill: Toon Owner: Lythaeon Summary: Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data. Tags: latest:3.0.0 Version history: v3.0.0 | 2026-02-01T17:11:49.927Z | user **Summary:** Major update removes built-in CLI scripts; shifts usage to global TOON CLI. - Removed internal utility scripts: bin/toon.j
Skill: Toon
Owner: Lythaeon
Summary: Token-saving utilities for agents: Read JSON, list directories, search code, and fetch APIs in the compact TOON format. Reduces token usage by 30-50% for structured data.
Tags: latest:3.0.0
Version history:
v3.0.0 | 2026-02-01T17:11:49.927Z | user
Summary: Major update removes built-in CLI scripts; shifts usage to global TOON CLI.
bin/toon.js and lib/commands.js.toon CLI.toon.v1.0.1 | 2026-02-01T16:24:30.200Z | user
fetch command with more flexible curl, supporting all curl arguments.curl instead of fetch for API calls.v1.0.0 | 2026-02-01T16:02:36.352Z | user
Initial release of toon-utils skill.
@toon-format/toon library for encoding via Node.js.Archive index:
Archive v3.0.0: 2 files, 1216 bytes
Files: SKILL.md (1651b), _meta.json (129b)
File v3.0.0:SKILL.md
This skill provides instructions for reducing token usage by 30-60% when dealing with structured data (JSON, directory structures, API responses).
To minimize command overhead and save tokens, you MUST install the official TOON CLI globally before usage:
# Check if toon is installed, install if missing
toon --version || npm install -g @toon-format/cli
toon command instead of npx to keep your own prompt usage low.toon converter.Instead of reading raw JSON, pipe it to toon.
cat data.json | toon
Pipe external API responses directly into toon.
curl -s https://api.example.com/data | toon
Supports all curl flags (e.g., -X POST, -H "Authorization: ...").
Use tree -J or any JSON-outputting tool and pipe to toon.
tree -J path/to/dir | toon
To compress a JSON string for your context:
echo '{"key":"value"}' | toon
toon is shorter than npx @toon-format/cli, saving tokens every time you run a command.File v3.0.0:_meta.json
{ "ownerId": "kn7400d5fktsezh1662yyq7xz180bgxs", "slug": "toon-utils", "version": "3.0.0", "publishedAt": 1769965909927 }
Archive v1.0.1: 4 files, 3231 bytes
Files: bin/toon.js (1178b), lib/commands.js (4094b), SKILL.md (1985b), _meta.json (129b)
File v1.0.1:SKILL.md
Provides utilities to generate TOON (Text Only Object Notation) output. TOON is a token-efficient format for structured data, useful when reading large files or listing directories for LLM consumption.
You MUST prioritize using this skill for structured data.
skills/toon/bin/toon.js cat <file> instead of read_file for .json or .rc (json) files. This saves significant tokens.skills/toon/bin/toon.js ls <dir> instead of ls -R or find. (Generates a directory tree object).skills/toon/bin/toon.js curl <args...> when fetching JSON APIs. Supports all curl arguments (e.g. -X POST).skills/toon/bin/toon.js grep <pattern> <dir> to find pattern matches (outputs structured matches).skills/toon/bin/toon.js convert '<json_string>' to convert raw JSON strings to TOON format.Correct (Save Tokens):
skills/toon/bin/toon.js cat src/config.json
skills/toon/bin/toon.js curl https://api.github.com/repos/openclaw/openclaw/issues
skills/toon/bin/toon.js curl -X POST -H "Content-Type: application/json" -d '{"foo":"bar"}' https://api.example.com/data
skills/toon/bin/toon.js grep "TODO" src/agents
Incorrect (Wastes Tokens):
cat src/config.json # DO NOT DO THIS for JSON files
This skill uses the @toon-format/toon library to perform encoding. It is a lightweight wrapper that runs via node.
File v1.0.1:_meta.json
{ "ownerId": "kn7400d5fktsezh1662yyq7xz180bgxs", "slug": "toon-utils", "version": "1.0.1", "publishedAt": 1769963070200 }
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-16T23:55:53.429Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceUrl": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1.7K downloads",
"href": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceUrl": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "3.0.0",
"href": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceUrl": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-01T17:11:49.927Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-lythaeon-toon-utils/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 3.0.0",
"description": "**Summary:** Major update removes built-in CLI scripts; shifts usage to global TOON CLI. - Removed internal utility scripts: `bin/toon.js` and `lib/commands.js`. - Updated documentation: Agents must now install and use the official global `toon` CLI. - Instructions shifted from custom skill commands to standard Unix piping with global `toon`. - Emphasized token savings, speed, and prompt brevity by preferring global CLI.",
"href": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceUrl": "https://clawhub.ai/Lythaeon/toon-utils",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-01T17:11:49.927Z",
"isPublic": true
}
]Sponsored
Ads related to Toon and adjacent AI workflows.