Skip to main content

Workflow Examples

GenieBuilder includes a library of pre-built workflow templates that demonstrate different automation patterns for development tasks. These examples range from simple single-prompt workflows to complex multi-agent pipelines with review loops.

Workflow Demo

Watch this demo video to see the workflow editor in action:

What is a Workflow?

A workflow in GenieBuilder is a directed graph of execution steps that can:

  • Execute prompts against LLM providers (cloud or CLI runners)
  • Make decisions based on verdict outputs
  • Loop and retry based on conditions
  • Access Git, Backlog tasks, and shell tools
  • Create branches, commits, and pull requests

Workflow Structure

Every workflow consists of:

ComponentDescription
NodesSteps in the workflow (start, step, decision, end)
EdgesConnections between nodes with optional conditions
TemplatesBranch names, commit messages, and PR descriptions using variable substitution
Tool SetsGit, Backlog, and shell tool permissions per step

Template Variables

Workflows support dynamic templating using {{variable}} syntax:

{{task.id}}           - Task identifier (e.g., "TASK-123")
{{task.title}} - Task title
{{task.description}} - Task description
{{task.slug}} - URL-friendly task title
{{run.id}} - Unique workflow run ID
{{run.iteration}} - Current iteration number
{{run.maxIterations}} - Maximum allowed iterations
{{run.branchName}} - Generated git branch name
{{workspace.projectPath}} - Absolute path to project root
{{git.baseBranch}} - Base branch for PRs
{{workflow.commitMessage}} - Generated commit message
{{workflow.prBody}} - Generated PR description
{{steps.<step-id>.summary}} - Output from a previous step
{{steps.<step-id>.findings}} - Structured findings from verdict

Example Workflows

1. One Prompt (Beginner)

The simplest possible workflow—send a single prompt to an LLM and get a response.

Use case: Quick project analysis, README summaries, or simple questions.

One Prompt Workflow

[Start] → [Ask LLM] → [Done]

Key configuration:

  • No git branch created (createGitBranch: false)
  • Single step with basic prompt template
  • No tool access required

2. Decision Branching (Beginner)

Demonstrates verdict-based routing where a step produces a pass/fail verdict, and a decision node routes to different handlers.

Use case: Conditional processing based on AI evaluation.

Decision Branching Workflow

[Start] → [Produce Verdict] → {Decision}
├─[PASS]→ [Handle Pass] → [Done]
└─[FAIL]→ [Handle Fail] → [Done]

Key concept: Steps can output structured verdicts:

{
"version": "1.0",
"verdict": "pass",
"summary": "All checks passed",
"findings": []
}

3. Retry Loop (Beginner)

Shows iteration-based retry logic where a check step can fail, trigger a retry step, and loop back for another attempt.

Use case: Flaky operations that may succeed on retry.

Retry Loop Workflow

[Start] → [Check] → {Result?}
↑ ├─[PASS]→ [Passed]
└────────────┤
[Retry] └─[FAIL, exhausted]→ [Exhausted]

Key concept: Decision edges use context variables:

  • canRetry: true - When iterations remain
  • iterationsExhausted: true - When max iterations reached

4. Code Review (Intermediate)

AI-powered code review workflow that analyzes staged changes and provides structured feedback.

Use case: Automated pre-commit code review.

Code Review Workflow

Features:

  • Git tool access to read staged changes
  • Verdict output with detailed findings
  • Each finding includes severity, file path, message, and suggestion

Verdict findings structure:

{
"severity": "critical" | "warning" | "suggestion",
"file": "/absolute/path/to/file",
"line": 42,
"message": "Description of the issue",
"suggestion": "How to fix it"
}

5. Bug Fix Pipeline (Intermediate)

End-to-end bug fix automation: reproduce, implement, test, review, and commit.

Use case: Complete bug resolution workflow.

Bug Fix Pipeline Workflow

[Start] → [Reproduce Bug] → [Implement Fix] → [Run Tests]
{Tests OK?}
┌───────────┴───────────┐
[Pass]→ [Review Changes] [Fail]→ [Tests Failed]
{Review OK?}
┌───────────┴───────────┐
[Approved]→ [Commit & PR] [Rejected]→ [Review Failed]

[Done]

Features:

  • Multi-step pipeline with decision gates
  • Backlog task context available throughout
  • Automatic branch naming from task
  • Structured commit messages

