d5ab527f5d
fix(tg): QA fixes — stream_message, topic_created, archive reply
...
- sdk/mock.py: stream_message was async def (coroutine), must be async
generator with yield — caused TypeError on every user message
- topic_events.py: on_topic_created now skips bot-created topics
(from_user.id == bot.id); cmd_new already registers them under the
correct human user_id
- commands.py: cmd_archive now sends "Чат архивирован." confirmation
- test_topic_events.py: add bot=SimpleNamespace(id=BOT_ID) to fixture
2026-04-02 14:14:19 +03:00
8901e60f6a
fix(tg): reviewer fixes — error handling, timeouts, db index
...
- commands.py: try/except TelegramBadRequest around all Bot API calls (#2 );
/new handles "topics limit" with user-friendly message (#4 )
- start.py: isolate _check_and_prune_stale_topics with try/except Exception (#3 )
- message.py: asyncio.timeout(30) around stream_message; handle TimeoutError (#6 )
- db.py: add idx_chats_user_id index in init_db() (#7 )
- settings.py: remove dead active_chat_id variable (#8 )
- tests: add test_message.py (stream error/success); add 2 tests in test_commands.py
(topics limit, /archive in General topic)
2026-04-02 13:44:59 +03:00
c95360ce1f
wip: reviewer fixes in progress — pause point
2026-04-02 13:39:44 +03:00
24c61468d7
feat(tg): forum-first adapter complete — handlers, bot.py, 46 tests pass
2026-04-02 13:23:40 +03:00
82dc840544
feat(tg): db schema (user_id,thread_id) PK + converter context_key
2026-04-02 13:21:15 +03:00
5def360f8d
chore: init feat/telegram-forum, cherry-pick keyboards
2026-04-02 00:50:14 +03:00
6cfdfba2f4
docs: add implementation plan for telegram forum redesign
2026-04-02 00:39:39 +03:00
bb690a3c38
docs: add forum-first redesign spec for Telegram adapter
...
Replaces DM+Forum hybrid design with Bot API 9.3 Threaded Mode
as the sole interaction model.
2026-04-02 00:27:29 +03:00
c9072d51ea
docs: add codebase map to .planning/codebase/
...
7 documents covering stack, integrations, architecture, structure,
conventions, testing, and concerns.
2026-04-02 00:00:51 +03:00
1c6e028e48
docs: add final progress report for 2026-04-01
2026-04-01 02:14:17 +03:00
27f3da86a7
docs: update README for current telegram and matrix workflow
2026-04-01 01:55:56 +03:00
6a843e8036
fix(matrix): tune sync transport timeouts
2026-04-01 01:49:16 +03:00
14c091b5f5
feat(matrix): create real rooms for new chats
2026-04-01 01:12:56 +03:00
82eb711844
feat(matrix): add adapter baseline and platform-aware command hints
2026-04-01 01:04:54 +03:00
bcdaea5143
docs: Forum Topics implementation plan
2026-03-31 23:02:56 +03:00
a8885aeaa1
docs: Forum Topics mode design spec
2026-03-31 22:54:44 +03:00
41660fe84a
refactor: rename platform/ → sdk/ to avoid stdlib conflict
...
platform/ shadowed Python's stdlib platform module, breaking
aiogram/aiohttp/multidict at import time. Renamed to sdk/ and
updated all imports across core/, tests/, and adapter/telegram/.
2026-03-31 21:57:23 +03:00
c979f96c3c
docs: fix matrix adapter spec — attachments, returning user, get_or_create_user
2026-03-31 21:34:54 +03:00
09919b2463
docs: matrix adapter design spec
2026-03-31 21:31:57 +03:00
a3449fc864
docs: telegram adapter design spec + remove soul style presets from mock
2026-03-31 19:49:13 +03:00
67499daa61
feat: extend platform mock + add research docs
...
platform/interface.py:
- Add Attachment, MessageChunk, AgentEvent types
- Add stream_message() to PlatformClient Protocol (door open for streaming)
- Add WebhookReceiver Protocol
platform/mock.py:
- Add attachment_mode config (url/binary/s3)
- Implement stream_message() — single chunk, ready for real streaming
- Add register_webhook_receiver() + simulate_agent_event() for testing
docs/research/:
- telegram-forum-topics.md — aiogram 3.x Forum Topics API, FSM patterns, UX analysis
- fsm-patterns.md — FSM storage options, StateData best practices
- matrix-spaces.md — matrix-nio Space API, room ordering, invite flow
- matrix-events.md — reactions, threads, typing, sync loop pitfalls
- telegram-chat-alternatives.md — 7 alternatives for multi-chat UX, virtual chats in DM recommended
2026-03-30 14:04:34 +03:00
6f0e9a53a6
chore: remove legacy test_mock_platform.py
2026-03-30 13:39:56 +03:00
c87b37ad64
chore: remove legacy src/ directory
2026-03-30 13:39:41 +03:00
4f5c5679d5
docs: sync all markdown with current architecture
...
Remove session management concepts (no create_session/close_session/
DELETE /sessions — Master handles container lifecycle automatically).
Update PlatformClient contract, ChatContext, project structure tree,
and FSM diagrams across all docs to match the implemented core/.
- README.md: fix core/ structure tree + PlatformClient snippet
- docs/surface-protocol.md: remove session.py/_template.py, fix
ChatContext (drop session_id), fix PlatformClient contract, fix
"free features" list
- docs/telegram-prototype.md: remove "создаёт сессию на платформе"
- docs/matrix-prototype.md: same + remove !sessions, fix FSM
(SessionCreated → ChatCreated), fix status block
- docs/user-flow.md: rewrite sequence diagram to POST /users/{id}/
chats/{id}/messages; update FSM states
2026-03-29 21:42:02 +03:00
36730ae716
feat: implement core/ and platform/ with full test coverage
...
- platform/interface.py: PlatformClient Protocol + Pydantic models (User,
MessageResponse, UserSettings) — no explicit session management, Master
handles container lifecycle
- platform/mock.py: MockPlatformClient with simulated latency, [MOCK]
responses, is_new correctly True only on first creation
- core/protocol.py: unified dataclasses for all events and responses
(IncomingMessage/Command/Callback, OutgoingMessage/UI/Notification,
AuthFlow, ChatContext, SettingsAction, etc.)
- core/store.py: StateStore Protocol + InMemoryStore (tests) + SQLiteStore
(prod) with JSON serialization
- core/chat.py: ChatManager — chat metadata (C1/C2/C3), not container
lifecycle (that's the platform's job)
- core/auth.py: AuthManager — start_flow / confirm / is_authenticated
- core/settings.py: SettingsManager — get/apply with store cache
- core/handler.py: EventDispatcher — registry-based routing with keys
(command name, action name, attachment type, "*" catch-all)
- core/handlers/: register_all() + start/new/message/callback/settings
handlers; voice slot falls back to stub text until voice_handler added
- conftest.py: sys.path fix so local platform/ shadows stdlib platform
- docs/api-contract.md: rewritten for Lambda Lab 3.0 container model
46 tests passing, 0 warnings.
2026-03-29 21:42:02 +03:00
944c383552
fix: add setuptools-scm to build-system requires
2026-03-29 21:42:02 +03:00
ce8af9fa41
docs: add core implementation plan
2026-03-29 21:42:02 +03:00
53685747f6
docs: update core design and api-contract with platform container architecture
2026-03-29 21:42:02 +03:00
8e955045b2
docs: add core design spec (Registry + Handlers approach)
2026-03-29 21:42:02 +03:00
5aa0ae9e25
Update README.md
2026-03-26 21:57:13 +00:00
191175159a
chore: remove .claude/ and CLAUDE.md from tracking
...
Co-Authored-By: Claude Sonnet 4-6 <noreply@anthropic.com>
2026-03-27 00:55:00 +03:00
b6df29bd9b
init: surfaces-bot — Telegram & Matrix prototype
...
- Surface Protocol: unified IncomingMessage/OutgoingUI/ChatContext
- Telegram: Forum Topics (group + topics per chat)
- Matrix: Space + rooms per chat
- MockPlatformClient with PlatformClient Protocol
- docs: surface-protocol, telegram/matrix specs, api-contract, claude-code-guide
- project scaffold: src/, tests/, pyproject.toml
Co-Authored-By: Claude Sonnet 4-6 <noreply@anthropic.com>
2026-03-27 00:35:42 +03:00