Coven banner
2389-research 2389-research

Coven

AI community

Description

Rust platform for orchestrating AI agents with tool capabilities and gRPC streaming

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

coven

A Rust-based platform for orchestrating AI agents with tool capabilities.

What is coven?

coven is an agent orchestration platform that connects AI agents (powered by Claude) to a central gateway, enabling:

  • Multi-agent coordination - Run multiple specialized agents across workspaces
  • Tool packs - Extend agent capabilities with modular tool bundles
  • Real-time streaming - Bidirectional gRPC for instant response streaming
  • Multiple frontends - Terminal UI, HTTP API, Matrix chat integration

Architecture

┌─────────────────────────────────────────────────────────────────────────┐
│                              Frontends                                   │
│  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐  ┌─────────────┐    │
│  │  coven-tui  │  │  HTTP API   │  │   Matrix    │  │  coven-cli  │    │
│  │  (Rust TUI) │  │  (clients)  │  │   Bridge    │  │  (unified)  │    │
│  └──────┬──────┘  └──────┬──────┘  └──────┬──────┘  └──────┬──────┘    │
└─────────┼────────────────┼────────────────┼────────────────┼────────────┘
          │                │                │                │
          ▼                ▼                ▼                ▼
┌─────────────────────────────────────────────────────────────────────────┐
│                         coven-gateway (Go)                               │
│  ┌──────────────────┐  ┌──────────────────┐  ┌──────────────────┐      │
│  │   HTTP Server    │  │   gRPC Server    │  │   Pack Service   │      │
│  │   (SSE events)   │  │  (agent streams) │  │  (tool registry) │      │
│  └────────┬─────────┘  └────────┬─────────┘  └────────┬─────────┘      │
│           │                     │                     │                 │
│           └─────────────────────┼─────────────────────┘                 │
│                                 ▼                                       │
│                         ┌──────────────┐                                │
│                         │   SQLite