Interactive shell improvements and runtime breakpoints#109
Merged
mgonzs13 merged 4 commits intouleroboticsgroup:mainfrom Apr 9, 2026
Merged
Interactive shell improvements and runtime breakpoints#109mgonzs13 merged 4 commits intouleroboticsgroup:mainfrom
mgonzs13 merged 4 commits intouleroboticsgroup:mainfrom
Conversation
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.
This PR improves the runtime debugging experience in three areas.
First, the interactive shell blackboard proxy was extended with
keys(),items(),values(), and__iter__(). This makes the proxy behave much more like the underlying blackboard container and improves usability inside the shell for inspection, iteration, and quick debugging workflows.Second, the interactive shell theme was reworked. The qtconsole colors were updated to better match the editor palette and improve readability of prompts, output, selections, popups, and general shell content.
Third, runtime breakpoints were added to the editor. In runtime mode, users can now set or remove a breakpoint directly from the state context menu. States with an active breakpoint are marked visually in the graph, and execution pauses automatically before entering the marked state.