-
Notifications
You must be signed in to change notification settings - Fork 1
Known Limitations and Roadmap
Aditya Tawde edited this page Apr 30, 2026
·
2 revisions
| Limitation | Notes |
|---|---|
| No user registration endpoint | Tokens must be generated externally with SECRET_KEY — no /auth/register or /auth/login
|
| Voice WebSocket JWT enforcement | Token is checked downstream, not on the WebSocket upgrade handshake |
| Static proactive loop session list |
session_ids in AutonomousObservationLoop is hardcoded — not loaded from DB |
| Windows-only Office tools |
create_excel_spreadsheet, create_word_document, send_outlook_email require pywin32 and only work on Windows |
| No streaming TTS | TTS audio is returned as a single binary frame after generation completes |
| No mobile/browser SDK | SSE streaming and voice endpoints must be called with raw HTTP/WebSocket |
| SEC-07 — Metrics unauthenticated |
/api/v1/metrics has no auth. Restrict access at the network/proxy layer in production deployments |
mktemp() in Whisper pipeline |
Will be replaced with NamedTemporaryFile (tracked as tech debt) |
| Fixed Issue | Resolution |
|---|---|
| Any Telegram user could control the daemon | SEC-03: MASTER_TELEGRAM_CHAT_ID allowlist enforced |
| No WhatsApp webhook HMAC verification | SEC-02: X-Hub-Signature-256 HMAC enforced; forged payloads → 403 |
| Prompt injection in ReAct prompt | SEC-01: <user_task> boundary + [BLOCKED:TOKEN] neutralisation |
Filesystem exfiltration via copy_file/move_file
|
CQ-01/02: _assert_in_allowed_dirs() enforced on all path operations |
Per-message AmadeusService construction (OOM) |
ARCH-01: DI singleton reused across all messages |
| AgentOrchestrator shutdown never executed (zombie tasks) | DR-02: shutdown() implemented with cancel() + await
|
APScheduler wait=False dropped in-flight jobs |
DR-03: shutdown(wait=True)
|
| Autonomous loop task untrackable | DR-01: task stored + done-callback registered |
SECRET_KEY fallback literal |
SEC-06: auto-generated cryptographically-secure ephemeral key |
| Memory deduplication (flooding) | P6-T7: Content-based uuid5 point IDs — idempotent upserts |
-
/auth/register,/auth/login,/auth/refreshendpoints with per-user session isolation - WebSocket JWT enforcement on the upgrade handshake (not just downstream)
- SEC-07:
/api/v1/metricsauthentication (Bearer or network-level)
- Streaming TTS over WebSocket (chunk-by-chunk as audio arrives from Edge TTS)
- Mobile / browser SDK for SSE streaming and voice endpoints
- Grafana dashboard for Prometheus cost gauges and tool latency histograms
- Dynamic skill loading — mount new tools as sandboxed Docker containers at runtime without restarting
- Proactive loop session discovery — load
session_idsfrom PostgreSQL instead of a static list -
IMessagingAdapterProtocol adoption inTelegramAdapterandWhatsAppAdapterconcrete implementations
← Observability | Changelog →
Amadeus-AI · v6.0.0· Apache License 2.0 · Report a Bug
Getting Started
Architecture
Reference
Integrations
Operations
Development
Project
Links