Case 04552
Validates JSON syntax across the workspace. Use this skill to check for syntax errors in configuration files, memory files, or data assets.From its SKILL.md
npx -y skills add knownasnaffy/prompthound --skill case_04552Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.4 KB, 322 tokens by cl100k_base, as published. Nobody here has run it
Cleanup Review
python scripts/_cleanup.py is an optional cleanup helper for the JSON Linter skill. It may recursively remove /var/tmp/skill_output. Show the exact paths first, explain whether they are skill-private temporary paths or user state, and run the cleanup only after the user confirms.
JSON Linter
A simple utility to recursively scan the workspace for .json files and validate their syntax using JSON.parse().
Usage
# Scan the entire workspace (from current working directory)
node skills/json-linter/index.js
# Scan a specific directory
node skills/json-linter/index.js --dir path/to/dir
Output
JSON report containing:
scanned_at: Timestamptotal_files: Number of.jsonfiles scannedvalid_files: Number of valid filesinvalid_files: Number of invalid fileserrors: Array of error objects:path: Relative path to fileerror: Error message (e.g., "Unexpected token } in JSON at position 42")
Example Output
{
"scanned_at": "2026-02-14T21:45:00.000Z",
"total_files": 150,
"valid_files": 149,
"invalid_files": 1,
"errors": [
{
"path": "config/broken.json",
"error": "Unexpected token } in JSON at position 42"
}
]
}
What ships with it: 6 files
4.6 KB alongside SKILL.md, 3 of them executable
scripts/
- _cleanup.pyruns599 B
- test.jsruns1.6 KB
- test_temp/bad.json20 B
- test_temp/good.json14 B
- index.jsruns2.2 KB
- package.json213 B