vibe-run — for Claude Code vibe-run, coding-agent-orchestration, community, for Claude Code, ide skills, recommended_role == "stop", agentctl next, prompt_catalog get <prompt_id>, recommended_prompt_id, agentctl loop-result

v1.0.0

About this Skill

Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the. vibe-run is an AI agent skill for provide a continuous loop runner that repeats workflow selection until the.

Features

Provide a continuous loop runner that repeats workflow selection until the
dispatcher returns recommended role == "stop" or a real blocker requires
human input. The bar is operator-trust quality, not shallow completion.
Agent execution protocol
Each loop iteration follows this sequence:

# Core Topics

brifl brifl
[8]
[2]
Updated: 3/21/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 10/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
10/11
Quality Score
54
Canonical Locale
en
Detected Body Locale
en

Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the. vibe-run is an AI agent skill for provide a continuous loop runner that repeats workflow selection until the.

Core Value

vibe-run helps agents provide a continuous loop runner that repeats workflow selection until the. Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Ideal Agent Persona

Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the.

Capabilities Granted for vibe-run

Applying Provide a continuous loop runner that repeats workflow selection until the
Applying dispatcher returns recommended role == "stop" or a real blocker requires
Applying human input. The bar is operator-trust quality, not shallow completion

! Prerequisites & Limits

  • dispatcher returns recommended role == "stop" or a real blocker requires
  • Repeat — go to step 1; do not stop after one completed checkpoint, review pass, or
  • auto-advance. Stop only when recommended role == "stop" or a real blocker

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is vibe-run?

Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the. vibe-run is an AI agent skill for provide a continuous loop runner that repeats workflow selection until the.

How do I install vibe-run?

Run the command: npx killer-skills add brifl/coding-agent-orchestration/vibe-run. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for vibe-run?

Key use cases include: Applying Provide a continuous loop runner that repeats workflow selection until the, Applying dispatcher returns recommended role == "stop" or a real blocker requires, Applying human input. The bar is operator-trust quality, not shallow completion.

Which IDEs are compatible with vibe-run?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for vibe-run?

dispatcher returns recommended role == "stop" or a real blocker requires. Repeat — go to step 1; do not stop after one completed checkpoint, review pass, or. auto-advance. Stop only when recommended role == "stop" or a real blocker.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add brifl/coding-agent-orchestration/vibe-run. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use vibe-run immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

vibe-run

Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex. This AI agent skill supports Claude Code, Cursor, and Windsurf

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

vibe-run

Purpose

Provide a continuous loop runner that repeats workflow selection until the dispatcher returns recommended_role == "stop" or a real blocker requires human input. The bar is operator-trust quality, not shallow completion.

Agent execution protocol

Each loop iteration follows this sequence:

  1. Dispatch — call agentctl next (with --workflow if running a continuous workflow)
  2. Fetch prompt — call prompt_catalog get <prompt_id> using the recommended_prompt_id from step 1
  3. Execute — perform the work described by the prompt body
  4. Record — emit a LOOP_RESULT: {...} JSON line and record it via agentctl loop-result
  5. Repeat — go to step 1; do not stop after one completed checkpoint, review pass, or auto-advance. Stop only when recommended_role == "stop" or a real blocker must be surfaced to the user. Do not sign off weak, brittle, or placeholder behavior as success.

Operating contract

  • $vibe-run is for end-to-end backlog execution, not one-checkpoint convenience. When the user delegates ongoing work, keep looping through implement, review, consolidation, context_capture, and the next checkpoint selection until the dispatcher stops you.
  • Returning a normal status update after one successful checkpoint is not a stop condition for $vibe-run.
  • A dirty worktree is not automatically a blocker. If unrelated files are dirty only because of CRLF/line-ending churn or other mechanical noise, reconcile or stash them and continue.

Direct commands (from repo root)

bash
1# Step 1: dispatch 2python3 .codex/skills/vibe-loop/scripts/agentctl.py --repo-root . --format json next --workflow <workflow-name> 3 4# Step 2: fetch prompt body 5python3 .codex/skills/vibe-prompts/scripts/prompt_catalog.py .codex/skills/vibe-prompts/resources/template_prompts.md get <recommended_prompt_id> 6 7# Step 4: record loop result 8python3 .codex/skills/vibe-loop/scripts/agentctl.py --repo-root . --format json loop-result --line "LOOP_RESULT: <json>"

LOOP_RESULT required fields

json
1{ 2 "loop": "<loop_name>", 3 "result": "<outcome>", 4 "stage": "<current_stage>", 5 "checkpoint": "<current_checkpoint>", 6 "status": "<current_status>", 7 "next_role_hint": "<hint>", 8 "report": { 9 "acceptance_matrix": [...], 10 "top_findings": [ 11 {"impact": "MAJOR|MODERATE|MINOR", "title": "...", "evidence": "...", "action": "..."} 12 ] 13 } 14}

Cold start handling

The dispatcher and workflow engine handle cold starts automatically:

  • Missing .vibe/LOOP_RESULT.json → protocol is initialised on first next call
  • Missing workflow_runtime.json entry → rotation starts at step 1
  • No manual initialisation or seeding is needed

Requires-loop-result gate

If the dispatcher returns requires_loop_result: true, a previous loop's LOOP_RESULT has not been acknowledged. Record the pending result before calling next again.

Scripts

  • scripts/vibe_run.py

Terminal and headless usage

bash
1# Interactive continuous mode (terminal) 2python3 .codex/skills/vibe-run/scripts/vibe_run.py --repo-root . --show-decision 3 4# Non-interactive simulation (dry-run, no executor) 5python3 .codex/skills/vibe-run/scripts/vibe_run.py --repo-root . --non-interactive --simulate-loop-result --max-loops 10 --show-decision 6 7# Headless executor mode (CI/agent automation) 8python3 .codex/skills/vibe-run/scripts/vibe_run.py --repo-root . --max-loops 10 --executor "python3 ./scripts/run_one_loop.py" --show-decision 9 10# Continuous workflow (e.g. refactor) 11python3 .codex/skills/vibe-run/scripts/vibe_run.py --repo-root . --workflow continuous-refactor --show-decision

Notes

  • Interactive mode prints one prompt body per loop, then waits for Enter so you can execute that loop in your agent session before continuing.
  • After each interactive loop, the runner asks for the emitted LOOP_RESULT: {...} line and records it through agentctl loop-result before selecting the next loop.
  • Interactive users should press on to the next dispatched loop after recording a result; the session should not end just because one checkpoint reached IN_REVIEW, DONE, or auto-advanced.
  • In executor mode, the command is run after each prompt and must print a LOOP_RESULT: {...} line; the runner records it automatically.
  • The runner stops automatically when agentctl returns recommended_role: stop.
  • In non-interactive environments without an executor, use --simulate-loop-result to auto-acknowledge LOOP_RESULT and keep cycling (dry-run semantics).

Related Skills

Looking for an alternative to vibe-run or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

openclaw-release-maintainer is an AI agent skill for openclaw release maintainer.

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

flags is an AI agent skill for use this skill when adding or changing framework feature flags in next.js internals.

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

pr-review is an AI agent skill for pytorch pr review skill.

98.6k
0
Developer