workbench
Installation
SKILL.md
Workbench
Develop and iterate on code inside a persistent Docker container with no host access.
Usage
/workbench build a python script that reads a CSV and outputs summary stats
/workbench write a script that fetches data from an API and processes it
/workbench create an express server prototype
/workbench # Uses recent conversation context
Security Model
Why Docker: Running python script.py on the host gives the script full access to the user's filesystem, even if the script file lives in /tmp. Docker containers isolate execution so the host filesystem doesn't exist inside the container.