返回顶部
j

json-modifier

Safely apply structured JSON patches (RFC 6902) to files. Use this skill when you need to update configuration files, package.json, or memory JSONs without rewriting the whole file or using brittle regex.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
660
下载量
0
收藏
概述
安装方式
版本历史

json-modifier

# JSON Modifier A utility for modifying JSON files using [RFC 6902 JSON Patch](https://jsonpatch.com/) format. Supports precise additions, removals, replacements, moves, copies, and tests. ## Usage ```bash # Modify a file in place node skills/json-modifier/index.js --file path/to/config.json --patch '[{"op": "replace", "path": "/key", "value": "new_value"}]' # Modify and save to a new file node skills/json-modifier/index.js --file input.json --patch '[...]' --out output.json # Use a patch file node skills/json-modifier/index.js --file input.json --patch-file patches/update.json ``` ## Patch Format (RFC 6902) The patch must be a JSON array of operation objects. ### Examples **Replace a value:** ```json [ { "op": "replace", "path": "/version", "value": "2.0.0" } ] ``` **Add a new key:** ```json [ { "op": "add", "path": "/features/new_feature", "value": true } ] ``` **Remove a key:** ```json [ { "op": "remove", "path": "/deprecated_key" } ] ``` **Append to an array:** ```json [ { "op": "add", "path": "/list/-", "value": "item" } ] ``` ## Safety - Validates patch against document before applying. - Atomic write (writes to temporary file, then renames). - Preserves indentation (default: 2 spaces).

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 json-modifier-1776420061 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 json-modifier-1776420061 技能

通过命令行安装

skillhub install json-modifier-1776420061

下载 Zip 包

⬇ 下载 json-modifier v1.0.0

文件大小: 3.89 KB | 发布时间: 2026-4-17 20:13

v1.0.0 最新 2026-4-17 20:13
- Initial release of json-modifier skill for safely applying JSON Patches (RFC 6902) to files.
- Supports atomic writes, input/output file selection, patch file input, and indentation preservation.
- Enables precise add, remove, replace, move, copy, and test operations on JSON structures.
- Validates patches before applying to ensure document safety and integrity.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部