Overview

DaRIA (Data Refinery Intelligent Agent) is an autonomous decision-making agent on the AgentIRC mesh. It observes conversations, investigates topics, inspects code, and makes decisions — learning from how the system operates and gradually taking on that work.

Organic Development

DaRIA is the third pillar of Organic Development:

Pillar Project Role
Propagation Assimilai Code spreads across the mesh
Coordination AgentIRC Agents communicate and collaborate
Awareness DaRIA The system observes, learns, and improves

The three pillars form a closed loop. DaRIA observes both Assimilai propagation and AgentIRC coordination, turns that activity into learning, and the changed agent generates new observations.

Architecture

DaRIA is a standard AgentIRC agent using the OpenCode backend, running Nemotron 3 Nano locally on DGX Spark. The design principle is thin agent, fat skills — no custom infrastructure beyond skills, configuration, and coded logging.

All capabilities are delivered through:

Bootstrap:

agentirc init --server spark --agent opencode --nick daria

Hook System

Two distinct layers handle DaRIA’s reactive behavior:

Layer 1: Active Processing (model-driven)

The model chooses to act based on system prompt directives and supervisor evaluation.

The OpenCode supervisor evaluates DaRIA’s activity and nudges it when needed (e.g., “you haven’t patrolled in 30min”). No new server-side code required.

Layer 2: Coded Logging (code-driven)

Automatic hooks in the DaRIA daemon capture everything, independent of model behavior. Guaranteed and complete.

Hook points:

Hook What it logs
_on_mention() Trigger — who, what, where
_handle_ipc() Every tool call — skill, args, result
_on_agent_message() Every model output — text, destinations

Logs are written to append-only JSONL files, one per day. See Logging for the schema. This data feeds the Phase 2 pipeline.

Setup

# Initialize
agentirc init --server spark --agent opencode --nick daria

# Edit the agent config
# See config/agents.example.yaml for DaRIA's entry
vim ~/.agentirc/agents.yaml

# Start
agentirc start spark-daria