Execution Standards

Enforces cross-platform portability and safe execution conventions for all scripts and shell commands. Always apply when running scripts or shell commands.

alexandreroman 6303bb9 678 B Updated

File contents

Execution Standards

Portability

All skills and scripts MUST be portable across Windows, macOS, and Linux. Avoid OS-specific commands or paths. Use Python for scripts instead of platform-specific shell scripts.

Python

ALWAYS run Python scripts with the python CLI (not python3).

Shell Safety

When executing shell commands, ALWAYS quote arguments that may contain special characters (e.g., URLs with ?, &, whitespace) to prevent shell parsing errors.

alexandreroman/second-brain-template/tree/main/.claude/skills/execution-standards commit 6303bb9344

Frequently asked questions

npx skillmds@latest add alexandreroman/execution-standards