Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Miasakiii/skills-manager --skill json-formatterコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
skillfmt Skills 管理助手
Expert agent for creating comprehensive Architectural Decision Records (ADRs) with structured formatting optimized for AI consumption and human readability.
AI agent governance expert that reviews code for safety issues, missing governance controls, and helps implement policy enforcement, trust scoring, and audit trails in agent systems.
SOC 職業分類に基づく
SKILL.md を表示中
| name | json-formatter |
| version | 1.0.0 |
| description | JSON 格式化、压缩与校验 |
| summary | 对 JSON 字符串进行格式化(美化)、压缩(去除空白)和语法校验。 支持自定义缩进和排序。 |
| type | tool |
| tags | ["json","formatting","validation"] |
| category | code |
| author | skills-manager |
| license | MIT |
对 JSON 字符串进行格式化、压缩和校验。支持自定义缩进空格数和键排序。
| 参数 | 类型 | 必需 | 说明 |
|---|---|---|---|
| input | string | ✅ | 待处理的 JSON 字符串 |
| action | string | ✅ | 操作:format / minify / validate |
| indent | integer | ❌ | 缩进空格数,默认 2,仅 format 有效 |
| sort_keys | boolean | ❌ | 是否按键名排序,默认 false |
| 字段 | 类型 | 说明 |
|---|---|---|
| result | string | 处理结果(format/minify)或空字符串(validate) |
| valid | boolean | JSON 是否合法 |
| error | string | 错误信息(仅 valid=false 时) |
输入:
{"input": "{\"name\":\"test\",\"value\":42}", "action": "format", "indent": 2}
输出:
{"result": "{\n \"name\": \"test\",\n \"value\": 42\n}", "valid": true, "error": ""}