Install
$ agentstack add skill-yuaicode-ai-skills-json-yaml-doctor ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
json-yaml-doctor — JSON / YAML / TOML 校验与中文报错解读
把晦涩的 parser 报错翻译成中文,给出精确行列定位,解释常见坑,并提供格式化输出。
何时触发
用户说:
- "校验这个 json / 检查 yaml 有没有问题 / toml 报错了"
- "json 格式化 / yaml 格式化"
- "这个配置文件解析失败 / check yaml / json-yaml-doctor"
- "帮我把 json 转成 yaml"(需 pyyaml)
用法
1. 跑校验脚本
bash /bin/check.sh # 校验语法
bash /bin/check.sh --format # 校验 + 输出美化后内容
bash /bin/check.sh - # 从 stdin 读(自动探测类型)
脚本自动按扩展名(或内容探测)判类型,依次:
| 格式 | 依赖 | 无依赖时 | | ---- | ---- | -------- | | JSON | python3 标准库(json) | 永远可用 | | YAML | python3 + pyyaml | 提示 pip install pyyaml 并 exit 0 跳过 | | TOML | python3 3.11+ tomllib | 提示并 exit 0 跳过 |
退出码:
0— 合法(或依赖缺失跳过)2— 语法错误(附中文定位)
环境变量:
PYTHON_BIN— 覆盖 python 解释器路径(默认python3),测试用
2. Claude 解读与修复
拿到脚本输出后,Claude 会:
- 翻译:把行列 + 原始 parser 报错用中文讲清楚
- 解释根因:常见坑一览:
- JSON 尾逗号:最后一个元素后面多了逗号(标准 JSON 不允许)
- JSON 单引号:键或值用了
'…'而非"…" - JSON 键重复:同一对象出现两个相同键(行为未定义,易出 bug)
- YAML Tab 缩进:YAML 禁止用 Tab,只能空格
- YAML 缩进不一致:子层缩进量与父层不对齐
- YAML 特殊字符未引号:含
:#{}等需加引号 - TOML 键重复 / 日期格式:常见 TOML 解析坑
- 给出修法:显示修正前 → 修正后对比
3. JSON ↔ YAML 互转(需 pyyaml)
直接告诉 Claude "把这段 JSON 转成 YAML"或"把这个 yaml 文件转成 json",Claude 会调用 python3 + yaml 完成转换并输出结果。
边界
- JSON 校验始终可用(python3 标准库);YAML 需 pyyaml,TOML 需 py 3.11+
- 只检查语法,不校验业务 schema(如 OpenAPI 合法性需另外工具)
- 从 stdin 读时(
-),扩展名无法自动判断,优先按内容首字符猜测(JSON:{/[;TOML:含=;否则当 YAML) - 不修改原文件,只输出报告或美化内容
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: YuAICode
- Source: YuAICode/ai-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.