899108e3f8
Robot command-only (type: robot) sin LLM. Scaffold via create-full.sh, registrado en Matrix con E2EE verificado. Config minimo basado en template_robot con encryption habilitada. Archivos: - agents/test-bot/agent.go — Rules() retorna nil (robot) - agents/test-bot/config.yaml — tipo robot, sin LLM - cmd/launcher/main.go — blank import añadido Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
458 B
Go
19 lines
458 B
Go
// Package test es un agente plantilla (no lanzable).
|
|
// Sirve como referencia canonica para crear nuevos agentes.
|
|
// Al crear un nuevo agente, new-agent.sh reemplaza test y test-bot.
|
|
package test
|
|
|
|
import (
|
|
"github.com/enmanuel/agents/agents"
|
|
"github.com/enmanuel/agents/pkg/decision"
|
|
)
|
|
|
|
func init() {
|
|
agents.Register("test-bot", Rules)
|
|
}
|
|
|
|
// Rules devuelve las reglas de este agente (vacio para el template).
|
|
func Rules() []decision.Rule {
|
|
return nil
|
|
}
|