一键导入
release
Cut a new release by triggering the Release workflow via GitHub Actions workflow dispatch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cut a new release by triggering the Release workflow via GitHub Actions workflow dispatch.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Spawn external coding agents via the Agent Client Protocol (ACP)
Build interactive apps, dashboards, calculators, games, trackers, tools, landing pages, and data visualizations with Preact/TypeScript/CSS
Drive a specific named macOS app via raw input bypassing the Accessibility tree
Control the macOS desktop
Manage contacts, communication channels, access control, and invite links
Write, draft, or compose long-form text (blog posts, articles, essays, reports, guides)
| name | release |
| description | Cut a new release by triggering the Release workflow via GitHub Actions workflow dispatch. |
Cut a new release by triggering the Release workflow via GitHub Actions workflow dispatch.
The user may pass $ARGUMENTS as the bump type: patch, minor, or major. If not provided, default to patch.
git checkout main && git pull
If the user provided $ARGUMENTS, treat it as the bump type (patch, minor, or major). Otherwise default to patch.
Validate + show what you're about to do and ask for confirmation before proceeding:
BUMP_TYPE="${ARGUMENTS:-patch}"
case "$BUMP_TYPE" in
patch|minor|major) ;;
*) echo "Invalid bump type: $BUMP_TYPE (expected patch|minor|major)"; exit 1 ;;
esac
echo "About to trigger a $BUMP_TYPE release bump"
gh workflow run release.yml \
--repo vellum-ai/vellum-assistant \
--ref main \
--field bump=<patch|minor|major>
This triggers the unified Release workflow which automatically handles:
vellum-ai/vellum-assistantvellum-assistant-platform dependencygh run list --repo vellum-ai/vellum-assistant --workflow="Release" --limit 1
Confirm the workflow was triggered.
Output: