feat: add plans for bot tools, memory, interaction, avatar editing, and cron scheduling

This commit is contained in:
2026-03-04 01:56:04 +00:00
parent 0701089ecf
commit e900464dd6
6 changed files with 425 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# Plans — Extensiones pendientes
Cada archivo describe un feature a implementar con su diseño técnico, archivos
afectados y notas de implementación.
| # | Feature | Archivo | Estado |
|---|----------------------------|----------------------------|-----------|
| 1 | Herramientas para los bots | [01-bot-tools.md](01-bot-tools.md) | pendiente |
| 2 | Memoria para los bots | [02-bot-memory.md](02-bot-memory.md) | pendiente |
| 3 | Interacción entre bots | [03-bot-interaction.md](03-bot-interaction.md) | pendiente |
| 4 | Fotos de perfil | [04-bot-avatar.md](04-bot-avatar.md) | pendiente |
| 5 | Cron scheduler | [05-bot-cron.md](05-bot-cron.md) | pendiente |
## Orden de implementación sugerido
```
04-avatar → independiente, más simple, buen punto de partida
01-tools → base necesaria para los demás
02-memory → depende de 01-tools (herramientas remember/recall)
05-cron → depende de 01-tools (run_tool) y 02-memory (contexto)
03-interact → depende de todos los anteriores para ser útil
```