用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tkoenig/agent-skills --skill heroku命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Manage and list agent skills, prompts, and extensions - globally (~/.pi/agent/*) or per-project (.pi/*). List, install, link/unlink, and bootstrap setup. Do NOT automatically symlink or activate anything - always let the user decide.
Use when the user asks to document or update personal notes in their Obsidian Thok vault, especially contact lenses, bikes/Orbea Rise, home notes, or when they mention Obsidian. Provides the vault path and direct Markdown workflow.
Manage persistent macOS software installations with Homebrew Bundle, mise, Mac App Store, and fnox. Use whenever installing, removing, or provisioning a Mac app, CLI, runtime, developer tool, or secret-backed tool.
基于 SOC 职业分类
正在显示 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":"[Truncated]"}}} |
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"