mirror of
https://github.com/marcogll/talia_bot.git
synced 2026-01-13 21:35:19 +00:00
This commit introduces a new `/print` command that is restricted to authorized users. The main changes are: - Created `app/modules/print.py` to house the handler for the new command. - The handler uses the existing `is_admin` function from `app/permissions.py` to check for authorization. - Integrated the new command into `app/main.py`. - Updated `tasks.md` to document the new feature.
51 lines
1.7 KiB
Markdown
51 lines
1.7 KiB
Markdown
# Talía Development Tasks
|
|
|
|
This file tracks the development tasks for the Talía project.
|
|
|
|
## Phase 1: Project Scaffolding
|
|
|
|
- [x] Create `tasks.md` to track project development.
|
|
- [x] Create the basic directory structure (`app`, `app/modules`).
|
|
- [x] Create placeholder files in the root directory (`docker-compose.yml`, `Dockerfile`, `.env.example`).
|
|
- [x] Create placeholder files in the `app` directory.
|
|
- [x] Create placeholder files in the `app/modules` directory.
|
|
|
|
## Phase 2: Core Logic Implementation
|
|
|
|
- [x] Implement `main.py` as the central orchestrator.
|
|
- [x] Implement `config.py` to handle environment variables.
|
|
- [x] Implement `permissions.py` for role-based access control.
|
|
- [x] Implement `webhook_client.py` for n8n communication.
|
|
|
|
## Phase 3: Module Implementation
|
|
|
|
- [x] Implement `onboarding.py` module.
|
|
- [x] Implement `agenda.py` module.
|
|
- [x] Implement `citas.py` module.
|
|
- [x] Implement `equipo.py` module.
|
|
- [x] Implement `aprobaciones.py` module.
|
|
- [x] Implement `servicios.py` module.
|
|
- [x] Implement `admin.py` module.
|
|
- [x] Add `/print` command for authorized users.
|
|
|
|
## Phase 4: Integrations
|
|
|
|
- [x] Implement `calendar.py` for Google Calendar integration.
|
|
- [ ] Implement `llm.py` for AI-powered responses.
|
|
- [ ] Implement `scheduler.py` for daily summaries.
|
|
|
|
## Log
|
|
|
|
### 2024-05-22
|
|
|
|
- Created `tasks.md` to begin tracking development.
|
|
- Completed initial project scaffolding.
|
|
- Implemented the core logic for the bot, including the central orchestrator, permissions, and onboarding.
|
|
- Implemented the `agenda` and `citas` modules.
|
|
- Implemented the conversational flow for proposing and approving activities.
|
|
- Completed Phase 3 by implementing all modules and refactoring the main dispatcher.
|
|
|
|
### 2024-05-23
|
|
|
|
- Add `/print` command for authorized users.
|