You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Self-review of PR #250 found two defects in the idd-verify Step 4.5 prose:
- $CONFIG_PATH was undefined (idd-verify has no find_idd_config, unlike
idd-issue) — now resolves the walked-up config inline (new path first,
legacy fallback).
- $INPUT_SOURCE / $PR_HEAD_SHA were undefined AND unnecessary: tag_verified
runs before restore_working_tree, so HEAD is already the PR head in PR mode
(gh pr checkout done in Step 0.5) and the verified tree in local mode.
Snapshot simplifies to HEAD.
Drift-guard stays 27/27.
Refs #85
[ "$AGGREGATE_VERDICT" != "PASS" ] && { echo "→ verify FAIL — no verified tag"; } # FAIL: no snapshot tag
924
+
# resolve the walked-up IDD config (new path first, legacy fallback — see the Configuration section)
925
+
CONFIG_PATH=$(d="$PWD"; while [ "$d" != / ]; do for f in "$d/.claude/.idd/local.json" "$d/.claude/issue-driven-dev.local.json"; do [ -f "$f" ] && { echo "$f"; break 2; }; done; d=$(dirname "$d"); done)
0 commit comments