script-creation-rules

Installation
SKILL.md

Script Creation Rules

Rule (CRITICAL)

When creating scripts, follow this priority order:

  1. First choice: Shell script one-liners
  2. Second choice: TypeScript with Deno (only when variables or complex branching are necessary)
  3. 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
Installs
7
First Seen
Feb 19, 2026