artificial

mcp
Security Audit
Warn
Health Warn
  • License — License: MIT
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 6 GitHub stars
Code Warn
  • Code scan incomplete — No supported source files were scanned during light audit
Permissions Pass
  • Permissions — No dangerous permissions requested
Purpose
This is an open-source multi-agent harness built in Go. It allows developers to spawn, manage, and coordinate teams of AI workers (like Claude Code and OpenAI Codex) from a real-time web dashboard or REST API.

Security Assessment
Overall Risk: Medium. The tool acts as an orchestrator for external AI agents and uses a WebSocket hub and REST API to facilitate communication, meaning it inherently makes network requests and handles data routing. Because it relies on external AI CLIs to perform tasks, the actual security risk depends heavily on the permissions granted to those underlying models (e.g., file system access or shell execution by an AI agent). No hardcoded secrets were detected, and the application does not appear to request explicitly dangerous standalone permissions. However, the automated code scan was incomplete, so a deeper manual review is advised before granting it access to sensitive directories.

Quality Assessment
The project is under the permissive MIT license and appears to be actively maintained, with repository pushes as recent as today. However, it currently suffers from extremely low community visibility, having only 6 stars. Because it is a very niche, early-stage project, you are largely relying on the primary developer's code quality rather than established community trust.

Verdict
Use with caution. While the project shows active development and safe baseline configurations, its early stage and unaudited Go source code mean it should be thoroughly vetted before being integrated into sensitive development workflows.
SUMMARY

Open source multi-agent harness for orchestrating AI workers. Supports Claude Code, OpenAI Codex, Cursor Agent, and local models.

README.md

Artificial

An open source AI agent harness for orchestrating multiple AI workers from a single dashboard. Built in Go.

Artificial lets you spawn, manage, and coordinate AI agents (Claude Code, OpenAI Codex, ACP-compatible models, local LLMs) as a team. Agents get personas, skills, communication channels, and a shared task board. You manage them from a real-time web dashboard or the REST API.

What it does

  • Multi-agent orchestration — run multiple AI agents in parallel, each with their own role and persona
  • Real-time dashboard — chat with agents, manage tasks on a kanban board, monitor activity
  • Channel-based communication — agents can message each other and receive notifications mid-task
  • Multiple backends — supports Claude Code, OpenAI Codex, ACP (Agent Communication Protocol), and local models via OpenAI-compatible APIs
  • MCP integration — each worker exposes tools to its agent via Model Context Protocol
  • Session persistence — stop and resume agent sessions without losing context

Architecture

┌───────────────────────────────────────────────────┐
│                 svc-artificial                    │
│       Dashboard · REST API · WebSocket Hub        │
│                   SQLite DB                       │
└─────────┬──────────────┬─────────────┬────────────┘
          │ WebSocket    │ WebSocket   │ WebSocket
    ┌─────┴──────┐  ┌────┴──────┐  ┌───┴────────┐
    │ cmd-worker │  │ cmd-worker│  │ cmd-worker │
    │  (Codex)   │  │ (Claude)  │  │   (ACP)    │
    │  ┌──────┐  │  │ ┌──────┐  │  │ ┌────────┐ │
    │  │ GPT  │  │  │ │Claude│  │  │ │Cursor/ │ │
    │  │ 5.4  │  │  │ │Opus  │  │  │ │opencode│ │
    │  └──────┘  │  │ └──────┘  │  │ └────────┘ │
    └────────────┘  └───────────┘  └────────────┘

Quick start

# Build both binaries
make build

# Start the central service (dashboard at http://localhost:4000)
make run-artificial

# In another terminal, start a worker (or spawn from the Dashboard)
make run-worker EMPLOYEE_ID=1

Prerequisites

  • Go 1.25+
  • Claude Code CLI, OpenAI Codex CLI, or an ACP-compatible agent server

First steps

  1. Set up company knowledge — create a folder with a README describing your project, conventions, and priorities (see Company knowledge). Set the path in dashboard Settings.
  2. Create a CEO — add an employee with the "CEO" role from the dashboard. This is the lead agent that can hire and fire other workers, and spawn new agents on its own.
  3. Add a project — set up the project you want the team to work on, with its path and description.
  4. Grow the team — either add employees manually from the dashboard, or chat with the CEO and ask it to hire more people to work on the project. The CEO can spawn and manage workers autonomously.

Project structure

src/
├── svc-artificial/     # Central service (dashboard, API, WebSocket hub, SQLite)
├── cmd-worker/         # Worker binary (agent lifecycle, MCP server, hub client)
└── pkg-go-shared/      # Shared protocol types

Dashboard

The built-in web dashboard provides:

  • Chat — direct messages and channel conversations with agents
  • Board — kanban task management (todo, in progress, review, done)
  • Team — view and manage active workers, spawn new agents
  • Live TTY — stream agent terminal output in real-time

Company knowledge

Create a folder that will serve as your team's shared knowledge base. This is where agents look for context about your project, conventions, and goals.

mkdir my-company
cat > my-company/README.md << 'EOF'
# My Company

## What we're building
Describe your product/project here.

## Conventions
- Language, framework, and style preferences
- How we name things, structure code, etc.

## Tools
- List CLI tools, scripts, or services agents can use
- e.g. `make test`, `npm run lint`, deployment commands
- Any internal APIs or databases they should know about

## Current priorities
- What the team is focused on right now
EOF

Once the service is running, set the knowledge path in the dashboard Settings. Every agent spawned will have access to this context.

API

The REST API exposes endpoints for managing employees, tasks, channels, messages, and worker lifecycle. See src/svc-artificial/internal/server/api.go for the full list.

Harness backends

Backend Description Status
Claude Code Spawns Claude Code CLI via PTY with MCP tools Tested
Codex Spawns OpenAI Codex CLI via PTY with MCP tools Tested
ACP Connects to any Agent Communication Protocol server Tested with Cursor Agent and opencode
Local models Via opencode + OpenAI-compatible APIs (LM Studio, ollama, etc.) Works, but needs a strong local model

How I use it

I built MyUpMonitor — a complete uptime monitoring SaaS with billing, teams, status pages, CLI, Terraform provider, and more — in about 24 hours of focused work using Artificial to orchestrate my AI development workflow.

Author

Built by André Baltazar

License

MIT

Reviews (0)

No results found