Revert claude-review to single-step + add Anthropic API key preflight#14
Merged
Conversation
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Two changes, both following from the July 2026 debugging incident where the
claude-reviewfailures turned out to be the Anthropic API rejecting the key ($0 cost /is_error), not a workflow-config problem.1. Revert PR #12 / #13 back to the single-step config
Restores the
claude-reviewjob to its pre-#12 form: oneclaude-code-actioncall (track_progressfor the rich comment +--json-schemafor the gate). The two-step rebuild was chasing a misdiagnosis and doubled the Claude cost for no benefit.2. Add an Anthropic key preflight (the detection mechanism)
Before the costly review runs, a minimal 1-token Anthropic call checks that the key/account can actually make requests:
ANTHROPIC_API_KEYis invalid/revoked — rotate it.This replaces the opaque
did not return structured_outputfailure with a clear, actionable message pointing at the real cause.🤖 Generated with Claude Code