base64-toolkit
Analysis
This appears to be a straightforward base64 utility; the only notable capability is optional user-directed file reading and writing for file encoding/decoding.
Findings (1)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
function encodeFile(filePath) { ... fs.readFileSync(filePath); ... } ... function decodeToFile(input, filePath) { ... fs.writeFileSync(filePath, buffer); }The skill exposes helpers that read an arbitrary caller-supplied file path and write decoded bytes to a caller-supplied output path. This is consistent with the advertised 'File encoding/decoding' feature, and the artifacts do not show automatic use.
