Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

openclaw-json-toolkitOpenClaw JSON toolkit 搜索

Agent Skill

openclaw-json-toolkit 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

8,387

周安装

353

GitHub Stars

公开资料未说明

下载量

2,937
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-json-toolkit(OpenClaw JSON toolkit 搜索)
来源仓库:https://github.com/yedanyagamiai-cmd/openclaw-json-toolkit
安装命令:
openclaw skills install openclaw-json-toolkit
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-json-toolkit

简介

OpenClaw JSON toolkit 提供企业级 JSON 处理与结构转换能力。

  • 适用于格式化、验证、差异对比与 JSONPath 查询操作场景。
  • 通过 clawhub 安装后在 MCP 服务器上执行各类 JSON 工具命令。
  • 需确保输入数据合法且输出路径可写,避免覆盖重要文件。
  • 建议对敏感字段进行掩码处理后再做深度分析。

SKILL.md

name
openclaw-json-toolkit
version
2.0.0
description
Enterprise-grade JSON processing suite — format, validate, deep-diff, JSONPath query, structural transform, and schema generation in one MCP server. Use when: (1) user says 'format this JSON' or 'pretty print this', (2) user asks 'validate my JSON' or 'is this valid JSON', (3) user needs to 'compare two JSON objects' or 'diff these configs', (4) user wants to 'query nested JSON' or 'extract with JSONPath', (5) user requests 'flatten JSON' or 'generate JSON Schema'. Supports draft-07 schema, recursive flatten, wildcard queries, filter expressions, array slicing. Zero install, sub-100ms on Cloudflare Workers. Free + Pro $9/mo.
read_when
commands
metadata
openclaw
emoji
{}
homepage
https://github.com/yedanyagamiai-cmd/openclaw-mcp-servers
always
false

OpenClaw JSON Toolkit v2.0

The Swiss Army knife for JSON — 6 tools, zero install, instant results.

Quick Reference

SituationActionTool
Messy single-line JSON from an APIPretty-print with 2-space indentjson_format
Need to minify for productionCompress to single linejson_format (minify)
Pasted JSON won't parseFind exact error line + columnjson_validate
Two config files changedSee added/removed/changed pathsjson_diff
Need one field from 500-line JSONQuery with JSONPath expressionjson_query
Deeply nested keys hard to accessFlatten to dot-notationjson_transform
Building an API contractAuto-generate draft-07 schemajson_schema_generate

What's New in v2.0

  • :zap: CloudEdge Protocol -- All processing runs on Cloudflare's global edge network. Sub-100ms response worldwide, zero cold starts.
  • :mag: DeepQuery Engine -- Full JSONPath with deep scan (..), wildcards (*), filter expressions (?(@.price < 10)), and array slicing ([0:5]).
  • :shield: Schema Draft-07 Intelligence -- Auto-detects semantic formats: email, URI, date-time, IPv4, UUID. Infers required fields and enum candidates from sample data.
  • :arrows_counterclockwise: StructureMorph Transform -- Recursive flatten/unflatten, key renaming with mapping objects, pick/omit projections on arbitrarily nested JSON.

MCP Quick Start

{
  "openclaw-json": {
    "type": "streamable-http",
    "url": "https://json-toolkit-mcp.yagami8095.workers.dev/mcp"
  }
}

Add to Claude Desktop, Cursor, Windsurf, VS Code, or any MCP-compatible client. No API key needed for Free tier. Works immediately.

Detection Triggers

This skill activates when you say:

  • "format this JSON" / "pretty print this" / "indent this JSON"
  • "validate my JSON" / "is this valid JSON" / "why won't this parse"
  • "compare these two JSON" / "diff these objects" / "what changed between these configs"
  • "query this JSON" / "extract from JSON" / "JSONPath" / "get the nested value"
  • "flatten this JSON" / "restructure this" / "rename these keys" / "unflatten"
  • "generate a schema" / "create JSON Schema" / "schema from this sample"

Tools (6)

json_format -- Pretty-Print & Minify (CloudEdge Protocol)

Format any JSON string with configurable indentation or compress to a single line for production payloads.

ParameterTypeDefaultDescription
jsonstringrequiredRaw JSON string to format
indentnumber2Spaces per indent level (0-8)
minifybooleanfalseCompress to single line, strip whitespace

Output: Formatted JSON string + byte count (before/after) + compression ratio when minifying.

WRONG vs RIGHT

WRONG -- Manually adding spaces to JSON in a text editor:

User: Can you add proper indentation to this JSON?
Agent: *manually edits text, misses nested arrays, breaks trailing commas*

RIGHT -- Use json_format:

User: Format this JSON
Agent: calls json_format → returns perfectly indented JSON with byte count in 12ms

