fix(skills): mark wizard as user-run-only, add manual setup fallback#18
Merged
fix(skills): mark wizard as user-run-only, add manual setup fallback#18
Conversation
The Sentry wizard CLI requires interactive browser-based login and org/project selection prompts that AI agents cannot handle. Updated all SDK skills that reference the wizard to present it inside a blockquote telling the user to run the command themselves in their terminal. If the user skips the wizard, the agent proceeds with full manual setup. Updated skills: - sentry-nextjs-sdk - sentry-svelte-sdk - sentry-react-native-sdk - sentry-dotnet-sdk - sentry-cocoa-sdk - sentry-sdk-skill-creator (template + philosophy reference) Co-Authored-By: Claude (Anthropic Claude Sonnet 4)
- react-features.md: add interactive-login warning to source maps wizard reference (P1 — agent would hang on browser auth) - cocoa SKILL.md: align 'once it finishes' copy with other skills to point to Verification instead of vague 'continue with configuration' Co-Authored-By: Claude (Anthropic Claude Sonnet 4)
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
The Sentry wizard CLI requires interactive browser-based login and org/project selection prompts that AI agents cannot handle. This updates all SDK skills that reference the wizard to clearly tell the user to run the command themselves.
Changes
Why
The wizard has no supported non-interactive mode — it always opens a browser for OAuth login and prompts for org/project selection. Hidden undocumented flags exist but are incomplete and unreliable. A proper
--non-interactivePR (sentry-wizard#1183) exists but isn't merged yet.