Install in seconds
Install this skill
Copy the command and run it in your terminal. You can review the source before installing.
terminal
git clone https://github.com/jeremylongshore/claude-code-plugins-plus-skills

Works with Git. The repository opens in your current directory.

๐Ÿš€
DevOpsPython

Hyperflow Deploy

by jeremylongshore

Runs pre-push gates (lint, typecheck, build, test, security sweep), then interactively asks before pushing to avoid bad releases.

2.6K stars368 forksAdded 2026/07/19
agent-skillsaiai-agentsanthropicautomationclaude-codeclaude-code-pluginsdeveloper-toolsdevopsllmmarketplacemcpplugin-marketplaceplugin-systemsaasskills

Documentation

README

hyperflow-deploy โ€” ship phase (Antigravity single-agent)

Gate, then ship. Follow the hyperflow doctrine. Pushing is always an explicit, confirmed step.

Steps

  1. Pre-push gates โ€” run in order, fix or halt on failure:
    • lint ยท typecheck ยท build ยท tests ยท a quick security sweep (no secrets in the diff, no blocked files committed).
  2. Report the gate results in one short block (pass/fail per gate).
  3. Push gate via AskUserQuestion โ€” binary Push / Hold (no recommended marker). State the branch, ahead/behind vs the remote, and any caveat (e.g. red gate from someone else's files).
  4. On Push: git push the branch (never --force to main/master). On Hold: leave commits local and say so.

Hard rules

  • Never git push --no-verify. If a pre-push hook fails โ€” even on files you don't own โ€” surface it and hold; do not bypass.
  • Never force-push to main/master.
  • If a gate is red because of a concurrent session's uncommitted/untracked files, report that the push is held on external failure โ€” your commits stay clean and local until the tree is green.