DEPLOYMENT GUARDRAILS

CRITICAL RULE: NEVER AUTO-DEPLOY

Under absolutely no circumstances should the AI execute deployment commands (e.g., npm run deploy, wrangler deploy, bricklayer deploy) autonomously.

RATIONALE

The USER relies on local development instances (npm run dev:xxx) to test logic in isolation. Deployments touch the Cloudflare production environment, affecting live systems and overriding configurations. The USER has repeatedly requested that deployments be strictly manual.

ENFORCEMENT

  1. If code changes are completed, instruct the USER on how to deploy them manually.
  2. If verifying a build, use local build commands (e.g., npm run build) without deployment flags.
  3. Treat any command containing deploy as highly destructive and unsafe. NEVER set SafeToAutoRun: true for such commands.