Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Miasakiii/skills-manager --skill json-formatter명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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": ""}