askill
vibe

vibeSafety 75Repository

Fully autonomous development workflow from prompt to commit. Chains explore → prepare → implement → commit. Triggers: /vibe, "vibe this", "autonomous workflow".

6 stars
1.2k downloads
Updated 3/14/2026

Package Files

Loading files...
SKILL.md

Vibe

Run the full development pipeline from a single prompt.

Arguments

  • <prompt> — what to build (required unless --continue)
  • --no-branch — skip branch creation, use current branch
  • --continue — resume a failed pipeline from last completed stage
  • --dry-run — explore + prepare only, stop before implement

Pipeline

/start → /explore → /prepare → /implement → /commit

Each stage verifies success before proceeding. Failures halt with a clear report.

Step 1: Parse Arguments

Extract from $ARGUMENTS:

  • <prompt>: everything except flags
  • --no-branch: boolean
  • --continue: boolean
  • --dry-run: boolean

If no prompt and no --continue → tell user: /vibe <what to build>, stop.

Step 2: Resume Check

If --continue:

  1. TaskList() → find task with metadata.type == "vibe" and status == "in_progress"
  2. If found → read metadata.vibe_stage to determine resume point
  3. Read metadata.vibe_prompt as the prompt
  4. Skip to the stage after vibe_stage (see Step 4)
  5. If not found → tell user no pipeline to resume, stop

Step 3: Create Pipeline Tracker

TaskCreate(
  subject: "Vibe: <prompt (truncated to 60 chars)>",
  description: "Autonomous pipeline for: <full prompt>",
  activeForm: "Vibing: <prompt (truncated to 40 chars)>",
  metadata: {
    type: "vibe",
    vibe_prompt: "<full prompt>",
    vibe_stage: "started",
    priority: 1
  }
)
TaskUpdate(taskId, status: "in_progress")

Step 4: Execute Pipeline

Run stages sequentially. After each stage succeeds, update metadata.vibe_stage via TaskUpdate before proceeding.

Stage 1: Branch (skip if --no-branch)

Generate slug from prompt (lowercase, hyphens, max 40 chars).

Skill("start", args="jm/<slug>")

Verify: git branch --show-current returns the new branch. Update: TaskUpdate(trackerId, metadata: { vibe_stage: "branch" }) Report: [1/5] Branch: jm/<slug>

If on a non-main branch already, skip and report: [1/5] Branch: skipped (already on <branch>)

Stage 2: Explore

Skill("explore", args="<prompt>")

Verify: Plan file exists in ~/.claude/plans/<project>/. Check via ls -t ~/.claude/plans/<project>/*.md | head -1. Update: TaskUpdate(trackerId, metadata: { vibe_stage: "explore" }) Report: [2/5] Explored: plan at <path>

Stage 3: Prepare

Skill("prepare")

Verify: TaskList() → find task with metadata.type == "epic" and status == "in_progress". Update: TaskUpdate(trackerId, metadata: { vibe_stage: "prepare", vibe_epic: "<epicId>" }) Report: [3/5] Prepared: epic #<id> with N child tasks

If --dry-run → stop here. Report plan and epic, suggest /implement or /vibe --continue when ready.

Stage 4: Implement

Skill("implement")

Verify: TaskList() → all children of epic have status == "completed". Update: TaskUpdate(trackerId, metadata: { vibe_stage: "implement" }) Report: [4/5] Implemented: N/N tasks completed

If some tasks failed, report failures but continue to commit if any code was changed (git diff --stat is non-empty).

Stage 5: Commit

Check git diff --stat first. If empty → skip, report [5/5] Commit: skipped (no changes).

Skill("commit")

Verify: git log -1 --oneline shows a new commit. Update: TaskUpdate(trackerId, metadata: { vibe_stage: "commit" }) Report: [5/5] Committed: <commit oneline>

Step 5: Finalize

TaskUpdate(trackerId, status: "completed")

Report full summary:

Pipeline complete:
[1/5] Branch: jm/<slug>
[2/5] Explored: plan at <path>
[3/5] Prepared: epic #<id> with N tasks
[4/5] Implemented: N/N tasks completed
[5/5] Committed: <commit oneline>

Next: `/submit` to create PR

Error Handling

If ANY stage fails:

  1. Do NOT update vibe_stage (it stays at last successful stage)
  2. Leave tracker task in_progress
  3. Report:
    Pipeline halted at stage N (<stage-name>).
    Error: <details>
    
    Completed:
    [1/5] Branch: ...
    [2/5] Explored: ...
    
    Resume: `/vibe --continue`
    Or run manually: `/<failed-skill> [args]`
    

Stage Count

  • With branch: 5 stages ([N/5])
  • With --no-branch: 4 stages ([N/4])
  • With --dry-run: 3 stages ([N/3]) or 2 ([N/2] if also --no-branch)

Adjust the [N/M] denominator based on active flags.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

87/100Analyzed 2/24/2026

High-quality autonomous workflow skill that chains multiple stages (branch → explore → prepare → implement → commit). Well-structured with clear arguments, verification steps, error handling, and resume capability. Tightly coupled to repo-specific skills and conventions (jm/ branches), which limits reusability. Includes helpful features like dry-run mode and dynamic stage counting. Tags and trigger phrases are generic enough for discoverability.

75
95
70
88
92

Metadata

Licenseunknown
Version-
Updated3/14/2026
Publisherjfmyers9

Tags

ci-cdllmprompting