gitextract_dy16cnbs/ ├── .devcontainer/ │ ├── devcontainer.json │ └── dockerfile ├── .example.env ├── .gitignore ├── LICENSE ├── Makefile ├── dist/ │ └── smol_dev-0.0.3-py3-none-any.whl ├── examples/ │ └── v1_pong_game/ │ ├── ai.js │ ├── index.html │ ├── main.js │ ├── shared_deps.md │ └── style.css ├── main.py ├── prompt.md ├── pyproject.toml ├── readme.md ├── smol_dev/ │ ├── __init__.py │ ├── api.py │ ├── main.py │ ├── prompts.py │ └── utils.py └── v0/ ├── code2prompt/ │ ├── code2prompt-gpt3.md │ └── code2prompt-gpt4.md ├── code2prompt.py ├── code2prompt2code/ │ ├── background.js │ ├── content_script.js │ ├── manifest.json │ ├── popup.html │ ├── popup.js │ ├── shared_dependencies.md │ └── styles.css ├── constants.py ├── debugger.py ├── debugger_no_modal.py ├── exampleChromeExtension/ │ ├── background.js │ ├── content_script.js │ ├── manifest.json │ ├── popup.html │ ├── popup.js │ ├── prompt used for this extension.md │ ├── shared_dependencies.md │ └── styles.css ├── main.py ├── main_no_modal.py ├── readme.md ├── static/ │ └── readme.md ├── utils.py └── v0_readme.md