Safe async json packet validator
Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/safe-async-json-packet-validator
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill safe-async-json-packet-validatorAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing 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.
What its author says it does
Copied from the file, not written here
Validates if a data packet is valid JSON asynchronously without logging errors to the console.
SKILL.md
1.4 KB, as published. Nobody here has run it
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
- The function must be asynchronous (async/await) as requested.
- Do not log errors to the console (e.g., no console.log in catch blocks) to prevent spamming.
- Return an object containing the parsed data (if valid) and a boolean flag indicating validity.
- 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