6. Documentation Generator (Intermediate)

Analyzes code, generates documentation, reviews for accuracy, and commits.

Use case: Automated documentation updates.

Documentation Generator Workflow

Steps:

  1. Analyze Code - Identify APIs and patterns needing docs
  2. Generate Docs - Create documentation with examples
  3. Review Docs - Verify accuracy and completeness
  4. Commit - Save changes with structured message

7. Reviewer Feedback Loop (Advanced)

A sophisticated implementation pattern where one agent implements and another reviews, with findings injected back into the fix step.

Use case: High-quality code changes with AI-powered review.

Reviewer Feedback Loop Workflow

[Start] → [Implementation Agent] → [Agent Reviewer]
{Review OK?}
┌───────────────┼───────────────┐
[Pass]→ [Approved] [Fail, Retry] [Fail, Exhausted]

↑ [Apply Review Fixes] ←────────────┘
└──────────────────────────────────────┘

Key concept: Cross-step data injection using {{steps.<id>.findings}}.

Example prompt using findings:

The reviewer found issues:

Review summary:
{{steps.agent-reviewer.summary}}

Review findings:
{{steps.agent-reviewer.findings}}

Fix all reported issues in the current working tree.

8. Implement & Review (Advanced)

Full development pipeline with implementation, testing, review with looping, and PR creation.

Use case: Complete feature implementation workflow.

Implement &amp; Review Workflow

Pipeline:

  1. Plan Implementation - Analyze task and plan approach
  2. Implement - Write the code changes
  3. Run Tests - Execute test suite with verdict
  4. Code Review - AI review with findings
  5. Commit - Stage and commit changes
  6. Create PR - Generate pull request

Features:

  • Up to 5 iterations for review/fix loops
  • Automatic branch creation from template
  • Full git workflow integration
  • Backlog task closure on completion

The Default Workflow

GenieBuilder includes a built-in default workflow optimized for the "Claude implements / Codex reviews" pattern:

[Start] → [Create Branch] → [Implement (Claude)] → [Review (Codex)]

{Review Result}
┌───────────────────────────────────┼──────────────────────────┐
[pass]→ [Close Task] → [Commit & Push] → [Create PR] → [Completed]

[fail, retry]→ [Fix Issues] ───────────────────────────────────────┘

[fail, exhausted]→ [Failed]

This workflow demonstrates:

  • Multi-agent collaboration: Different CLI runners for implement vs review
  • Automatic branching: Creates and checks out feature branches
  • Review loops: Up to 3 iterations of fix/review
  • Full git integration: Commits, pushes, and creates PRs
  • Task management: Automatically closes Backlog tasks on success

Creating Custom Workflows

You can create custom workflows by:

  1. Starting from an example - Clone and modify existing templates
  2. Building from scratch - Define nodes, edges, and templates
  3. Using the visual editor - Drag-and-drop workflow construction (coming soon)

Best Practices

  1. Use descriptive step labels - Makes execution logs readable
  2. Set appropriate maxIterations - Prevents infinite loops
  3. Grant minimal tool permissions - Only enable tools a step actually needs
  4. Use absolute file paths - In verdict findings for proper linking
  5. Test with createGitBranch: false - For workflows that don't modify code

Tool Set Configuration

Each step declares which tools it needs:

toolSet: {
git: true, // Read/write git operations
backlog: true, // Task management
shell: true // Execute shell commands
}

Tools are disabled by default for safety. Only enable what the step requires.

Executing Workflows

Workflows can be executed:

  • Manually - Select a workflow and task, then click Run
  • With retries - Failed or cancelled runs can be retried
  • With context - Task details are injected into templates automatically

During execution:

  • Real-time progress is displayed in the workflow panel
  • Individual step outputs can be inspected
  • The run can be cancelled at any time
  • Conversation logs are saved for debugging

Workflow Verdict Format

Steps that set expectsVerdict: true should output JSON in this format:

{
"version": "1.0",
"verdict": "pass" | "fail",
"summary": "Human-readable summary",
"findings": [
{
"severity": "critical" | "warning" | "suggestion",
"file": "/absolute/path/to/file",
"line": 42,
"message": "Issue description",
"suggestion": "How to fix"
}
]
}

The workflow engine parses this output and makes it available to decision nodes and subsequent steps via template variables.