qshipmaster

qshipmaster is a skill for Claude Code, Codex from 3awny/qship. It costs 240 tokens per session (19,019 once invoked), scanned D, original, MIT.

An orchestrator for shipping a qship epic, a larger piece of work made up of related tickets. It groups dependent tickets into waves, runs their work in parallel, merges results, and prepares final pull requests.

In plain words
What is it for?
Use it to plan dependencies, execute tickets across one or more repositories, run wave-level checks and reviews, and create the final pull requests.
Why use it?
It coordinates multi-ticket delivery and checks each wave before the whole epic is delivered.

Skill for Claude CodeCodex

Written for Claude Code and Codex: disable-model-invocation in frontmatter, but also runs codex exec. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

Part of the qship plugin — 22 skills, 1 agent, 1 hook shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/3awny/qship/qshipmaster
Any agent
npx skills add 3awny/qship --skill qshipmaster
Clone the repo
git clone --depth 1 https://github.com/3awny/qship

Made for: Claude Code, Codex.

Or install qship, the plugin that ships this one along with the rest of its 22 skills, 1 agent, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for qshipmaster

README.md
[![agentmods](https://agentmods.dev/badge/skills/3awny/qship/qshipmaster.svg)](https://agentmods.dev/skills/3awny/qship/qshipmaster)
Your own site
<a href="https://agentmods.dev/skills/3awny/qship/qshipmaster"><img src="https://agentmods.dev/badge/skills/3awny/qship/qshipmaster.svg" alt="Measured on agentmods" height="20"></a>
Per session 240 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 19,019 The whole file, excluding the scripts and references it only reads on demand.
Security scan D 3 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00240 $0.19019
Opus 5 $0.00120 $0.09510
Sonnet 5 $0.00048 $0.03804
Haiku 4.5 $0.00024 $0.01902

Measured 5d ago against content hash a99254619e2a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade D, and why

qshipmaster scanned grade D with 3 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

The scan reads SKILL.md. This mod also ships 9 executable files (hooks/qshipmaster-deliver.sh, hooks/qshipmaster-learn.sh, hooks/qshipmaster-merge-wave.sh, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reads agent configuration directoriesmediumAgent snooping

.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.

- `~/.claude/settings.json` or any settings file (user-owned).

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf {{STATE_ROOT}}/epic-{{JIRA_PROJECT_KEY}}-EX01

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

| I1 | Wave N+1 MUST NOT spawn workers until Wave N's `wave-N-phase23-evidence.md` exists AND contains all 4 marker words (qsimplify, qcheck, qbug, qbcheck) AND contains a `## Phase 3 — /qe2etest evidence` section with a
templates/skills/qshipmaster/SKILL.md · 764 lines

How it starts

The opening of the file, as written. The whole thing — 764 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Issue source — tracker = {{TRACKER_TYPE}} (chosen at onboarding). Follow the issue-source protocol in $SKILLS_ROOT/qship/references/tracker-contract.md — it defines, per tracker, how to FETCH / CHILDREN / CREATE / TRANSITION / READ-TRD. For none: treat $ARGUMENTS as the spec (pasted text or a local file path) and skip all tracker MCP calls.

qshipmaster — Epic-level qship orchestrator

qship ships one ticket. qshipmaster ships an Epic.

This skill codifies the manual layer above qship: dependency-wave planning, per-wave parallel ticket execution, wave-level merging into a consolidated epic branch, wave-level Phase 2 review, and ONE consolidated PR per repo at the end.

Multi-repo contract: The set of repos this orchestrator coordinates across is $SKILLS_ROOT/qship/repos.json. The "one PR per repo" pattern below means one PR per entry in that list (or a subset of entries actually touched by the epic). Single-repo users see exactly one PR per epic. Multi-service monorepo users see N PRs, one per affected repo. Resolve the list at orchestrator startup:

ALL_REPOS=$(jq -r '.[].name' "$SKILLS_ROOT/qship/repos.json")

⛔ When this skill applies

Invoke qshipmaster when:

  • The argument is a Jira Epic (issuetype.name == "Epic").
  • You want fully unattended end-to-end Epic delivery.

Do NOT invoke for:

  • Standalone tickets (use qship directly).
  • A single Story under an Epic (use qship directly — the parent SKILL.md §Epic-Mode hooks will keep the worker from opening a per-ticket PR).
  • Re-running specific stages on an already-shipped Epic — read state.json directly and call the helper scripts manually.

⛔ Composition philosophy — DO NOT duplicate qship

qshipmaster is a thin orchestrator. It must:

  1. Compose existing primitives, never re-implement them:
    • qship-persist.sh runs the per-ticket pipeline (don't reinvent it).
    • qship-compute-context.sh classifies the diff (don't reinvent it).
    • require-phase3-evidence.sh / require-pipeline-complete.sh enforce gates (don't bypass them).
    • qshipcheck decides per-ticket completion (don't second-guess it).
    • code-review:code-review is the final-PR review skill (don't reinvent it).

Read the full file on GitHub · 764 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 764 lines · 240 tokens per session scan D a99254619e2a

Subscribe to this mod's changes

qshipmaster is a skill published in the GitHub repository 3awny/qship (2 stars, last pushed 2mo ago), licensed MIT. It adds 240 tokens to every session and 19,019 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it D with 3 findings (reads agent configuration directories, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

remove-ai-marks

Strip multi-vendor AI provenance from owned files: hidden Unicode (Layer A), statistical sampling watermarks via rewrite (Layer B — always offer), and C2PA/EXIF/XMP/container metadata on PNG/JPEG/WebP/SVG/PDF/DOCX/ODT/HTML/MD. Covers Claude, Gemini/SynthID-class, OpenAI provenance surfaces, and open-LLM sampling…

ShadowAqueduct/watermark-remover · 135 tokens

clean-user-facing-text

Audit and finalize authorized natural-language text meant for readers: strip suspicious invisible Unicode, then rewrite prose while keeping facts, meaning, and the writer's voice. Use when the user asks to clean, humanize, polish, or finalize articles, manuscripts, reports, documentation, emails, product copy, UI…

ShadowAqueduct/watermark-remover · 121 tokens

oracle

Author an IMPL-BLIND spec-conformance oracle for an acceptance criterion the policy worklist (clad oracle --required) demands — an empty worklist means don't author unless the user explicitly asks. YOU spawn a blind sub-agent from a spec-only brief, then record it. Activate only when the connected project contains…

qwerfunch/cladding · 82 tokens

reviewer

Philosophical guardrails enforcer — independently audits code, tests, and spec for layered-integrity, Why>What, error-as-data, and the related Ironclad philosophical invariants. Activate only when the connected project contains spec.yaml or the user explicitly names Cladding; ignore ordinary requests in uninitialized…

qwerfunch/cladding · 68 tokens

doctor

Diagnose Cladding runtime health — Claude Code hook liveness and version, CI package pinning, lifecycle governance, and sentinel-miss frequency by phase × cause × fallback. Use when hooks may be silent, CI may float across Cladding releases, scan or run results look thinner than expected, or before tuning the host…

qwerfunch/cladding · 93 tokens

run

Run cladding's autonomous loop — iterate ready features, dispatch the developer + reviewer personas through the active host adapter, run L1 gates, halt on HUMANREQUIRED or transport failure. Use only when the user explicitly asks for autonomous progress; the loop will modify files. Activate only when the connected…

qwerfunch/cladding · 78 tokens