Local Multi-Agent Setup with vLLM, Claude Code, and gpt-oss-120b on Linux

A developer shared their experience creating a fully local, parallel multi-agent coding setup on Linux after switching from Windows. The configuration uses vLLM for parallel inference, Claude Code for agent orchestration, and a large language model for coding tasks.
Setup Components
- vLLM Docker container: Used for easy deployment and parallel inference
- Claude Code: Handles vibecoding and Agent Teams orchestration, configured to point at vLLM localhost endpoint instead of cloud providers
- gpt-oss:120b: Serves as the coding agent
- RTX Pro 6000 Blackwell MaxQ: Primary GPU for the workload
- Dual-boot Ubuntu: Operating system setup
Performance and Workflow Improvements
The developer previously used Ollama and LM Studio but found they processed requests sequentially and experienced slowdowns after multiple message turns and tool calls. With vLLM, they achieved parallel processing that "turbocharged" their experience.
In testing, the setup handled 4 agents collaborating simultaneously as shown in a video demonstration, with the GPU capable of supporting 8 agents in parallel continuously. The only noted issue was throughput reduction, which varies depending on the agent.
Agent Team-scale tasks that previously took hours to complete sequentially can now be done in approximately 30 minutes, depending on project scope. The developer estimates that adding a second MaxQ GPU could potentially scale the system to handle tens of agents concurrently.
This parallel approach enables vibecoding multiple projects locally and concurrently, though it may introduce some increased latency in certain scenarios. The developer found this trade-off preferable to completing projects one agent at a time.
📖 Read the full source: r/LocalLLaMA
👀 See Also
Claude Code vs Codex: 6-Project Practical Experiment Breakdown
A practical experiment comparing Claude Code and Codex across 6 projects—web, backend, and free challenge—with cross-reviews, self-audits, and scoring.

Non-Developer Builds SaaS App with Claude as Coding Partner
A Director of Data Operations with no software development background used Claude to build and launch a full SaaS application called The Pit Preacher, an AI-powered BBQ assistant with Next.js 14, Supabase authentication, Stripe payments, and Vercel deployment.

OpenClaw Case Study: Managing an Email Inbox for 10 Days Without Human Intervention
A freelance consultant gave OpenClaw full access to their Gmail for 10 days while traveling, with instructions to reply in their exact tone, flag only critical items, and handle routine tasks autonomously. The system processed 187 emails with only one minor error.

Autoevolve Framework Uses Claude Code for Game AI Development Through Self-Play Evolution
A developer used Claude Code exclusively to compete in a Game AI Cup, placing 6th out of 83 participants through 130 automated iterations. The autoevolve framework implements a self-play evolution loop where Claude analyzes bot performance, proposes changes, and benchmarks new versions against previous ones.