vibe-run — community vibe-run, coding-agent-orchestration, community, ide skills

v1.0.0

이 스킬 정보

Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex.

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

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 1/11

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

Review Score
1/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex.

이 스킬을 사용하는 이유

Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex.

최적의 용도

Suitable for team workflows that need explicit guardrails before installation and execution.

실행 가능한 사용 사례 for vibe-run

! 보안 및 제한 사항

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The page lacks concrete use-case guidance.
  • - The page lacks explicit limitations or caution signals.
  • - The underlying skill quality score is below the review floor.

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?

Unifying prompt, context, skill, and process management for Claude, Gemini, and Codex.

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.

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.

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

Install vibe-run, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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

관련 스킬

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

모두 보기

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자