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.
npx skills add OAI-Labs/vibe-flow --skill vibe-mergegit clone --depth 1 https://github.com/OAI-Labs/vibe-flowWrote 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.
[](https://agentmods.dev/skills/oai-labs/vibe-flow/vibe-merge)<a href="https://agentmods.dev/skills/oai-labs/vibe-flow/vibe-merge"><img src="https://agentmods.dev/badge/skills/oai-labs/vibe-flow/vibe-merge/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.
<a href="https://agentmods.dev/skills/oai-labs/vibe-flow/vibe-merge"><img src="https://agentmods.dev/badge/skills/oai-labs/vibe-flow/vibe-merge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00046 | $0.01796 |
| Opus 5 | $0.00023 | $0.00898 |
| Sonnet 5 | $0.00009 | $0.00359 |
| Haiku 4.5 | $0.00005 | $0.00180 |
Grade A, and why
vibe-merge 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 11d 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.
How it starts
The opening of the file, as written. The whole thing — 219 lines — stays where its author put it; the contents beside it link to each section on GitHub.
vibe-merge
Overview
Final gate before code lands on main. Verifies every condition, handles conflicts by delegating to vibe-rebase, squash-merges via gh, closes the loop.
Core principle: Never merge without fresh verification. No hope-based merges.
Announce at start: "I'm using the vibe-merge skill to merge the PR."
When to use
- PR is approved (by
vibe-reviewor human) - OR issue is
hotfixwith 2+ human approvals (bypass path) - Issue status
approvedorready_to_mergein state.json
Do NOT use if:
- Review pending or requested changes
- CI failing
- Conflicts present (go to
vibe-rebasefirst)
The process
Step 1: Gate verification (iron law)
Follow superpowers:verification-before-completion. Run fresh commands.
PR=<PR_NUMBER>
# 1. CI status
gh pr checks $PR --json state,conclusion
# All conclusions must be SUCCESS or NEUTRAL (skipped)
# 2. Review status
gh pr view $PR --json reviewDecision
# Must be APPROVED.
# EXCEPTION: if `.vibe-flow.yaml → review.reviewer_token_env` is unset OR its
# env var is empty, vibe-review may have fallen back to posting a plain comment
# (because GitHub blocks self-review). In that case `reviewDecision` will be
# null / REVIEW_REQUIRED. Trust state.json instead:
# - state.json.status == "approved" → gate passes
# - otherwise → fail
# If reviewer_token_env IS configured, both signals must agree (defense in depth).
# 3. Mergeable?
gh pr view $PR --json mergeable,mergeStateStatus
# mergeable: MERGEABLE, mergeStateStatus: CLEAN or UNSTABLE (not BLOCKED/BEHIND/DIRTY)
# 4. Branch up-to-date with base?
git fetch origin
BASE_SHA=$(git rev-parse origin/main)
PR_BASE=$(gh pr view $PR --json baseRefOid --jq '.baseRefOid')
# If PR_BASE != BASE_SHA → rebase needed
If ANY gate fails → STOP, do not merge. Route:
- CI failing →
vibe-dispatch-fixwith CI logs - Review not approved (and state.json fallback also says not approved) → wait or escalate
- Conflicts / behind →
vibe-flow:vibe-rebase
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.
- 11d ago First seen · 219 lines · 46 tokens per session scan A 9eca4b9541a7
vibe-merge is a skill published in the GitHub repository OAI-Labs/vibe-flow (1 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 1,796 once invoked, about $0.0002 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-31.
Other skills, from other repositories
loop-on-ci
Monitor PR checks and fix failures until green. Uses gh pr checks as the source of truth for PR-attached checks.
pr-watch
Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.
deploy-steward
Mainline deploy steward. Consumes ready PRs, owns a lease on mainline landing, refreshes PR state, updates stale branches, waits for CI and deploy gates, merges or queues one candidate at a time, and opens repair tasks for failures.
merge-review
Reviews pending fleet worktree merges before they're accepted. Reads the merge-check queue, detects file-level conflicts between branches, proposes a safe merge order, and surfaces reconciliation plans for overlapping changes.
branch-and-worktree-workflow
Isolates feature work in its own branch or worktree and integrates it cleanly when done. Use this when starting work that should not disturb the current workspace, when several efforts must proceed in parallel on one repository, or when implementation is finished and the change needs merging, rebasing, or splitting…
pr-feedback
Work a reviewer's comments on a pull request to the end - all three comment surfaces enumerated before any is triaged, every comment fixed, declined with a reason, or ticketed, push before you reply. Use when a PR comes back with review feedback or a red check.