Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,3 +299,4 @@ When working on any task:
4. Never push without the user's confirmation
5. Never implement hacky solutions — generalize
6. Update task status in this file when complete
7. **Always check PR state before pushing to a branch** — run `gh pr view` to verify the PR is still open. The user may have already merged it. Pushing to a merged branch creates orphaned commits.
3 changes: 2 additions & 1 deletion scripts/extract-review-risk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ set -e
REVIEW_SCRIPT="$1"
PLAN_FILE="$2"

python3 "$REVIEW_SCRIPT" "$PLAN_FILE" 2>&1 | tee review-output.txt || true
python3 "$REVIEW_SCRIPT" "$PLAN_FILE" > review-output.txt 2>&1 || true
cat review-output.txt

if [ -f review-result.json ]; then
RISK=$(jq -r '.risk // "FAILED"' review-result.json)
Expand Down