json_validate -- Validation with Diagnostics

Validate JSON syntax and get structural metadata on success, or precise error location on failure.

ParameterTypeDefaultDescription
jsonstringrequiredJSON string to validate

On success: { valid: true, type: "object"|"array", keyCount, depth, byteSize } On failure: { valid: false, error: "message", line: 3, column: 15, context: "near '...'" }

WRONG vs RIGHT

WRONG -- Guessing where the JSON error is:

User: Why won't this JSON parse?
Agent: *scans visually, says "maybe line 12?"* — misses the real error on line 47

RIGHT -- Use json_validate:

User: Why won't this JSON parse?
Agent: calls json_validate → "Unexpected token at line 47, column 23: trailing comma after last element"

json_diff -- Structural Comparison (DeepDiff Protocol)

Compare two JSON values and get a complete structural diff showing every added, removed, and changed path.

ParameterTypeDefaultDescription
leftstringrequiredFirst JSON (the "before")
rightstringrequiredSecond JSON (the "after")

Output: { added: [...paths], removed: [...paths], changed: [{ path, from, to }], totalChanges }. Every changed value shows the exact before/after values at that path.

  • Use for: API response comparison, config drift detection, schema evolution tracking, deployment validation.

json_query -- JSONPath Extraction (DeepQuery Engine)

Query JSON with full JSONPath support including dot notation, bracket notation, wildcards, deep scan, array slicing, and filter expressions.

ParameterTypeDefaultDescription
jsonstringrequiredJSON data to query
pathstringrequiredJSONPath expression

Supported syntax:

  • $.store.book[0].title -- direct path
  • $.store.book[*].author -- wildcard
  • $..price -- recursive deep scan
  • $.store.book[0:3] -- array slicing
  • $.store.book[?(@.price < 10)] -- filter expression

Output: Array of matched values with their resolved paths.


json_transform -- Structural Operations (StructureMorph)

Perform structural transformations: flatten nested JSON to dot-notation keys, unflatten back, pick/omit specific keys, or rename keys with a mapping object.

ParameterTypeDefaultDescription
jsonstringrequiredJSON to transform
operationstringrequiredflatten, unflatten, pick, omit, rename
optionsobject{}Operation-specific: keys[] for pick/omit, mapping{} for rename

Output: Transformed JSON with operation summary (keys affected, depth change).


json_schema_generate -- Schema from Samples (Schema Intelligence)

Generate a complete JSON Schema (draft-07) from any JSON value. Auto-infers types, detects semantic formats, determines required fields, and identifies enum candidates.

ParameterTypeDefaultDescription
jsonstringrequiredSample JSON value

Auto-detected formats: email, uri, date-time, ipv4, ipv6, uuid, hostname. Output: Complete JSON Schema with $schema, type, properties, required, format annotations, and description placeholders.

What NOT to Do

Don'tWhyDo Instead
Send binary data (BSON, MessagePack, Protobuf)Text JSON onlyDecode to JSON string first
Send JSON over 1MBEdge workers have memory limitsSplit into chunks, process each
Expect streaming outputEach call returns complete resultsUse for bounded payloads
Use as a databaseTools are statelessStore results client-side
Send JSON with JS commentsStrict JSON spec onlyStrip comments before sending

Security & Privacy

WhatStatus
Reads your JSON inputYes -- for processing only
Stores your dataNo -- zero persistence, stateless edge processing
Sends data to third partiesNo -- processed entirely on Cloudflare Workers
Logs request contentNo -- only anonymous usage counters
Requires authenticationFree tier: no. Pro: API key header only

Pricing

TierCalls/DayPriceWhat You Get
Free20$0All 6 JSON tools, no signup
Pro1,000$9/moAll 9 OpenClaw servers (49 tools), priority routing
x402Pay-per-call$0.05 USDCNo account needed, crypto-native

Get Pro Key: https://buy.stripe.com/4gw5na5U19SP9TW288

The OpenClaw Intelligence Stack

ServerToolsBest For
JSON Toolkit6Format, validate, diff, query, transform JSON
Regex Engine5Test, extract, replace, explain regex patterns
Color Palette5Generate, convert, harmonize, accessibility-check colors
Timestamp Converter5Parse, format, diff, timezone-convert timestamps
Prompt Enhancer6Optimize, rewrite, score, A/B test AI prompts
Market Intelligence6AI market trends, GitHub stats, competitor analysis
Fortune & Tarot3Daily fortune, tarot readings, I Ching
Content Publisher8MoltBook posts, social content, newsletter
AgentForge Compare5Compare AI tools, frameworks, MCP servers

All 9 servers share one Pro key. $9/mo = 49 tools.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.13%
按下载量换算2,765

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills