Skip to content

Latest commit

 

History

983 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Visual Relay

Visual Relay is a cross-platform desktop app that helps you build software by processing tasks with LLMs using a relay-like pipeline, with each stage passing its output to the following stage. You create markdown files as specs, and Visual Relay implements them via the pipeline.

  • Mistakes are avoided by enforcing a strict set of steps the LLM can't bypass (e.g., red/green TDD).
  • Costs are optimized by choosing an appropriate LLM model tier per stage (and by enforcing a budget).
  • It also gives you easy ways to observe each step via the activity panel.
  • All LLM interactions are sandboxed (nono on macOS and mxc on Windows) to avoid destructive file system changes.

Visual Relay main window

Install (macOS)

The recommended way to run Visual Relay is to clone the repo and launch it with the ./visual-relay wrapper (one command bootstraps everything else):

cd ~/repositories # or wherever you keep your repos
git clone --depth 1 https://github.com/Nicholas-Westby/visual-relay.git
cd visual-relay
./visual-relay launch

--depth 1 does a shallow clone (latest commit only) for a faster, smaller download; omit it to fetch the full history.

./visual-relay is a tiny launcher that provisions its own toolchain via Nix (this avoids global installs).

You can then run ./visual-relay in that folder the next time you want to launch it.

Install (Windows)

Clone the repo and run (nix doesn't run on Windows, so dependencies are installed globally):

cd ~/repositories # or wherever you keep your repos
git clone --depth 1 https://github.com/Nicholas-Westby/visual-relay.git
cd visual-relay
./visual-relay launch

--depth 1 does a shallow clone (latest commit only) for a faster, smaller download; omit it to fetch the full history.

You can then run visual-relay in that folder the next time you want to launch it.

Note: the Windows sandbox (MXC) is not yet as robust as macOS's nono due to current MXC limitations; see TROUBLESHOOTING.md.

What Visual Relay Does

  • Runs llm-tasks/ one task at a time through the staged relay pipeline, writing ledger, manifest, seal, event, report, and trace artifacts. These help keep the pipeline honest.
  • Presents a command center GUI: select your project folder, queue/archive controls, per-stage status, structured run logs, and stage cards that double as log filters.
  • Streams Swival trace events live into the GUI as assistant text, tool calls, tool results, and thinking records.
  • Estimates time and monetary cost per task and per stage from Swival reports.

Tests

To run the main test suite:

./visual-relay test

Or for the more involved checks (runs the file-size guard, format verification, build, test suite, and the README screenshot render):

./visual-relay check

Tech Stack

The code is mostly C# and the UI is built with Avalonia.

Commands

  • ./visual-relay - launches the app.
  • ./visual-relay launch also launches the app.
  • ./visual-relay build - builds the app (the launcher also does this).
  • ./visual-relay install-hooks - installs pre-commit hooks.
  • ./visual-relay test - runs the test suite.
  • ./visual-relay test serial - runs the test suite, one test at a time.
  • ./visual-relay check - runs the file-size guard, format verification, build, the test suite, and the README screenshot render.

Learn more

About

No description, website, or topics provided.

Resources

Stars

8 stars

Watchers

2 watching

Forks

Releases

Packages

Contributors

Languages