返回顶部
j

json-modifierJSON补丁工具

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
安全检测
已通过
736
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

json-modifier

JSON 修改器

一个使用 RFC 6902 JSON Patch 格式修改 JSON 文件的工具。
支持精确的添加、删除、替换、移动、复制和测试操作。

使用方法

bash

原地修改文件


node skills/json-modifier/index.js --file path/to/config.json --patch [{op: replace, path: /key, value: new_value}]

修改并保存到新文件

node skills/json-modifier/index.js --file input.json --patch [...] --out output.json

使用补丁文件

node skills/json-modifier/index.js --file input.json --patch-file patches/update.json

补丁格式 (RFC 6902)

补丁必须是一个包含操作对象的 JSON 数组。

示例

替换值:
json
[
{ op: replace, path: /version, value: 2.0.0 }
]

添加新键:
json
[
{ op: add, path: /features/new_feature, value: true }
]

删除键:
json
[
{ op: remove, path: /deprecated_key }
]

追加到数组:
json
[
{ op: add, path: /list/-, value: item }
]

安全性

  • - 在应用补丁前会验证补丁与文档的兼容性。
  • 原子写入(先写入临时文件,再重命名)。
  • 保留缩进(默认:2个空格)。

标签

skill ai

通过对话安装

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

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

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

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

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

通过命令行安装

skillhub install json-modifier-1776420061

下载

⬇ 下载 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
返回顶部