一键导入
simple-task
Format and validate JSON data structures. Use when you need to pretty-print JSON, validate syntax, or convert between compact and formatted JSON.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Format and validate JSON data structures. Use when you need to pretty-print JSON, validate syntax, or convert between compact and formatted JSON.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
List all available channels. Use when discovering what channels exist or checking channel metadata.
Publish a message to a channel or DM. Use this to post updates, session summaries, issues, or direct messages to personas.
Read messages from a channel. Use this to check for new messages, review issue history, or catch up on session logs.
Reply to a specific message in a channel. Use this to respond to issues, answer questions, or continue threaded conversations.
Install agent skills from various sources including local paths, GitHub URLs, or the dot-agents repository. Use when adding new skills to a project or user environment.
Discover, browse, and compare agent skills from repositories. Shows new skills, updates, and helps users find relevant skills. Use when exploring available skills or checking for updates.
| name | simple-task |
| description | Format and validate JSON data structures. Use when you need to pretty-print JSON, validate syntax, or convert between compact and formatted JSON. |
| license | MIT |
Format and validate JSON data structures with consistent styling.
Use this skill when you need to:
Accept JSON data in one of these forms:
Check if the JSON is valid:
Apply consistent formatting:
Provide the formatted JSON:
Input:
{ "name": "John", "age": 30, "city": "New York" }
Process:
Expected Output:
{
"name": "John",
"age": 30,
"city": "New York"
}
Input:
{ "name": "John", "age": 30 }
Process:
Expected Output:
Error: Invalid JSON syntax
Line 1, position 25: Unexpected token }
Trailing comma not allowed in JSON
Input:
{
"user": {
"name": "Alice",
"contact": { "email": "alice@example.com", "phone": "555-0123" }
},
"active": true
}
Process:
Expected Output:
{
"user": {
"name": "Alice",
"contact": {
"email": "alice@example.com",
"phone": "555-0123"
}
},
"active": true
}
No external dependencies required. Uses standard JSON parsing capabilities.
Invalid JSON:
Empty Input:
{} or array []File Not Found: