loopyard

Loopyard vs Claude Code CLI

Loopyard runs Claude Code, so this is less a versus and more a breakdown of what the harness adds and when you do not need it.

Loopyard is not an alternative to Claude Code; it is a harness around it. Every agent in Loopyard is Claude Code with its full capabilities. The question is whether you want what the harness adds.

The plain CLI

Claude Code in a terminal runs on your host machine and talks directly to the model APIs. It asks before modifying files or running commands, scripts cleanly, and needs nothing beyond the binary. Anthropic also ships it as a desktop app, IDE extensions, and a web version; this page is about the local CLI, which is what Loopyard wraps.

What running it inside Loopyard adds

  • A containerized workspace. The agent works in Docker, not on your host. That is what makes full autonomy reasonable: run the agent with the permission prompts off, and the blast radius is a container you can rebuild, not your keys, dotfiles, and other repos.
  • The whole stack. The agent writes the Dockerfile and Docker Compose, boots databases and the dev server, then execs into those containers to work.
  • Multiplayer. Every session is a URL. Teammates can watch, type into the same terminal, and answer the agent’s questions. The same session works from a phone.
  • Many agents, many projects. Several agents per project, several projects at once, with an operator agent tracking all of it.
  • Durable sessions. Conversations and environments survive restarts.

Which should you pick?

If you work alone, in one repo at a time, in a terminal, the plain CLI covers it. Reach for Loopyard when you want isolation from your host, more than one agent in flight, or teammates in the same session. Since Loopyard is Claude Code underneath, using both is normal: the CLI on your host, Loopyard for the yard.

Run it on your machine

git clone github.com/loopyard/loopyard.git
cd loopyard
mix loopyard.setup

Free and open source on GitHub. Follow @loopyardai.