关于
`suede-ship` is a comprehensive, multi-agent DAG for orchestrating complex, research-heavy code changes across multiple files, using a structured pipeline that includes parallel build and adversarial review. It is designed for significant changes requiring deep analysis and halts automatically on blocking hazards or conflicts. Use this skill for major, cross-cutting repository changes, not for simple, independent tasks or reviews-only.
快速安装
Claude Code
推荐npx skills add JasonColapietro/suede-creator-skills -a claude-code/plugin add https://github.com/JasonColapietro/suede-creator-skillsgit clone https://github.com/JasonColapietro/suede-creator-skills.git ~/.claude/skills/suede-ship在 Claude Code 中复制并粘贴此命令以安装该技能
技能文档
Suede Ship
The canonical Suede DAG. One prompt in, one shipped change out, with about fifty agents in between arranged as a graph rather than a chain.
Invoke the workflow bundled at skills/suede-ship/workflows/suede-ship.js. If
you keep a personal copy, ~/.claude/workflows/suede-ship.js works the same way.
Choose this or the fleet first
suede-ship is the surgical instrument and it is the expensive one. Roughly
fifty agents (about fifty-four when deploys is true), research-heavy and
front-loaded, billed to the Claude limit.
If the job is actually high-volume, well-specified, and splits into independent
worker-sized tasks (content batches, test generation, bulk refactors), say so
and offer suede-codex-fleet instead. That runs
on the OpenAI subscription and costs nothing against the Claude limit. Brute
force beats surgery when the work is genuinely parallel and shallow.
Parse the invocation
The argument is free-form. Extract:
- repo — required. An absolute path. Resolve a bare name against
~/code/<name>. If no repo is named and the cwd is inside a git repo, use that repo's root. - scope — required. What to change, in the user's own words, kept verbatim where possible. Do not compress it into a slogan; the planner decomposes it into lanes and the detail is what makes lanes separable.
- deploys — true if the repo has a
vercel.json, a platform project link, or a known live URL. Check rather than assume. - liveUrl — the production URL if you know it or can read it from
vercel.json,package.json, or the README. Optional; the release verifier discovers it otherwise. - vault — optional absolute path to an external decision store (a synced notes vault, an ADR archive, a handoff directory). Omitted by default. When present, the prior-decisions lens reads it as context, never as source truth.
If scope is missing, ask for it. Do not invent a change to a production repo. This workflow writes code.
State the cost before launching
This is Claude-model fan-out against the weekly limit. Say so in one line before the call, so the spend is a decision rather than a surprise.
Launch
Workflow({
scriptPath: "skills/suede-ship/workflows/suede-ship.js",
args: { repo, scope, deploys, liveUrl, vault }
})
Pass args as a real object. If the harness stringifies it the script recovers,
but an object is correct.
The graph
Nine phases, parallel wherever the edges are not real:
- Scout — fetch origin, dirty files, worktrees, deploy-time landmines. Manifest only.
- Research — multi-modal sweep. Each lens searches a different way and is blind
to the others, because one angle never finds everything. Every claim carries a
file:line, sha, PR, or doc url. - Gaps — a completeness critic names what went unread, then one bounded fill round.
- Plan — the lane map, with explicit file ownership. High effort by design.
- Build — disjoint lanes, each pipelined straight into its own review.
- Refute — adversarial verifiers, refute-by-default, majority kills the finding.
- Gate — a real barrier: typecheck, build, and tests on the integrated worktree.
- Release — adversarial release verification: config drift, public surface, irreversibility, live baseline.
- Handoff — the evidence record: changed files, commands run, verification, caveats.
While it runs
Do not predict results or narrate progress you cannot see. The workflow returns a
notification when it completes; /workflows shows live progress.
When it returns
Report faithfully, including the failure shapes:
halted: true, reason: "blocking hazard at scout"— a real secret in a tracked file, or a live process holding a worktree this run would touch. Name the hazard.halted: true, reason: "lane collision"— the lane map claimed a protected dirty file, gave one file two owners, or hit a file held by a live sibling worktree. Report the collisions. The fix is a re-plan, not a retry.- Completed — lead with
shipVerdictandgatePassed, then confirmed findings, thencrossWorktreeoverlap (files this work will need rebasing against other branches), thendroppedConstraints(what the skeptic rejected) andunread.
Naming what went unread is most of the honesty.
Verdict is advisory
The shipVerdict changes what you report, never what you do. The single exception
is live production exposure the verifier observed independent of this change, such
as a real secret or an unauthenticated 200 that should not exist. That goes to the
user immediately.
Do not claim deployed, verified live, or released. This workflow only reads
production. Those states require a deploy that has not happened.
Iterating
Edit the script and re-invoke with the same scriptPath. Add
resumeFromRunId: "<run id>" to replay unchanged agents from cache. Changing an
agent's prompt or schema re-runs that agent and everything downstream of it.
GitHub 仓库
常见问题
什么是 suede-ship Skill?
suede-ship 是一个 Claude Skill,作者为 JasonColapietro。Skill 将 Claude 按需加载的说明和资源打包,让 Claude 无需额外提示即可执行与 suede-ship 相关的任务。
如何安装 suede-ship?
使用本页的安装命令:将 suede-ship 作为插件添加到 Claude Code,或将其仓库克隆到 skills 目录,然后重启 Claude 以加载该 Skill。
suede-ship 属于哪个分类?
suede-ship 属于元分类。
suede-ship 可以免费使用吗?
可以。suede-ship 已收录在 AIMCP,可免费安装。
相关推荐技能
Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。
这个Claude Skill为开发者提供完整的Polymarket预测市场开发支持,涵盖API调用、交易执行和市场数据分析。关键特性包括实时WebSocket数据流,可监控实时交易、订单和市场动态。开发者可用它构建预测市场应用、实施交易策略并集成实时市场预测功能。
该Skill帮助开发者创建OpenCode插件,用于接入命令、文件、LSP等25+种事件。它提供了插件结构、事件API规范和JavaScript/TypeScript实现模式,适合需要拦截操作、扩展功能或自定义事件处理的场景。开发者可通过它快速构建响应式模块来增强OpenCode AI助手的能力。
SGLang是一个专为LLM设计的高性能推理框架,特别适用于需要结构化输出的场景。它通过RadixAttention前缀缓存技术,在处理JSON、正则表达式、工具调用等具有重复前缀的复杂工作流时,能实现极速生成。如果你正在构建智能体或多轮对话系统,并追求远超vLLM的推理性能,SGLang是理想选择。
