fix(cli,sentry): fix --org/--server flags and add Sentry capture to backend errors#507
Merged
zbigniewsobiecki merged 1 commit intodevfrom Feb 23, 2026
Merged
Conversation
…ackend errors The --org and --server CLI flags on all 40+ dashboard commands were silently ignored because parseBaseFlags() was a stub returning undefined. Extract flag values directly from this.argv via a pure extractBaseFlags() helper — zero changes to any subcommand. Also add missing captureException() call in the claude-code backend adapter's catch block, matching the pattern already used in the llmist lifecycle. Backend execution errors (e.g. 404 on PR fetch) were logged locally but never reported to Sentry. Co-Authored-By: Claude Opus 4.6 <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.
Summary
--organd--serverCLI flags: These flags on all 40+ dashboard CLI commands were silently ignored becauseparseBaseFlags()in theDashboardCommandbase class was a stub that always returnedundefined. Added anextractBaseFlags()pure function that parses flag values directly fromthis.argv— zero changes to any subcommand.captureException(), unlike the llmist backend lifecycle which had the correct pattern. Backend execution failures (e.g. 404 on PR fetch due to missing repo access) were invisible to Sentry monitoring.Files changed
src/cli/dashboard/_shared/base.tsextractBaseFlags()helper, wire intoparseBaseFlags()src/backends/adapter.tscaptureException()call in catch blocktests/unit/cli/dashboard/base.test.tstests/unit/cli/dashboard/client.test.tsx-org-contextheadertests/unit/backends/adapter.test.tsTest plan
extractBaseFlagsunit tests: empty argv,--org,--server, both,=syntax, missing value,--stop, mixed flagsTestCommandwith--org/--serverargv passes overrides tocreateDashboardClientx-org-contextheader set whenorgIdpresent in configcaptureExceptioncalled with correct tags/extra when backend throws🤖 Generated with Claude Code