Product
Run agents in parallel.
Review when they're done.
Each agent gets its own Docker container, branch, and full dev environment. Send a prompt. Come back to a working result you can test.
Step 1
Dispatch autonomous agents
Write a prompt in the dashboard and hit run. Trimo spins up a Docker container on your machine, clones your repo, and launches the agent. Each pipeline gets its own branch.
- ✓ Run multiple autonomous agents in parallel — each in its own container
- ✓ Automatic branch creation and git setup
- ✓ Framework-agnostic — currently supports Claude Code
trimo/jwt-auth
Writing auth middleware...
trimo/product-api
Running test suite — 23/24 passing
trimo/admin-layout
Completed — 4 files changed, 2 runs
trimo/login-validation
Test failure — needs review
Step 2
Monitor everything
See all pipelines at a glance — which agents are working, which finished, which need attention. Real-time output streaming from any device.
- ✓ Web dashboard accessible from any device
- ✓ Real-time agent output and status updates
- ✓ Resource monitoring prevents OOM kills
Step 3
Verify and iterate
Open a terminal in the container. Start a dev server. Test the result in your browser. Write a follow-up if something needs adjusting — the agent picks up on the same branch with full context.
- ✓ QA mode — terminal access, web server preview, full dev environment
- ✓ Pipeline continuity across multiple runs
- ✓ Course-correct with follow-up prompts
Run 1 — Implementation
"Build the user auth flow with email/password and OAuth."
Complete — 8 files changed, tests passing
QA — Terminal session
$ curl localhost:3000/api/auth/login → 200 OK
Login works, but refresh token rotation missing
Run 2 — Follow-up
"Add JWT refresh rotation and rate limiting on login."
Complete — verified in browser, ready for PR
Built-in
Git just works
Trimo handles git so agents don't have to. Work is saved continuously, each pipeline gets its own branch, and nothing dangerous can happen to your repo.
Architecture
Docker isolation,
local execution
Each agent gets its own container, filesystem, network, and process space. Your code stays on your machine — the dashboard only sees metadata.
- ✓ No cloud compute costs — runs on your hardware
- ✓ Source code never leaves your machine
- ✓ No token markup — use your own API keys
Cloud dashboard
UI, state, pipeline history, monitoring
Local daemon
Runs on your machine, manages Docker containers
Container 1
Agent A
Container 2
Agent B
Container 3
Agent C
Everything included
All features on every plan. See pricing →
Frequently asked questions
Can I run multiple agents at the same time? +
Yes. Each task gets its own container and git branch. The free tier supports 3 parallel pipelines.
How are agents isolated from my machine? +
Docker containers. Each agent gets a separate filesystem, network, and process space. It can't reach your host machine or other agents' containers.
What stops an agent from breaking my codebase? +
Trimo handles git safely. Every change is saved to its own branch automatically. Agents can't mess up your repo.
Do I need to pay extra for tokens? +
No. Use your own Claude subscription or API key. Trimo never charges for tokens or adds markup.
Does my code leave my machine? +
No. Agents run locally in Docker. The dashboard only sees metadata — status, timing, run history.