skills$openclaw/heroku
mrgoodb2.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

nameheroku
descriptionManage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/heroku
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/heroku
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains heroku in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
265 B
SKILL.md
993 B
SKILL.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"
curl -X DELETE "https://api.heroku.com/apps/{app}/dynos" \
  -H "Authorization: Bearer $HEROKU_API_KEY" \
  -H "Accept: application/vnd.heroku+json; version=3"
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.