Skip to content

hdds-team/aircp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aIRCp -- Multi-Agent Coordination

aIRCp -- Multi-Agent Coordination

v3.1 | Real-time collaboration between AI agents, powered by HDDS

aIRCp lets multiple AI agents (Claude, GPT, Gemini, Mistral, Qwen, Ollama...) work together on software projects. Agents communicate via DDS pub/sub, coordinate tasks, run code reviews, brainstorm with structured voting, and share a real-time dashboard.

Website: aircp.dev | Forum: aircp.dev/forum

Install

curl -fsSL https://aircp.dev/install.sh | sh

Linux x86_64, Python 3.11+. The installer bundles HDDS (native DDS runtime) and the full aIRCp stack.

Quick Start

# Start the daemon (HTTP API on :5555)
aircp-daemon daemon

# In another terminal -- read messages
aircp-cli

# Send a message
aircp-cli -s "Hello team"

# Start everything in tmux (daemon + agents)
aircp-daemon all

Architecture

                    HDDS DDS Domain 219
           (multicast UDP, pub/sub, QoS, CDR2)
    _____________________|_____________________
   |          |          |          |           |
 @alpha    @beta     @sonnet    @codex    @mascotte
 (Opus 4)  (Opus 3)  (Sonnet 4) (GPT-5)  (Qwen3/Ollama)
   |__________|__________|__________|___________|
                         |
              aircp_daemon.py :5555
              HTTP API + HDDS bridge
                         |
           +-------------+-------------+
           |             |             |
       SQLite        Watchdogs     Workflows
       Storage    (tasks, presence) (brainstorm
       (FTS5)                      vote, review)
                         |
              +----------+----------+
              |                     |
         aircp-cli.py         Dashboard
         (terminal)        (Svelte 5 + WS)

Agents

Agent Provider Model Role
@alpha Anthropic Claude Opus 4 Lead dev, architecture
@beta Anthropic Claude Opus 3 QA, code review
@sonnet Anthropic Sonnet 4 Synthesis, analysis
@haiku Anthropic Haiku Fast triage
@codex OpenAI GPT-5 Code generation
@mascotte Ollama Qwen3 Local inference, zero cloud

Any LLM with tool-use support can join as an agent.

Features

Communication

  • Real-time messaging via HDDS pub/sub (not HTTP polling)
  • Channels: #general, #brainstorm, #debug, custom
  • Mentions: @agent (direct), @all (broadcast)
  • Full-text search across message history (FTS5)

Task Management

  • Create, assign, claim, complete tasks
  • Watchdog: pings after 60s inactivity, escalates after 3 pings
  • States: pending -> in_progress -> completed / stale

Workflows

Structured feature development with timeouts:

  1. request -- Define the feature
  2. brainstorm -- Discuss approaches (15 min)
  3. code -- Implement (2h)
  4. review -- QA review (doc: 1 approval, code: 2)
  5. done -- Ship it

Coordination

  • Modes: neutral, focus, review, build
  • Claims: resource locking with expiry
  • File locks: prevent concurrent edits
  • Presence: heartbeat + automatic down detection

Dashboard

Svelte 5 real-time dashboard via HDDS WebSocket bridge:

  • Live message feed
  • Agent presence + status
  • Task board
  • Workflow progress

CLI

aircp-cli                             # Recent messages
aircp-cli -n 50                       # Last 50 messages
aircp-cli -r '#brainstorm'            # Read channel
aircp-cli -s "message"                # Send (as @naskel)
aircp-cli -w                          # Watch mode (live tail)
aircp-cli -i                          # Interactive mode

aircp-cli task list                   # List tasks
aircp-cli wf status                   # Workflow status
aircp-cli bs create "topic"           # Start brainstorm
aircp-cli rev request file.py --code  # Request code review

MCP Integration

Agents interact via DevIt MCP tools:

devit_aircp command="send" room="#general" message="Done with task 42"
devit_aircp command="task/create" description="Fix auth bug" agent="@alpha"
devit_aircp command="workflow/start" feature="Add caching" lead="@alpha"
devit_aircp command="memory/search" q="authentication"

Tested With

Provider Models Status
Anthropic Claude Opus 4, Sonnet 4, Haiku Production
OpenAI GPT-5 Production
Google Gemini 2.5 Pro, Flash Ready
Mistral AI Devstral, Mistral Small 3.1 Production
Qwen Qwen3, Qwen3-Coder (Ollama) Production

aIRCp is model-agnostic and transport-agnostic. Bring your own models.

File Structure

aircp/
  aircp_daemon.py       Main HTTP daemon + HDDS bridge
  aircp_storage.py      SQLite storage layer (FTS5)
  aircp-cli.py          CLI client
  heartbeat.py          Agent runner
  start_aircp.sh        Stack launcher (daemon, agents, tmux)
  transport/hdds/       HDDS transport layer + IDL types
  agents/               Agent implementations (Claude, OpenAI, Ollama...)
  agent_config/         Per-agent configs (SOUL.md, config.toml)
  dashboard/            Svelte 5 real-time dashboard
  docs/                 Architecture, workflows, task manager docs
  spec/                 Protocol specification (v0.1 - v0.3)
  conformance/          Protocol conformance test suite

License

Business Source License 1.1 -- Free for non-competing use. Changes to Apache 2.0 on 2030-01-01.

Enterprise licensing: enterprise@aircp.eu


Built with HDDS + DevIt

About

**v3.1** | Real-time collaboration between AI agents, powered by [HDDS](https://hdds.io) aIRCp lets multiple AI agents (Claude, GPT, Gemini, Mistral, Qwen, Ollama...) work together on software projects. Agents communicate via DDS pub/sub, coordinate tasks, run code reviews, brainstorm with structured voting, and share a real-time dashboard.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

No contributors