Skip to content

/auto

Run Ship's full production workflow from raw requirement to PR: design, dev, E2E, review, QA, refactor, and handoff. Use only for explicit /ship:auto, auto pipeline requests, or end-to-end delivery.

From plugin
ship
9111 skills3 hooks1 MCP
Install
$ npx -y skills add heliohq/ship --skill auto --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/auto

Context preview

The summary Claude sees to decide when to auto-load this skill.

Run Ship's full production workflow from raw requirement to PR: design, dev, E2E, review, QA, refactor, and handoff. Use only for explicit /ship:auto, auto pipeline requests, or end-to-end delivery.

SKILL.md

auto.SKILL.md
name: auto
version: 0.1.0
description: >
  Run Ship's full production workflow from raw requirement to PR: design, dev,
  E2E, review, QA, refactor, and handoff. Use only for explicit /ship:auto,
  auto pipeline requests, or end-to-end delivery.
allowed-tools:
  - Bash
  - Read
  - Agent

Ship: Auto

Full staged workflow for explicit end-to-end production delivery.

Execution

Your cwd is the user's repo, not the plugin — a bare relative path will not find the orchestrator. Set `SKILL_DIR` to this skill's base directory (announced as "Base directory for this skill" when the skill loaded), then run the shared stage-aware orchestrator:

SKILL_DIR="<base directory from the skill invocation>"
SHIP_ORCH="$SKILL_DIR/../../scripts/auto-orchestrate.sh"
if [ -f .ship/ship-auto.local.md ]; then
  bash "$SHIP_ORCH" resume
else
  bash "$SHIP_ORCH" init '<user requirement goes here>'
fi

Then follow the `/ship:auto` dispatch loop: read `PROMPT_FILE`, dispatch the agent, classify the report card, and call `complete <PHASE>`.

Standalone Skill Boundary

`/ship:auto` is only for full end-to-end runs. For a single phase (design, dev, E2E, review, QA, refactor, handoff), invoke that `/ship:*` skill directly instead of routing through auto.

Ships withship

An agentic development harness for Claude Code & Codex: agent-routed workflows from raw requirement to green PR.

Get the whole plugin, auto-invoked
Stats
91
Stars
7
Forks
Maintained
Maintenance
Shell
Language
MIT
License
2mo ago
Last commit
5mo ago
Created

Repo: heliohq/ship

Other skills on ship.

arch-design
Auto-invokedSkill

arch-design

System-design thinking before any doc or code: goals/non-goals, back-of-envelope numbers, components and contracts, failure modes, operability, security,…

@heliohq@heliohqView Skill
design
Auto-invokedSkill

design

Plan implementation before coding: investigate the repo, write spec and plan, and validate with a peer. Use for "plan", "design approach", "scope", or any…

@heliohq@heliohqView Skill
dev
Auto-invokedSkill

dev

Implement from a spec or plan: extract stories, build in safe waves, test, commit, and get peer review per story. Use for "implement", "build/code this plan",…

@heliohq@heliohqView Skill
e2e
Auto-invokedSkill

e2e

Add durable end-to-end tests for user/API-visible behavior. Detect or scaffold the E2E framework, write tests, run the app, and store evidence. Use for E2E,…

@heliohq@heliohqView Skill
handoff
Auto-invokedSkill

handoff

Ship completed work: verify locally, commit related changes, push, create or update the PR, watch CI/reviews, and fix until merge-ready or escalated. Use for…

@heliohq@heliohqView Skill
qa
Auto-invokedSkill

qa

Runtime QA of a change: start the app, test acceptance criteria and edge cases, and report evidence. Use for "test this", "QA", "does it work", exploratory…

@heliohq@heliohqView Skill