Claude-skill-registry heroku

Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/heroku" ~/.claude/skills/majiayu000-claude-skill-registry-heroku && rm -rf "$T"
manifest: skills/data/heroku/SKILL.md
source content

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