shipwright-pipeline

shipwright-pipeline is a skill for Claude Code from jeremylongshore/tons-of-skills-marketplace. It costs 80 tokens per session (770 once invoked), scanned A, original, MIT.

An autonomous app-building workflow that turns a plain-English description into a tested application ready for deployment. It supports several web stacks and runs through stages such as architecture, implementation, testing, integration, and validation.

In plain words
What is it for?
Scaffolding and building full-stack applications with Next.js and Supabase, Next.js and Prisma, SvelteKit, or Astro.
Why use it?
It reduces the manual work of starting a project, connecting its parts, and preparing it for testing and deployment. It also helps choose a suitable stack when the requirements are known but the technology is not.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions Claude Code.

Part of the shipwright plugin — 1 skill, 4 commands shipped together

Good fit Scaffolding and building full-stack applications with Next.js and Supabase, Next.js and Prisma, SvelteKit, or Astro.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline
About the project

Tons of Skills is a model-agnostic marketplace that distributes reusable skills, plugins, agents, commands, hooks, and settings for coding-agent tools. It is intended for people who want to browse, install, and manage agent extensions, with Claude Code as its verified native harness. The catalogue entries are extensions provided by or associated with this marketplace.

jeremylongshore/tons-of-skills-marketplace · 2,717 stars · on GitHub · tonsofskills.com

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.

Any agent
npx skills add jeremylongshore/tons-of-skills-marketplace --skill shipwright-pipeline
Clone the repo
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplace

Made for: Claude Code.

Or install shipwright, the plugin that ships this one along with the rest of its 1 skill, 4 commands.

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 shipwright-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline/github.svg)](https://agentmods.dev/skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline)
Your own site
<a href="https://agentmods.dev/skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline"><img src="https://agentmods.dev/badge/skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shipwright-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline"><img src="https://agentmods.dev/badge/skills/jeremylongshore/tons-of-skills-marketplace/shipwright-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 80 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 770 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00080 $0.00770
Opus 5 $0.00040 $0.00385
Sonnet 5 $0.00016 $0.00154
Haiku 4.5 $0.00008 $0.00077

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

Security

Grade A, and why

shipwright-pipeline scanned grade A with 0 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 9d ago.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/ai-agency/shipwright/skills/shipwright-pipeline/SKILL.md · 88 lines

How it starts

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

Shipwright Pipeline

Overview

Shipwright converts a plain-English app description into a fully built, tested, and deployment-ready application. It delegates execution to product-agent, an autonomous 9-phase build engine available on PyPI.

Prerequisites

  • Python 3.10+ available in PATH.
  • product-agent installed (pip install product-agent).
  • Node.js 18+ for JavaScript/TypeScript stacks.

Supported Stacks

  • Next.js + Supabase — Full-stack with auth, database, and edge functions
  • Next.js + Prisma — Full-stack with type-safe ORM
  • SvelteKit — Lightweight full-stack with Svelte
  • Astro — Content-focused static and hybrid sites

Instructions

  1. Gather the app description from the user. Ask clarifying questions if the description is vague.
  2. Confirm the target stack. If none specified, recommend based on the app type:
    • Data-heavy with auth: Next.js + Supabase
    • API-first with complex models: Next.js + Prisma
    • Lightweight interactive: SvelteKit
    • Content or marketing site: Astro
  3. Run product-agent with the app description and selected stack.
  4. Monitor the 9-phase pipeline: Intake, Architecture, Scaffold, Implement, Test, Integrate, Polish, Validate, Ship.
  5. Report results to the user including test summary and any warnings.

Output

  • A complete, buildable project directory with all source code, tests, and configuration.
  • A test report summarizing pass/fail counts.
  • Build verification output confirming the project compiles and starts.

Error Handling

  • If product-agent is not installed, prompt the user to install it with pip install product-agent.
  • If a phase fails, report the phase name, error message, and suggested fix.
  • If the selected stack is not supported, list available stacks and ask the user to choose.

Examples

Build a SaaS dashboard:

/shipwright-build Build a real-time analytics dashboard with user auth, team workspaces, and Stripe billing. Use Next.js + Supabase.

Add features to an existing project:

Read the full file on GitHub · 88 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 88 lines · 80 tokens per session scan A fe2da930ca2a

Subscribe to this mod's changes

shipwright-pipeline is a skill published in the GitHub repository jeremylongshore/tons-of-skills-marketplace (2,717 stars, last pushed today), licensed MIT. It adds 80 tokens to every session and 770 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.