2.4k★by mrgoodb
heroku – OpenClaw Skill
heroku is an OpenClaw Skills integration for data analytics workflows. Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications.
2.4k stars5.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics
Skill Snapshot
| name | heroku |
| description | Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/heroku |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/heroku |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
265 BSKILL.md
993 BSKILL.md
name: heroku description: Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications. metadata: {"clawdbot":{"emoji":"🟣","requires":{"env":["HEROKU_API_KEY"]}}}
Heroku
Platform as a Service.
Environment
export HEROKU_API_KEY="xxxxxxxxxx"
CLI Commands
heroku apps
heroku create app-name
heroku logs --tail -a app-name
heroku ps -a app-name
heroku ps:scale web=1 -a app-name
heroku config -a app-name
heroku config:set KEY=value -a app-name
API - List Apps
curl "https://api.heroku.com/apps" \
-H "Authorization: Bearer $HEROKU_API_KEY" \
-H "Accept: application/vnd.heroku+json; version=3"
API - Restart Dynos
curl -X DELETE "https://api.heroku.com/apps/{app}/dynos" \
-H "Authorization: Bearer $HEROKU_API_KEY" \
-H "Accept: application/vnd.heroku+json; version=3"
Links
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install heroku?
Run openclaw add @mrgoodb/heroku in your terminal. This installs heroku into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/heroku. Review commits and README documentation before installing.
