بنقرة واحدة
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: