bash git clone https://github.com/openclaw/clawsweeper.git cd clawsweeper npm install npm run build bash export GITHUB TOKEN=$GITHUB TOKEN # read access to target repo export OPENAI API KEY=$OPENAI API KEY # Codex access export CLAWSWEEPER REPO="owner/repo" # target repo to scan bash npm run plan -- \ --batch-size 5 \ --shard-count 40 \ --max-pages 250 \ --codex-model gpt-5.5 \ --codex-reasoning-effort medium \ --codex-service-tier fast bash npm run review -- \ --openclaw-dir ../openclaw \ --batch-size 5 \ --max-pages 250 \ --artifact-dir artifacts/reviews \ --codex-model gpt-5.5 \ --codex-re…