Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications.
Scanned 2/12/2026
Install to Claude Code
npx -y skills add majiayu000/claude-skill-registry --skill heroku --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Heroku?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/majiayu000-heroku)More formats (shields.io, HTML) on the badges page.
---
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
```bash
export HEROKU_API_KEY="xxxxxxxxxx"
```
## CLI Commands
```bash
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
```bash
curl "https://api.heroku.com/apps" \
-H "Authorization: Bearer $HEROKU_API_KEY" \
-H "Accept: application/vnd.heroku+json; version=3"
```
## API - Restart Dynos
```bash
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
- Dashboard: https://dashboard.heroku.com
- Docs: https://devcenter.heroku.com/articles/platform-api-reference
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Playbook for creating and editing uCoz landing pages via MCP tools (`templates_tool`, `ftp_tool`, `modules_tool`). Use for tasks such as: "build a landing page", "update the homepage as a landing page", "create a promo page on the homepage", "add a lead form / menu / SEO to the homepage". Homepage: `page_list`, `page_get`; first publish — `page_update` with full `page_tmpl`; HTML edits after generation — `patch_template` (module_id=2, template_id=1), not `update_template`. Activate the mail f...