Autonomous deployment skill for the Jelly-legs AI team. Use when agents need to deploy code to GitHub Pages, trigger GitHub Actions workflows, or release updates without human approval. Handles git operations, workflow triggers, and deployment verification.
Autonomous deployment system for the 12-agent factory. No human approval required.
# Stage and commit changes
git add .
git commit -m "🚀 Deploy: <description>"
git push origin main
# Verify GitHub Pages deployment
gh api repos/jelly-legs-ai/Jelly-legs-unsteady-workshop/pages --jq '.html_url, .status'
# Trigger specific workflow
gh workflow run <workflow-name> --repo jelly-legs-ai/Jelly-legs-unsteady-workshop
# Monitor workflow run
gh run list --repo jelly-legs-ai/Jelly-legs-unsteady-workshop --limit 5
gh run watch <run-id> --repo jelly-legs-ai/Jelly-legs-unsteady-workshop
# Check PR status
gh pr checks <pr-number> --repo jelly-legs-ai/Jelly-legs-unsteady-workshop
# Merge if checks pass
gh pr merge <pr-number> --squash --delete-branch --repo jelly-legs-ai/Jelly-legs-unsteady-workshop
Before deploying:
After deploying:
If deployment fails:
git revert HEAD
git push origin main