docs: update references after agent directory rename and devops removal
Actualizar todas las referencias en documentación para reflejar los nuevos nombres de directorio (assistant-bot, asistente-2) y la eliminación del agente devops-bot. Archivos actualizados: CLAUDE.md, create_agent.md, README.md, e2ee.md, creating-agents.md, 03-bot-interaction.md. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -135,7 +135,7 @@ System prompt que recibe el LLM. Debe incluir:
|
||||
- Estilo de respuesta
|
||||
- Limitaciones
|
||||
|
||||
Usar como referencia: `agents/assistant/prompts/assistant-system.md` o `agents/asistente2/prompts/system.md`.
|
||||
Usar como referencia: `agents/assistant-bot/prompts/assistant-system.md` o `agents/asistente-2/prompts/system.md`.
|
||||
|
||||
## Paso 2: Registrar el agente en el launcher
|
||||
|
||||
@@ -151,7 +151,6 @@ mibotAgent "github.com/enmanuel/agents/agents/mibot"
|
||||
var rulesRegistry = map[string]func() []decision.Rule{
|
||||
"assistant-bot": assistantagent.Rules,
|
||||
"mi-bot": mibotAgent.Rules, // ← nuevo
|
||||
"devops-bot": devopsagent.Rules,
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
+3
-4
@@ -41,7 +41,7 @@ Y se referencia en `config.yaml`:
|
||||
```yaml
|
||||
encryption:
|
||||
enabled: true
|
||||
store_path: "./agents/assistant/data/crypto/"
|
||||
store_path: "./agents/assistant-bot/data/crypto/"
|
||||
pickle_key: "${PICKLE_KEY_ASSISTANT_BOT}"
|
||||
trust_mode: tofu
|
||||
```
|
||||
@@ -67,9 +67,8 @@ Un pickle key fijo por agente en `.env` evita este problema.
|
||||
Cada agente debe tener su propia crypto.db para evitar corrupción cruzada:
|
||||
|
||||
```
|
||||
agents/assistant/data/crypto/crypto.db
|
||||
agents/asistente2/data/crypto/crypto.db
|
||||
agents/devops/data/crypto/crypto.db
|
||||
agents/assistant-bot/data/crypto/crypto.db
|
||||
agents/asistente-2/data/crypto/crypto.db
|
||||
```
|
||||
|
||||
**No compartir** la crypto store entre agentes.
|
||||
|
||||
Reference in New Issue
Block a user