원클릭으로
heroku
Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Manage Heroku apps, dynos, and add-ons via CLI and API. Deploy and scale applications.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Manage and inspect UniFi Network controllers using uvx unifi-cli. Use for clients, network devices, switch ports, networks, events, controller health/info, and safe UniFi troubleshooting.
Query previous pi sessions to retrieve context, decisions, code changes, or other information. Use when you need to look up what happened in a parent session or any other session file.
Debug CSS override issues in Tailwind/DaisyUI/component-library projects. Use when styles do not apply as expected, active/hover states look wrong, `!important` does not win, `:where()` specificity is involved, or Tailwind `@layer`/generated CSS order may affect the cascade.
Create BambuStudio-compatible 3MF files from STL models with embedded print settings. Supports presets for common scenarios (solid, fast, fine, strong) and per-setting overrides.
Create and render OpenSCAD 3D models. Generate preview images from multiple angles, extract customizable parameters, validate syntax, and export STL files for 3D printing platforms like MakerWorld.
Use when the task asks for a visually strong landing page, website, app, prototype, demo, or game UI. This skill enforces restrained composition, image-led hierarchy, cohesive content structure, and tasteful motion while avoiding generic cards, weak branding, and UI clutter.
| 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"]}}} |
Platform as a Service.
export HEROKU_API_KEY="xxxxxxxxxx"
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
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"