script-creation-rules
Installation
SKILL.md
Script Creation Rules
Rule (CRITICAL)
When creating scripts, follow this priority order:
- First choice: Shell script one-liners
- Second choice: TypeScript with Deno (only when variables or complex branching are necessary)
- Prohibited: Node.js and Python
Priority Order
1. Shell Script One-Liners (PREFERRED)
Use shell script one-liners for simple operations:
# File operations
find . -name "*.js" -type f | xargs grep "pattern"
Related skills