name: custom-env-app-runner description: Run a user-provided Python app that requires a colocated .env file (.env, app.py, requirements.txt). Use when asked to install dependencies and execute this app.py with dotenv-loaded USER_ID/USER_PW.
custom-env-app-runner
- Keep
.envin the same directory asapp.py. - Use local virtual environment
.venvin this skill directory. - Install dependencies with:
.venv/bin/pip install -r requirements.txt
- Run app only when user explicitly requests:
cd <skill_dir> && .venv/bin/python app.py
- Never print secret values from
.env.