Files
agents_and_robots/.claude/tasks/README.md
T
egutierrez 6bef4283c6 Remove outdated plans and implement new features for bot tools, memory, interaction, avatar management, and cron scheduling
- Deleted old plan files for bot memory, interaction, avatar, and cron.
- Added new task files for bot tools, memory, interaction, avatar, and cron scheduling with detailed designs and implementation notes.
- Updated `agents/runtime.go` to support memory clearing and message deletion from SQLite.
- Created necessary shell and package files for implementing bot tools and cron scheduling functionalities.
2026-03-06 01:18:53 +00:00

23 lines
1.1 KiB
Markdown

# 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
```