workflow-feature-shipper

workflow-feature-shipper is a skill for Claude Code, Codex from Heyvhuang/ship-faster. It costs 106 tokens per session (931 once invoked), scanned A, original, MIT.

A workflow for delivering one feature from requirements through implementation and verification in a Next.js application. Next.js is a web development framework based on JavaScript and React.

In plain words
What is it for?
Use it to clarify acceptance criteria, create an implementation plan, split work into manageable parts, build the feature, and record verification results.
Why use it?
It turns a feature request into tracked, reviewable work with defined boundaries and evidence that the result was checked.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to clarify acceptance criteria, create an implementation plan, split work into manageable parts, build the feature, and record verification results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/heyvhuang/ship-faster/workflow-feature-shipper
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 Heyvhuang/ship-faster --skill workflow-feature-shipper
Clone the repo
git clone --depth 1 https://github.com/Heyvhuang/ship-faster

Made for: Claude Code, Codex.

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 workflow-feature-shipper

README.md
[![agentmods](https://agentmods.dev/badge/skills/heyvhuang/ship-faster/workflow-feature-shipper/github.svg)](https://agentmods.dev/skills/heyvhuang/ship-faster/workflow-feature-shipper)
Your own site
<a href="https://agentmods.dev/skills/heyvhuang/ship-faster/workflow-feature-shipper"><img src="https://agentmods.dev/badge/skills/heyvhuang/ship-faster/workflow-feature-shipper/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 workflow-feature-shipper

Your own site · 80×15
<a href="https://agentmods.dev/skills/heyvhuang/ship-faster/workflow-feature-shipper"><img src="https://agentmods.dev/badge/skills/heyvhuang/ship-faster/workflow-feature-shipper.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 106 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 931 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.00106 $0.00931
Opus 5 $0.00053 $0.00465
Sonnet 5 $0.00021 $0.00186
Haiku 4.5 $0.00011 $0.00093

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

Security

Grade A, and why

workflow-feature-shipper 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 10d 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.

skills/workflow-feature-shipper/SKILL.md · 55 lines

How it starts

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

Feature Shipper

Turn "I want to build a feature" into a fast execution chain.

Input (Pass Paths Only)

  • feature.md: Requirements description (acceptance criteria + non-goals)
  • repo_root
  • run_dir

Optional flags (recommended inside feature.md)

  • mode: plan-only | execute (default: execute)
  • feature_slug: short slug for artifact naming (default: derived from title + timestamp)
  • quality_bar: demo-ready | functional-only (default: demo-ready for user-facing UI features)

Output (Persisted)

  • evidence/features/<feature_slug>-plan.md (checklist plan: tasks + verification)
  • evidence/parallel/features/<feature_slug>/ (if implementation is split)
  • evidence/features/<feature_slug>-summary.md

Process

  1. Hooks doctor (required check; non-blocking): Run tool-hooks-doctor once at the start of the session to verify skill-evolution hooks are enabled. If missing, offer to install project-level hooks; continue either way.
  2. Read feature.md, normalize into: acceptance criteria, boundaries, risks, rollback.
  3. Prototype UI rule (default): if this feature affects user-facing UI and quality_bar isn’t functional-only, propose 1 “demo moment” (animation/micro-interaction) and add it to acceptance criteria. Must respect prefers-reduced-motion.
  4. Produce 2 options (A: minimal; B: cleaner but slower), default to A. If user cares about “demo feel”, offer A-demo-ready vs A-functional-only as explicit sub-options.
  5. Split into PR-sized small steps (each independently runnable + rollback-able).
  6. Write plan to evidence/features/<feature_slug>-plan.md.
  7. If mode: plan-only, stop here and ask for confirmation before implementing.
  8. Implement (batch execution + checkpoints):
    • UI visual/layout/animation changes → First call tool-design-style-selector to load the project’s design-system.md, then strictly follow it. If tool-ui-ux-pro-max is installed, use it to ground motion/UX constraints (search “animation” + “accessibility”). For complex visual/animation/responsive design, delegate to /gemini frontend UI/UX senior design agent.
    • Business logic/data flow/integration → Implement directly.
    • Default batch rhythm: 3 small tasks per batch → run verification → report and wait for feedback; stop immediately for help when blocked/verification fails.
    • After each batch (or before merge), recommend using review-quality for a conclusive review + verdict.
      • review-quality is the single entry point and will auto-triage: if React/Next.js performance risk is detected, it will also run review-react-best-practices.
      • If the user explicitly wants only a React/Next.js perf audit, run review-react-best-practices directly.
  9. Verification: can run, can build (and existing tests pass).
    • If verification fails (tests/build/runtime error): run tool-systematic-debugging before attempting more fixes.
    • Persist debugging artifacts to:
      • evidence/features/<feature_slug>-debug.md (repro steps, hypotheses, root cause, fix + re-verify)
  10. Write evidence/features/<feature_slug>-summary.md: what was done, how verified, next steps.
  11. Wrap up: Do a skill-evolution Evolution checkpoint (3 questions); if user chooses "want to optimize", run skill-improver based on this run_dir to produce minimal patch suggestions

Read the full file on GitHub · 55 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. 10d ago First seen · 55 lines · 106 tokens per session scan A 2034773e5904

Subscribe to this mod's changes

workflow-feature-shipper is a skill published in the GitHub repository Heyvhuang/ship-faster (339 stars, last pushed 25d ago), licensed MIT. It adds 106 tokens to every session and 931 once invoked, about $0.0005 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-08-30.

Related

Other skills, from other repositories

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

material-ui-tailwind

Integrates Material UI with Tailwind CSS v4 using cascade layers (enableCssLayer, @layer order) and documents Tailwind v3 interoperability (preflight, important, injectFirst, portals). Use when combining MUI with Tailwind utilities, slotProps className, or theme token bridges.

mui/material-ui · 67 tokens

r3f-best-practices

React Three Fiber (R3F) and Poimandres ecosystem best practices. Use when writing, reviewing, or optimizing R3F code. Triggers on tasks involving @react-three/fiber, @react-three/drei, zustand, @react-three/postprocessing, @react-three/rapier, or leva.

zebbern/claude-code-guide · 74 tokens

dashboard-widgets

Author a dashboard widget — a small React component backed by named LangWatchQL queries — from a plain question. Discovers the analytics schema, writes the queries, writes the widget file, saves it, then proves it renders. Use when asked to build, prototype, or iterate on a custom chart widget, or to add a widget…

langwatch/langwatch · 79 tokens

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

fast-typescript-check

Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…

internet-development/www-sacred · 84 tokens