Linux manages processes. Formicx manages agents.

The Agent-Native Operating Layer for Autonomous AI

Formicx maps AI agents directly to Linux kernel processes—delivering real-time process monitoring, zero-config LAN discovery, and security policies for autonomous agent fleets.

QUICK INSTALL$ pip install -e .
FORMICX / 360° CYBER-ANT MESH
ROTATION360° LOOP
SCROLL TO EXPLORE ↓

THE CONTROL PLANE

Agents need an operating layer.

Formicx gives autonomous systems the primitives they need to operate as reliable, observable processes.

01

Agent → OS PID Mapping

Every agent gets a first-class process identity. Query live CPU, RAM, and uptime through psutil.

02

Automatic LAN Discovery

Zero-config peer networking over mDNS. Find and connect agents across your local network.

03

Authoritative ACL Policies

Define exactly who can talk to whom. Policies are enforced at the control plane.

04

Python Agent SDK

A framework-independent lifecycle for any agent. Build, observe, and orchestrate in Python.

MODEL CONTEXT PROTOCOL (MCP)

Connect Formicx to Antigravity & AI Assistants.

Control, monitor, and query your autonomous agent fleet directly from your favorite AI coding assistants using standard STDIO JSON-RPC.

EASY SETUP

1-Click MCP Configuration

Add Formicx to your mcp_config.json in Antigravity, Cursor, or Claude Desktop:

mcp_config.json
{
  "mcpServers": {
    "formicx": {
      "command": "python",
      "args": ["-m", "formicx.mcp.main"]
    }
  }
}
COMPATIBLE ASSISTANTS:
Antigravity Cursor Claude Desktop VS Code / Copilot
MCP TOOLS & RESOURCES

Exposed Agent Capabilities

AI Agents gain instant tools to manage, orchestrate, and query Formicx workloads:

formicx_get_documentation

Provides full context & SDK guides to AI coding assistants.

formicx_list_agents

Inspects running agent swarms, statuses, and kernel PIDs.

formicx_send_message

Dispatches task payloads and fetches responses from agent inboxes.

formicx_register_agent

Registers agent manifests directly from your IDE environment.

DEBIAN-NATIVE AGENT OS

Install Formicx OS & run agent workloads.

Boot the dedicated Debian-native OS image for bare-metal agent supervision, or install the standalone Python framework directly inside your existing Linux environment.

100%Debian-native OS
& Python SDK
formicx-os — bash

Formicx Debian-Native Agent OS (x86_64-linux)

root@formicx-os:~# sudo formicx-os-install --target=/dev/nvme0n1

Booting Formicx Debian-Native Agent OS v0.1.0-alpha...

[ OK ] Initialized Linux Kernel 6.6-agent-rt

[ OK ] Started formicxd system supervisor daemon

[ OK ] Enabled mDNS zero-config peer discovery service

[ OK ] Mounted isolated cgroup memory controller for AI agents

 

Formicx OS environment ready. Run "formicx agent start" to deploy workloads.

root@formicx-os:~#

DEBIAN NATIVE OS

Formicx Dedicated OS Image

Pre-configured Debian Linux image featuring embedded kernel process supervisors, mDNS peer discovery, and agent resource management.

Download OS Image (formicx.vercel.app)
PYTHON FRAMEWORK

Formicx SDK & Control Plane

Install the lightweight Python agent control plane, CLI supervisor, and network SDK directly on any existing Linux system via pip.

View Framework on GitHub