원클릭으로
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: