-
-
Notifications
You must be signed in to change notification settings - Fork 1
Add debug step through mode schema support #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Co-authored-by: hawkeyexl <[email protected]>
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
📝 Documentation updates detected! New suggestion: Update debug schema documentation to match actual implementation |
Implements debugging schema properties to enable step-through debugging functionality in Doc Detective.
Changes Made
Config v3 Schema
Added a new
debug
property that accepts:false
(default): disables all debuggingtrue
: allows pausing on breakpoints, waiting for user input before continuing"stepThrough"
: pauses at every step, waiting for user input before continuingStep v3 Schema
Added a new
breakpoint
boolean property to indicate which steps should act as breakpoints when debugging is enabled:true
: execution will pause at this step when debug mode is enabledfalse
(default): step will not act as a breakpointImplementation Details
false
) to maintain backward compatibilitybreakpoint
property is available on all step types since it's defined in the common schema sectionValidation
The implementation includes validation that:
debug
accepts onlyboolean
or the string"stepThrough"
breakpoint
accepts onlyboolean
valuesFixes #125.
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.