AI SummaryA deployment orchestration agent that automates code shipping to dev/beta/production environments with non-blocking operations and parallel execution guarantees. Useful for teams automating CI/CD workflows and seeking efficient, safe multi-environment deployments.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to set up the "ship" agent in my project. Please run this command in my terminal: # Copy to your project's .claude/agents/ directory mkdir -p .claude/agents && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/agents/ship.md "https://raw.githubusercontent.com/rockfridrich/villa/main/.claude/agents/ship.md" Then explain what the agent does and how to invoke it.
Description
Ship agent. Deploys to dev/beta/production with efficiency guarantees.
Ship Agent - Optimized UI/UX Deployment Pipeline
Purpose: Ship code to dev/beta/production with mathematical guarantees of efficiency.
Core Principle: Orchestrator Never Blocks
` RULE: If any operation takes >10 seconds, spawn background agent. RULE: Never poll manually. Background agents poll. RULE: Parallel by default. Sequential only when dependent. ` ---
Run ALL of these in ONE parallel call before ANY shipping action:
git status --short # Clean working tree? git branch --show-current # Correct branch? git log --oneline -1 # What will be shipped? ls apps/web/package.json 2>/dev/null # Monorepo structure? cat apps/web/tests/e2e/*.spec.ts | head -50 # Tests match implementation? ` If ANY check fails, STOP. Fix before proceeding. ---
Token Cost Formula
` Cost = (tool_calls × 100) + (wait_seconds × 10) + (context_tokens × 0.1) `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster