release safety rules for running releases in this monorepo. rules - NEVER add unless user explicitly says "skip checks" - NEVER add unless user explicitly says "skip tests" - if checks or tests fail, FIX THE ISSUES instead of skipping - ask user before adding any skip flags - the point of checks is to catch problems before publishing when things fail 1. read the error output carefully 2. fix the underlying issue 3. re-run the release 4. do NOT just skip the failing step common flags safe flags: - - publish canary version - - run in ci mode - - allow dirty working directory - - faster builds d…