proomt

Search

Search posts, papers, and topics

All posts

Hugging Face Daily PapersYifan Zhang, Yunheng Zou, Shaokun Zhang2 min readpaperadvanced

Agora: Git as Shared Memory for Collective AutoResearch

Summary

Agora treats a Git repository as a shared, append‑only memory for autonomous research agents, recording each claim as an immutable commit in a DAG. In a 12‑day run with 13 language‑model workers it generated 1,703 reproducible contributions and closed 62 % of the gap to a trained GPT‑2‑124M, demonstrating that shared research state can accelerate discovery.

  • Agora stores every research artifact as an immutable Git commit, forming a directed‑acyclic graph that guarantees reproducible provenance.
  • A derived index over the commit graph highlights frontiers, neglected branches, and verification status, enabling diversity‑aware agent selection.
  • In a 12‑day experiment, 13 language‑model workers produced 1,703 contributions, improving bits‑per‑byte from 3.39 to 1.899 (62 % of the GPT‑2‑124M gap) without a central planner.
  • The top solution compressed donor model statistics into the target’s embeddings and added sparse edits to attention, feed‑forward, and SSM blocks, achieving weight‑transfer without data or gradients.

Teams building autonomous ML agents need a reproducible, shared knowledge base to avoid duplicated work; Agora shows a practical Git‑based approach that yields measurable gains.

8/10

Related reading

  1. Reinventing issue tracking: Local-first and Git-native

    A devlog describing how Manganin’s issue tracker stores issues in a dedicated Git repo as plain files, after rejecting earlier approaches that tried to embed issue data in the code tree or Git refs. The author explains the pitfalls of using refs for issue storage, shows the low‑level Git commands needed for that approach, and then outlines the final design: a hidden sister repository where each i…

    Lobstersmanganin.dev6 minHN1lobste.rs27
  2. Building an Internal Developer Platform with Artificial Intelligence

    This article discusses building internal developer platforms with AI agents that use semantic search across internal data sources like Git, Slack, and Jira. It highlights the need for guardrails to control agent actions and comprehensive observability via logs, metrics, and traces to understand agent behavior and improve developer experience.

    InfoQinfoq.com4 min