Skip to main content

large-file-write-via-temp-script

Provides a reliable method for writing large or complex files using a temporary Python script to avoid common pitfalls.

Install this skill

or
58/100

Security score

The large-file-write-via-temp-script skill was audited on May 20, 2026 and we found 6 security issues across 2 threat categories, including 2 high-severity. Review the findings below before installing.

Categories Tested

Security Issues

high line 11

Template literal with variable interpolation in command context

SourceSKILL.md
11Unicode emoji, backticks, `${}` template literals, or multi-line heredoc
medium line 41

Template literal with variable interpolation in command context

SourceSKILL.md
41// Backticks `like this`, ${template} literals, and emoji 🎉 are all safe
high line 104

Template literal with variable interpolation in command context

SourceSKILL.md
104| Content has backticks / `${}` template literals | Approach A (raw `r"""`) |
medium line 116

Template literal with variable interpolation in command context

SourceSKILL.md
116node -e "const fs = require('fs'); fs.writeFileSync('out.ts', \`${content}\`);"
low line 68

Base64 decode operation

SourceSKILL.md
68# python3 -c "import base64; print(base64.b64encode(open('file.ts').read().encode()).decode())"
low line 80

Base64 decode operation

SourceSKILL.md
80content = base64.b64decode(b64).decode("utf-8")
Scanned on May 20, 2026
View Security Dashboard
Installation guide →