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

Acerca de este Skill

Escenario recomendado: Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the. Resumen localizado: Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Características

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.

Reference-Only Page Review Score: 10/11

This page remains useful for teams, but Killer-Skills treats it as reference material instead of a primary organic landing page.

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

Escenario recomendado: Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the. Resumen localizado: Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

¿Por qué usar esta habilidad?

Recomendacion: 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

Mejor para

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

Casos de uso accionables for vibe-run

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

! Seguridad y limitaciones

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

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

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?

Escenario recomendado: Ideal for AI agents that need provide a continuous loop runner that repeats workflow selection until the. Resumen localizado: Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

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: Caso de uso: Applying Provide a continuous loop runner that repeats workflow selection until the, Caso de uso: Applying dispatcher returns recommended role == "stop" or a real blocker requires, Caso de uso: 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?

Limitacion: dispatcher returns recommended role == "stop" or a real blocker requires. Limitacion: Repeat — go to step 1; do not stop after one completed checkpoint, review pass, or. Limitacion: 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.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

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).

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Resumen localizado: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Resumen localizado: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Desarrollador