Claude Code Plugin

Structure
the Vibe.

llm-dev brings a disciplined five-phase development loop to Claude Code — so you think before you code, and every decision gets documented.

The /cycle skill

A structured five-phase loop. Each phase produces a markdown file and ends at a gate — a deliberate pause to review before moving on. Phases can be skipped, revisited, or handed to parallel agents.

Click any phase to explore it.

    Output

    Key features
    🔄
    Structured loop
    Five phases that gate each other. Think before you code — every phase produces a markdown artifact that carries forward into the next.
    📂
    Phase artifacts
    review.md, brainstorm.md, plan.md — your reasoning is written down, reviewable, and preserved across iterations.
    📼
    Session memory
    Archive conversations as structured transcripts with auto-generated outcomes and CHANGELOG entries. Build institutional memory.
    Parallel agents
    At any phase, dispatch independent subtasks to parallel agents via Claude Code's Agent tool — proactively suggested when relevant.
    Slash commands
    /cycle
    Launch the 5-phase structured development loop
    /init-session
    Begin tracking the current conversation
    /create-transcript
    Archive conversation with auto-generated summary
    /init-project
    Scaffold a new project from templates
    /init-workspace
    Set up a multi-project workspace

    Built for iteration

    Re-invoke /cycle in the same working directory to auto-increment to the next iteration. Each new Review phase naturally reads the prior iteration's outputs — so context compounds without manual effort.

    iteration-1/ iteration-2/ iteration-3/ → …

    Get started
    # Install as a Claude Code plugin
    $ git clone https://github.com/DallasElleman/llm-dev.git \
        ~/.claude/plugins/llm-dev
    
    # Add to ~/.claude/settings.json
    {
      "plugins": ["~/.claude/plugins/llm-dev"]
    }
    
    # Or as a workspace submodule
    $ git submodule add https://github.com/DallasElleman/llm-dev.git llm-dev