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