Files
unibots/agents/_template_robot/config.yaml
T
agent fc644ecd6e feat: import agents_and_robots platform as unibots (Matrix-out, unibus transport)
Reemplaza el scaffold del echobot por la plataforma completa de bots traida
desde ~/DataProyects/Github/agents_and_robots tras la operacion Matrix-out:
los bots ya no hablan por Matrix sino por el bus unibus (modelo todo-rooms +
E2E via shell/transportunibus sobre github.com/enmanuel/unibus/pkg/client).

- go.mod: replace de unibus -> ../unibus y de fn-registry -> ../../../.. (paths
  relativos reajustados a la nueva ubicacion dentro de fn_registry).
- app.md: bump a 0.2.0, descripcion + arquitectura + comandos + gotchas reales.
- modulo Go conservado como github.com/enmanuel/agents (sin reescribir imports).

agents_and_robots queda archivado como museo de la era Matrix.
2026-06-07 11:50:13 +02:00

38 lines
1.3 KiB
YAML

# ============================================
# ROBOT PLANTILLA (command-only, sin LLM)
# ============================================
# Referencia canonica para robots. NO se lanza (template: true).
# Un robot solo responde a comandos (!xxx). Mensajes normales se ignoran.
# Copiar y adaptar para nuevos robots.
agent:
id: "_template_robot"
name: "Template Robot"
version: "0.0.0"
type: robot # robot = command-only, sin LLM ni reglas
enabled: true
template: true # el launcher ignora este robot
description: "Robot plantilla. No se lanza."
tags: [template, robot]
# ============================================
# PERSONALIDAD (minima para robots)
# ============================================
personality:
prefix: ""
language: es
# ============================================
# MATRIX
# ============================================
bus:
nats_url: "nats://127.0.0.1:4250" # NATS data plane
ctrl_url: "http://127.0.0.1:8470" # membershipd control plane
identity_path: "./agents/_template_robot/data/_template_robot.id" # claves del bot (0600, creado si falta)
handle: "_template_robot" # nombre para detectar menciones
command_prefix: "!"
threads:
enabled: true
auto_thread: false