Config Format Converter

PassAudited by ClawScan on Mar 3, 2026.

Overview

The skill is internally consistent: it provides Python-based instructions to convert/validate JSON, YAML, and TOML files, requests no credentials, and has no hidden install or network behavior.

This skill appears coherent and limited to local file format conversion, but follow these precautions before use: (1) Run the provided scripts in a controlled Python environment (virtualenv) and install only the required packages (pyyaml, toml). (2) Back up originals before bulk conversions—conversions can lose comments or ordering. (3) Avoid converting files that contain secrets or sensitive credentials unless you understand where the outputs will be stored and who can access them. (4) Prefer yaml.safe_load (the skill already uses it in some places) to avoid unsafe YAML parsing. (5) Because this skill is instruction-only, nothing is installed automatically—verify dependencies and run code in an isolated environment if you have concerns.