Export package from Pharo image to Tonel files
/plugin marketplace add mumez/smalltalk-dev-plugin/plugin install smalltalk-dev@smalltalk-dev-marketplace# Export Package from Pharo Export a package from the running Pharo image back to Tonel files. ## Usage ## Implementation Uses `export_package` from pharo-interop MCP server. ## When to Use Export is needed when code changes are made **in Pharo** rather than in Tonel files: 1. **Debugger modifications**: Fixed code in Pharo debugger during debugging session 2. **Code generators**: Used Pharo's code generation tools to create new classes/methods 3. **Interactive development**: Made changes directly in Pharo browser 4. **Prototyping**: Experimented with code in Pharo workspace and wa...