Show HN: Druids - 자신만의 소프트웨어 공장을 구축하세요
hackernews
|
|
🔬 연구
#coding workflow
#hn
#multi-agent
#open-source
#review
#software factory
원문 출처: hackernews · Genesis Park에서 요약 및 분석
요약
드루이드(Druids)는 파이썬 기반으로 다중 에이전트 코딩 워크플로우를 구축하고 실행할 수 있도록 돕는 오픈소스 라이브러리입니다. 이 라이브러리는 복잡한 가상 머신(VM) 인프라와 에이전트 간 통신 설정을 추상화하여 개발자가 쉽게 시스템을 구성할 수 있게 합니다. 특히 각 프로그램을 독립적인 샌드박스 환경에서 실행하고 이벤트 중심 아키텍처를 채택해, 수많은 에이전트가 원활하게 협력하며 대규모 마이그레이션이나 코드 리뷰 등을 수행할 수 있는 안정적인 인프라를 제공합니다.
본문
Hi HN! Druids (https://github.com/fulcrumresearch/druids) is an open-source library for structuring and running multi-agent coding workflows. Druids makes it easy to do this by abstracting away all the VM infrastructure, agent provisioning, and communication. You can watch our demo video here (https://www.youtube.com/watch?v=EVJqW-tvSy4) to see what it looks like. At a high level: - Users can write Python programs that define what roles the agents take on and how they interact with each other. - A program is made of events - clear state transitions that the agents or clients can call to modify state. Each event gets exposed as an agent tool. - Druids provisions full VMs so that the agents can run continuously and communicate effectively. We made Druids because we were making lots of internal coding tools using agents and found it annoying to have to rearrange the wiring every time. As we were building Druids, we realized a lot of our internal tools were easier to express as an event-driven architecture – separating deterministic control flow from agent behavior – and this design also made it possible to have many agents work reliably. We had issues with scaling the number of concurrent agents within a run, so we decided to have each program run in an isolated sandbox program runtime, kind of the same way you run a Modal function. Each agent then calls the runtime with an agent token, which checks who can talk to who or send files across VMs, and then applies the tool call. Our early users have found the library useful for: - running many agents to do performance optimization - building custom automated software pipelines for eg code review, pentesting, large-scale migrations, etc... We've heard that the frontier labs have the infrastructure to quickly spin up 100 agents and have them coordinate with each other smoothly in various ways. We're hoping that Druids can be a starting point to make that infrastructure more accessible.
Genesis Park 편집팀이 AI를 활용하여 작성한 분석입니다. 원문은 출처 링크를 통해 확인할 수 있습니다.
공유