agentd is an experimental, multi-tenant, single-agent runtime for one host. The model decides; agentd supplies a native model/tool loop, capability boundaries, persistence, scheduling, per-scope serialization, raw traces, and one pull delivery outbox.
Database and HTTP compatibility are intentionally not preserved. Runtime data
is disposable. A schema mismatch is fixed with --reset-data, never a
migration.
The workspace has four crates:
agentd-api: domain and wire typesagentd-store: the single libSQL databaseagentd-core: model loop, LLM transport, built-in tools, and MCP executionagentd-server: REST, scheduling, dispatch, and process lifecycle
Transport adapters live in independent repositories. The Telegram adapter uses only tenant REST endpoints and the delivery outbox.
Every run follows one path:
claim run → read context → native model/tool loop
→ transaction(output + status + context + optional delivery)
The database has tenants, agents, runs, run log, contexts, artifacts, memory,
schedules, deliveries, and MCP servers. Memory is one table with one FTS5
index and one embedding BLOB per fact; exact cosine and lexical ranks are
combined with RRF. Replay is exactly the stored run_log; there is no derived replay,
audit, inspection, simulation, or export control plane.
With Rust, Python 3, curl, and jq installed, run the complete deterministic
turn lifecycle against a loopback-only OpenAI-compatible fixture:
./scripts/demo-e2e.shThe first run downloads about 448 MiB of checksum-verified embedding assets. The fixture proves the runtime/API path, not model quality or real tool-call compatibility. See the demo boundary for details.
Native startup requires the pinned embedding assets. The fetch script downloads
only the fixed revision, verifies every checksum, and installs the model's MIT
license. It supports both GNU sha256sum and the shasum included with macOS.
agentd_model_dir="${AGENTD_EMBEDDING_MODEL_DIR:-$HOME/.cache/agentd/models/multilingual-e5-small}"
./scripts/fetch-embedding-model.sh "$agentd_model_dir"
export AGENTD_EMBEDDING_MODEL_DIR="$agentd_model_dir"
cp configs/agentd.toml ~/.agentd.toml
# Edit ~/.agentd.toml to point at an OpenAI-compatible chat-completions API.
cargo run -p agentd -- --config ~/.agentd.toml --reset-dataThe image includes the same checksum-verified model and its license. This local
example publishes only to host loopback and uses the development bearer token
from configs/agentd.docker.toml:
docker build -t agentd:dev .
docker run --rm --name agentd-dev \
-p 127.0.0.1:8080:8080 \
-v "$PWD/configs/agentd.docker.toml:/etc/agentd/agentd.toml:ro" \
-v agentd-dev-data:/var/lib/agentd \
agentd:devOn Linux, add --add-host=host.docker.internal:host-gateway if the LLM runs on
the host. Before submitting a real turn, edit the provider fields and replace
the development token. Send Authorization: Bearer local-dev-token to /v1/*
for the unchanged local example.
The browser console at / is read-only. It lists tenants, agents, and runs,
then shows the selected run, raw trace, and delivery state. An API token entered
there stays in the browser tab.
curl -X POST http://127.0.0.1:8080/v1/tenants \
-H 'content-type: application/json' -d '{"name":"demo"}'
curl -X PUT http://127.0.0.1:8080/v1/tenants/demo/agents/simple-bot \
-H 'content-type: application/toml' \
--data-binary @agents/simple-bot.tomlAgent JSON/TOML is flat: persona, model, allowed_families, timeout_ms,
max_steps, temperature, max_tokens, and context_window. Omitting
allowed_families exposes every family; allowed_families = [] exposes none.
context_window counts complete user/assistant turns, and 0 disables context.
curl -X POST http://127.0.0.1:8080/v1/tenants/demo/turns \
-H 'content-type: application/json' \
-d '{
"agent":"simple-bot",
"scope":"chat/42",
"payload":{"text":"hello"}
}'Submission always returns 202 with a queued run_id. Pull the canonical
result with GET /v1/tenants/demo/runs/:run_id/wait?timeout_ms=30000. Run
states are queued, running, succeeded, failed, and cancelled. The
runtime serializes the same (tenant, agent, scope) and permits different
scopes to run concurrently. request_id is an optional tenant-scoped
idempotency key.
There are 16 built-ins: artifact read/write/list; memory get/search/list/put/delete;
schedule get/list/put/delete; clock now; public-web search/fetch; and pure
arithmetic. Names are canonical family_action names. Mutating tools execute
when their family is allowed; there is no generic operator execute endpoint or
approval workflow. Shell, arbitrary HTTP, audio, run, plan, LLM, output,
dialog, and context tools do not exist.
Memory writes embed the concise canonical text before committing it. The
runtime contains one pinned intfloat/multilingual-e5-small ONNX model and
does not call an external embedding provider or silently fall back to
lexical-only results. Queries use the E5 query: prefix and facts use
passage:; inputs over 512 model tokens are rejected in favor of artifacts.
The model decides when to search or write memory, and those actions remain
ordinary traced tool calls.
memory_list enumerates one namespace with a host-clamped page size and an
opaque cursor bound to the current run's tenant and namespace. It returns only
IDs, text, and timestamps; use memory_search for relevance retrieval.
Install the optional per-tenant maintenance resources explicitly with
POST /v1/tenants/:tenant/presets/memory-maintenance. The preset creates a
memory-only system/memory-maintainer agent pinned to standard/chat and a weekly
system/memory-maintenance schedule. The schedule starts disabled and has no
delivery destination, so installation alone produces no model calls or memory
changes. Enable or customize it through the normal schedule API. Maintainer runs
cannot succeed or mutate memory until they complete memory_list pagination for
the namespace supplied by the run input.
MCP servers are tenant resources at /v1/tenants/:tenant/mcp/:name. Transport
is a strict tagged object: stdio contains command, args, and optional
env_from; HTTP contains url and optional headers_from. The *_from maps
store environment-variable names, never secret values. Enabled PUT discovers
tools before saving and validates optional allowed_tools; disabled servers
can be saved offline with an empty catalog. Tools appear as
mcp_<server>_<tool> in the mcp family, and colliding exposed names are
rejected per tenant. The client requests MCP 2025-11-25, accepts the supported
older versions, matches Streamable HTTP responses by JSON-RPC request ID, and
caps HTTP and stdio messages at 1 MiB. HTTP sessions are reused and
reinitialized once after session expiry. Enabled servers are rediscovered
independently at startup.
Every successful run stores one canonical output and is pullable. Delivery is
optional: a turn or schedule must explicitly provide
"delivery":{"destination":"tg:42"}. Scope is never treated as a
destination. Finalization atomically writes the output, terminal trace, rolling
context, and—when requested—one pending delivery referencing the run. Delivery
rows do not copy the output; claim/list responses join it from the run.
Adapters acknowledge delivered, retry, or failed; expired claims are
claimable again and retry updates the same row.
- Architecture and deliberate omissions
- HTTP API
- Deployment
- Deterministic local demo
- Reliability evidence and known gaps
- Threat model
- Security policy
- Contributing
- Changelog
- Draft v0.1.0-alpha.1 release notes
Before exposing an instance beyond loopback, read the threat model and security policy. Before changing a runtime invariant, read the reliability matrix and contribution guide.
Licensed under the Apache License 2.0. The bundled embedding model remains under its upstream MIT license; see third-party notices.