Orchino: Local Multi-Agent Orchestration System for Windows with Parallel Browser and UI Automation

Orchino is a local multi-agent orchestration system for Windows that enables parallel execution of browser and Windows tasks without interfering with your current work. The system runs via Windows UI Automation and pure CDP (Chrome DevTools Protocol), never touching mouse, keyboard, or screen focus, allowing you to continue working while it runs.
Key Details
The developer demonstrated the system with this command: "Search Sony earbuds on Flipkart and Amazon, email the results, save to Notepad." The system completed this task in 29.5 seconds using 4 agents with true parallel execution (not sequential).
Execution flow:
- Phase 1 (concurrent): Browser Agent → Flipkart and Browser Agent → Amazon running simultaneously via separate CDP sessions
- Phase 2 (concurrent, after Phase 1): Browser Agent → Gmail and Windows Agent → Notepad running simultaneously
- Results from Phase 1 auto-fed into Phase 2
Architecture
The system features:
- Parallel orchestration with dependency graphs (fan-out, fan-in, sequential, independent — based on goal decomposition)
- OODA loop per agent (~1.2–1.9s per iteration including LLM call)
- 5 domain-scoped agents: Browser, Windows, File, Terminal, System Settings
- Blackboard + SQLite + ChromaDB memory
- Agents run locally, LLM via Cerebras
The project was solo-built by a final year CS student over 6 months.
📖 Read the full source: r/LocalLLaMA
👀 See Also

ProofShot: CLI for AI Agents to Verify UI Code with Browser Recording
ProofShot is a CLI tool that lets AI coding agents open a browser, interact with pages, record sessions, and collect errors, then bundles everything into a self-contained HTML file for review. It works with any AI agent via shell commands and is packaged as a skill.

Ghostbar: A ~5MB native macOS Swift AI client that hides from screen sharing
Ghostbar is a native Swift macOS menu bar AI client (~5MB) that uses window.sharingType = .none to become invisible to screen recorders. Works with Ollama, vLLM, llama.cpp, and any OpenAI-compatible backend.

Building and Testing an MCP Server in Claude Desktop: Architecture and Lessons
A developer shares their experience building and testing an MCP server within Claude Desktop, detailing their architecture setup and practical lessons learned about tool schemas, debugging, and limitations.

Chat Saver CG: Browser Extension Built with Claude Exports Conversations Across 12 AI Platforms
A developer built Chat Saver CG, a browser extension that exports and transfers conversations between Claude, ChatGPT, Gemini, and 9 other AI platforms, using Claude extensively for development including architecture decisions, debugging DOM parsing issues, and writing adapter logic.