exp: proof of concept for VSCode debug server #5952
                
     Draft
            
            
          
  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
This PR adds a Debug Adapter Protocol (DAP) server to marimo, enabling debugging capabilities through VS Code and other DAP-compatible debuggers.
Usage
The debug server automatically starts when running
marimo editand listens on a dynamically assigned port. VS Code can connect using:{ "version": "0.2.0", "configurations": [ { "name": "Python Debugger: Remote Attach", "type": "debugpy", "request": "attach", "connect": { "host": "localhost", "port": 5678 }, "pathMappings": [ { "localRoot": "${workspaceFolder}", "remoteRoot": "." } ] } ] }Current Status
✅ Working:
🔄 Next Steps:
Alternative Solution
This PR implements Solution 1 (DAP protocol). There's also Solution 2 which uses
debugpyout of the box by temporarily disabling marimo's stack trace rewriting feature. While easier to implement, Solution 2 has limitations:Solution 1 provides the true "native" debugging experience but requires more development time to implement full DAP protocol features.