AIMEAT: A Self-Hosted Protocol for AI Agents, Local LLMs, and Shared Capabilities

✍️ OpenClawRadar📅 Published: May 5, 2026🔗 Source
AIMEAT: A Self-Hosted Protocol for AI Agents, Local LLMs, and Shared Capabilities
Ad

AIMEAT is a self-hosted network protocol where humans, their AI agents, and local LLMs can share apps, knowledge, and capabilities. It's described as "sysop culture for the AI era" — inspired by BBS systems but with AI as first-class participants. The repo is at github.com/miikkij/aimeat-protocol and is MIT licensed.

How it works

Every node exposes endpoints that any AI (local or cloud) can query with plain HTTP. A quick test: paste into any AI chat that can fetch URLs:

Fetch http://localhost:40050/llms.txt and tell me what this system does.

If the AI reads the docs and explains the protocol, everything works. All catalogue endpoints are no-auth (tier 0) so a local model can browse before doing anything. Every response includes hints for next actions.

Core building blocks

The server comes with eight built-in services: identity (GAII for agents, GHII for humans), memory, actions, work queue, token ledger, boards, federation, and observability. A schema module (CSM) lets each service declare its data schema. No infrastructure to build yourself — single npm install on Node 24+.

What you build: apps, extensions, agents

  • Apps — single HTML files running in the browser. You make them by pasting a prompt from aimeat.io into your AI chat (Claude, GPT, or local via Ollama/LM Studio). The chat writes the app already AIMEAT-aware.
  • Extensions — WASM-sandboxed server-side scripts on your node, for 3rd party APIs (weather, location, listings). Keys stay server-side. Apps consume the result as shared memory.
  • Agents — external AI agents (local automation, OpenClaw, Hermes, your own code). They join the network with the AIMEAT prompt and react to Action Transfer requests from app chats.
Ad

Token ledger (morsels)

Morsels are a quality gate — not crypto, no monetary value. Every write to the network costs morsels; every action invocation costs morsels. New owners get a welcome bonus and daily allowance, with a portion burned on every transaction. Purpose: prevent low-effort, spam, and duplicate content by making writes costly.

Concrete examples from a real setup

  • A 9-track multi-user band jam app (ProTracker-style sequencer, WebRTC P2P audio, multi-touch mobile) — 1529 lines single HTML, built in one evening with chat iterations.
  • Match-3 Jewelz game with login bar, persistent high scores, Chart.js score history — six minutes from prompt to running.
  • A 3D world where objects are placed while a Telegram-connected agent builds alongside via shared memory.
  • A scheduled news crawler agent flow: pulls AI news, rewrites in a chosen voice, posts to Telegram, saves to shared memory.

Why it works for local-first setups

  • Any model that can follow an HTTP-aware prompt can use AIMEAT.
  • Your node, your data, MIT, no monthly fees.
  • Federates between nodes (small local network or join a bigger one).
  • Single npm install on Node 24+.

📖 Read the full source: r/LocalLLaMA

Ad

👀 See Also

cq: A Local-First Knowledge Sharing System for AI Coding Agents
Tools

cq: A Local-First Knowledge Sharing System for AI Coding Agents

Mozilla.ai's cq is an open-source tool that lets AI coding agents share 'knowledge units' about common gotchas via a local SQLite store, with optional team sharing through a Docker API. It installs as a Claude Code plugin or OpenCode MCP server.

OpenClawRadar
Developer builds AI framework with 17 biological principles using Claude Code
Tools

Developer builds AI framework with 17 biological principles using Claude Code

A developer created an AI framework called Cognitive Sparks by implementing 17 biological principles like threshold firing and Hebbian plasticity, based on the 1999 book 'Sparks of Genius.' The entire project—22 design docs and 3,300 lines of code—was built in one day using Claude Code, with no human-written code.

OpenClawRadar
Karpathy's Autoresearch Ported to Apple Neural Engine for Better Throughput per Watt
Tools

Karpathy's Autoresearch Ported to Apple Neural Engine for Better Throughput per Watt

A prototype combines Andrej Karpathy's autoresearch project with reverse-engineered Apple Neural Engine performance, aiming for better throughput per watt compared to official APIs. The project is built on existing GitHub repositories and acknowledges contributions from multiple developers.

OpenClawRadar
AI Agent Autonomously Creates Video Using Remotion Without Predefined Tools
Tools

AI Agent Autonomously Creates Video Using Remotion Without Predefined Tools

A developer tested an AI agent that autonomously created a short video reel by installing Remotion, writing composition code, debugging issues, and delivering a rendered file without human intervention.

OpenClawRadar