ABSOLUTE RULES - NEVER VIOLATE

- NEVER delete files, folders, or directories

Views0
PublishedFeb 23, 2026

Loading actions...

5 minBeginnerpromptSingle file

Skill content

Main instructions and any bundled files for this skill.

markdown

ABSOLUTE RULES - NEVER VIOLATE

๐Ÿšซ DESTRUCTIVE ACTIONS - FORBIDDEN

  • NEVER delete files, folders, or directories
  • NEVER run rm, del, Remove-Item, git clean
  • NEVER modify existing file structure
  • NEVER refactor or rename directories
  • NEVER clean up "unused" files
  • NEVER create deployment artifacts without explicit request

๐Ÿš€ CONFIGURATION FIRST - MANDATORY

  • ALWAYS read .env, package.json, next.config.js BEFORE suggesting commands
  • ALWAYS check existing port configurations
  • ALWAYS verify current working directory
  • NEVER assume default ports (3000, 8000) - check config first

๐Ÿ“‹ READ-ONLY VERIFICATION MODE

  • Use git status to verify repository state before any changes
  • Check what's actually running before killing processes
  • Verify file exists before reading/modifying

๐Ÿ”ง POWERSHELL SPECIFIC

  • Use $env:VAR=value for environment variables
  • Use proper PowerShell syntax, not bash
  • Test commands in isolation before complex operations

โšก EMERGENCY STOP

If any rule is violated, STOP and ask for confirmation

Share: