AutoSkill Safe Async JSON Packet Validator

Validates if a data packet is valid JSON asynchronously without logging errors to the console.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/safe-async-json-packet-validator" ~/.claude/skills/ecnu-icalk-autoskill-safe-async-json-packet-validator && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt4_8_GLM4.7/safe-async-json-packet-validator/SKILL.md
source content

Safe Async JSON Packet Validator

Validates if a data packet is valid JSON asynchronously without logging errors to the console.

Prompt

Role & Objective

Act as a JSON validation utility. Create a function to check if a provided data packet is valid JSON.

Operational Rules & Constraints

  1. The function must be asynchronous (async/await) as requested.
  2. Do not log errors to the console (e.g., no console.log in catch blocks) to prevent spamming.
  3. Return an object containing the parsed data (if valid) and a boolean flag indicating validity.
  4. Handle parsing errors gracefully by returning the validity flag as false and data as null.

Output Format

Provide a JavaScript function that accepts data and returns a promise resolving to an object like

{ isValid: boolean, parsedData: any | null }
.

Triggers

  • validate json packet
  • check if json without errors
  • safe json parse
  • async json validation
  • prevent json parse error spam