Skip to main content

lythoskill-red-green-release

Facilitates user-acceptance-driven release workflows with self-archiving patch files, ensuring rollback capabilities and version control.

Install this skill

or
98/100

Security score

The lythoskill-red-green-release skill was audited on Jul 31, 2026 and we found 2 security issues across 1 threat category. Review the findings below before installing.

Categories Tested

Security Issues

low line 54

Command substitution pattern

SourceSKILL.md
52mkdir -p archived-patches
53# 2. Backup current files (for rollback)
54cp src/target.ts "archived-patches/target.ts.$(date +%Y%m%d).bak"
55# 3. Apply changes (declarative full-file replacement via heredoc)
56cat > src/target.ts << 'PATCH_EOF'
low line 60

Command substitution pattern

SourceSKILL.md
58PATCH_EOF
59# 4. Self-archive: copy patch to archive, then delete from root
60cp "$0" "archived-patches/$(basename "$0")"
61rm "$0"
62```
Scanned on Jul 31, 2026
View Security Dashboard
Installation guide →