Tagged articles

Unix Domain Socket

8 articles · Page 1 of 1
James' Growth Diary
James' Growth Diary
Jun 14, 2026 · Artificial Intelligence

Multi‑Agent Collaboration: How AI Commands AI and the New Complexity in Harness Engineering

This article dissects Claude Code's multi‑agent architecture, explaining why single‑agent designs hit context, serial, and failure walls, comparing leading frameworks, and detailing Claude's AgentTool recursion safeguards, Coordinator control‑data separation, UDS‑based swarms, IterationBudget controls, and the three engineering guardrails that keep multi‑agent systems reliable.

AI orchestrationAgentToolCoordinator
0 likes · 24 min read
Multi‑Agent Collaboration: How AI Commands AI and the New Complexity in Harness Engineering
James' Growth Diary
James' Growth Diary
May 8, 2026 · Artificial Intelligence

How Claude Code’s Agent Swarms Use Unix Domain Sockets to Run 10 AIs Concurrently

This article deep‑dives into Claude Code’s Agent Swarms, explaining why Unix Domain Sockets replace HTTP for intra‑process communication, how three‑stage address parsing, filesystem‑based mailbox queues, various spawn modes, AgentId design, graceful shutdown, plan‑mode approval and common pitfalls together enable reliable, low‑latency coordination of multiple LLM agents.

Agent SwarmsClaude CodeIPC
0 likes · 14 min read
How Claude Code’s Agent Swarms Use Unix Domain Sockets to Run 10 AIs Concurrently
BirdNest Tech Talk
BirdNest Tech Talk
Oct 24, 2025 · Backend Development

Bridging Go and Python with pyproc: Ultra‑Low‑Latency Interprocess Calls

This article introduces pyproc, a library that lets Go applications invoke Python functions via Unix Domain Sockets with sub‑45 µs latency, explaining the problem of mixing Go and Python ecosystems, the architecture, performance benefits, suitable use cases, and a step‑by‑step quick‑start guide with full code examples.

AI InfrastructureGoInterprocess Communication
0 likes · 7 min read
Bridging Go and Python with pyproc: Ultra‑Low‑Latency Interprocess Calls