adr
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status /…
Run the release flow a project declares in rules/git-workflow-project.md § Deploy Workflow: its git merge steps, and — only where § Run Steps is execute — its scripts, each after its own approval. Use when: the user asks to release, deploy, promote a branch, or run the project's
$ npx -y skills add sd0xdev/sd0x-harness --skill deploy-flow --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/deploy-flowContext preview
The summary Claude sees to decide when to auto-load this skill.
Run the release flow a project declares in rules/git-workflow-project.md § Deploy Workflow: its git merge steps, and — only where § Run Steps is execute — its scripts, each after its own approval. Use when: the user asks to release, deploy, promote a branch, or run the project's
name: deploy-flow description: "Run the release flow a project declares in rules/git-workflow-project.md § Deploy Workflow: its git merge steps, and — only where § Run Steps is execute — its scripts, each after its own approval. Use when: the user asks to release, deploy, promote a branch, or run the project's deploy workflow. Not for: pushing (use /push-ci), committing (use /smart-commit), stacked PRs (use /epic-merge or /gh-stack)." allowed-tools: Bash(/bin/bash:*), Bash(git:*), Read, Grep, Glob, AskUserQuestion
**Read first**: `@skills/push-ci/references/authorization-contract.md` before executing a declared merge or run step — § Efficacy Boundary for what the per-step approval authorizes, § Push safety for any step that pushes. If that Read fails, stop and report it; execute no step.
Run the steps a project declares for its own release — nothing it does not declare, and nothing without a per-step approval.
⚠️ This skill is the Anchor Register #4 workflow for a project's declared deploy steps. It may run ⚠️ git switch + git merge for a declared merge step, and — only where the project sets ⚠️ Run Steps: execute — a declared script, each after an AskUserQuestion approval naming that step. ⚠️ It never runs git push. A declared script may push on its own; that is the run-script risk ⚠️ below, which the project opted into and every execute question states. ⚠️ An approval covers the one step it names, at the values it names — both OIDs for a merge, the ⚠️ HEAD commit and the script's blob hash for a run; nothing else.
| Scenario | Use instead | |----------|-------------| | Push a branch | `/push-ci` | | Commit changes | `/smart-commit --execute` | | Merge a stacked PR chain | `/epic-merge`, `/gh-stack` | | The project declares no `## Deploy Workflow` | Say so, and offer to scaffold one with `/install-rules --customize git-workflow` |
Every git call and every script run goes through one checked-in script, so what a step's approval names is exactly what runs.
**Pin the helper once, before any step.** A merge switches branches, and the branch it switches to may track its own copy of the helper; re-locating it for the next step would run that copy before the next approval. So Phase 0 resolves the helper a single time and copies it to a private file, and **every later fence runs that copy by its literal path**: each fence is its own shell, so nothing carries over except the path you paste.
REPO_ROOT=$(git rev-parse --show-toplevel) || exit 1
SRC="$REPO_ROOT/.claude/scripts/deploy-flow.sh"
[ -r "$SRC" ] || SRC="$REPO_ROOT/skills/deploy-flow/scripts/deploy-flow.sh"
[ -r "$SRC" ] || SRC="${CLAUDE_PLUGIN_ROOT:-/nonexistent}/skills/deploy-flow/scripts/deploy-flow.sh"
[ -r "$SRC" ] || { echo "deploy-flow.sh not found — run /install-scripts --skill deploy-flow" >&2; exit 1; }
DF=$(mktemp "${TMPDIR:-/tmp}/deploy-flow.XXXXXX") && cat -- "$SRC" > "$DF" && echo "DF=$DF"
/bin/bash -p -- "$DF" clean --root "$REPO_ROOT" && /bin/bash -p -- "$DF" parse --root "$REPO_ROOT"Every later call is `/bin/bash -p -- '<the DF path printed above>' <subcommand> --root '<repo root>' …` — never the locator again. Remove the copy when the flow ends, whatever its outcome.
| Subcommand | Does | Exit | |------------|------|------| | `parse` | Prints the declared steps (`merge⇥src⇥tgt⇥form`, `run⇥path⇥args…`), then `mode⇥print\|execute` | 2 on any parse error — the whole block is ignored | | `candidates <prefix>/*` | Local branches a pattern may bind to | 2 on a bad pattern | | `resolve <branch>` | The branch's current OID | 3 when absent | | `merge <src> <tgt> <src-oid> <tgt-oid> <form>` | Refuses an undeclared step or a dirty tree (untracked files included); re-checks both OIDs; switches to `<tgt>`; merges the approved **object** | 3 refused · 4 attribution guard · 5 conflict (aborted) · 6 read-back mismatch | | `run-plan <path> [args…]` | For a declared step on a clean worktree, prints `head⇥<oid>` and `blob⇥<hash>` — the values its approval names | 3 undeclared or dirty tree | | `run --expect-head <oid> --expect-blob <hash> <path> [args…]` | Runs a declared step, only under `execute`, only on a clean worktree at the approved `HEAD` and script content, arguments as separate argv entries | 3 undeclared, `print` mode, dirty tree, or `HEAD`/script changed; otherwise the script's own | | `clean` | Checks the whole worktree, untracked files included | 3 when anything is uncommitted |
Run `clean`, then `parse`. A dirty worktree → say so and stop: every step is approved against the committed tree. Exit 2 from `parse` → report the error line and stop: a malformed block is never partly run. No steps → say the project declares none and stop. Otherwise show the steps and the `Run Steps` mode.
Steps run one at a time in the order `parse` printed them — a `run` declared before a `merge` runs before it. Before each step, run `parse` again: output that differs from Phase 0's means the declaration changed under the flow (a merge brought a different override), and the flow stops. Any step that is refused, declined, or ends with a nonzero exit stops the flow: report which step and its exit status, and run nothing after it.
1. **Bind a pattern by the user's pick.** A `<prefix>/*` source or target lists `candidates`; the user picks one from an AskUserQuestion (options, never typed). No candidate → the step is refused; a branch is never created. 2. **Resolve** both concrete branches to OIDs with `resolve`. 3. **Ask**: one AskUserQuestion naming the step, source, target, form and both full OIDs. Only "Merge" proceeds. 4. **Run** `merge <src> <tgt> <src-oid> <tgt-oid> <form>`:
Language: English | 繁體中文 | 简体中文 | 日本語 | 한국어 | Español The harness layer for Claude Code. Let the model choose the path. Keep "done" verifiable. Claude has discretion inside a closed, test-pinned anchor set.
Repo: sd0xdev/sd0x-dev-flow
Write an Architecture Decision Record (ADR) for a feature — Context / Decision / Status /…
Architecture design and documentation. Produces 3-architecture.md with component diagrams,…
Context-aware Q&A with auto context gathering. Use when: user has a quick question about…
Industry best practices conformance audit with mandatory adversarial debate. Produces audit…
Bug fix workflow. Use when: fixing bugs, resolving issues, regression fixes. Not for: new…
Bump package and plugin version in sync. Updates package.json, .claude-plugin/plugin.json,…