Skip to content

Bot Module

voice_agent.bot

Telegram bot for voice-controlled Claude Code.

Handles voice messages and routes them to Claude sessions.

VoiceAgentBot

Telegram bot for voice control of Claude Code.

Attributes:

Name Type Description
settings

Application settings.

session_manager

Manages Claude sessions.

allowed_chat_ids

Set of chat IDs allowed to use the bot.

Source code in src/voice_agent/bot.py
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
class VoiceAgentBot:
    """Telegram bot for voice control of Claude Code.

    Attributes:
        settings: Application settings.
        session_manager: Manages Claude sessions.
        allowed_chat_ids: Set of chat IDs allowed to use the bot.
    """

    def __init__(self, settings: Settings) -> None:
        """Initialize the bot.

        Args:
            settings: Application settings.
        """
        self.settings = settings
        self.storage = SessionStorage(path=settings.session_storage_path)
        self.session_manager = SessionManager(
            default_cwd=settings.default_cwd,
            permission_timeout=settings.permission_timeout,
            storage=self.storage,
        )
        self.allowed_chat_ids = settings.get_allowed_chat_ids()
        self._prompt_locks: dict[int, asyncio.Lock] = {}
        self._active_tasks: dict[int, asyncio.Task[None]] = {}
        self._cancel_flags: dict[int, bool] = {}
        self._pending_renames: dict[int, str] = {}  # chat_id -> session name to rename

    def is_allowed(self, chat_id: int) -> bool:
        """Check if a chat ID is allowed to use the bot.

        Args:
            chat_id: Telegram chat ID.

        Returns:
            True if allowed (or if no whitelist configured).
        """
        if not self.allowed_chat_ids:
            return True
        return chat_id in self.allowed_chat_ids

    async def start_command(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle /start command.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            return

        await update.message.reply_text(  # type: ignore
            "Voice Agent ready. Send a voice or text message.\n\n"
            "Commands:\n"
            "- 'status' to check session state\n"
            "- 'sessions' to manage multiple sessions\n"
            "- 'resume' to pick up the last SSH session\n"
            "- 'restart' to reset (keeps context)\n"
            "- 'clear' to wipe context\n"
            "- 'yes/approve' or 'no/reject' for permission prompts\n"
            "- 'always approve' to sticky-approve similar tool calls\n"
            "- 'clear sticky' to reset sticky approvals\n"
            "- 'escape/stop task/abort' to cancel running task"
        )

    async def status_command(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle /status command.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            return

        status = self.session_manager.get_status(chat_id)
        if status:
            await update.message.reply_text(status)  # type: ignore
        else:
            await update.message.reply_text("No active session.")  # type: ignore

    async def handle_text(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle incoming text messages.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat or not update.message:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            logger.debug("Ignoring text from non-allowed chat %s", chat_id)
            return

        text = update.message.text
        if not text:
            return

        # Check for pending rename
        if chat_id in self._pending_renames:
            old_name = self._pending_renames.pop(chat_id)
            new_name = text.strip()
            if self.session_manager.rename_session(chat_id, old_name, new_name):
                await update.message.reply_text(f"Renamed '{old_name}' → '{new_name}'")
            else:
                await update.message.reply_text(
                    f"Failed to rename. Name '{new_name}' may already exist."
                )
            return

        logger.info("Received text from chat %s: %s", chat_id, text[:50])
        await self._handle_transcription(chat_id, text, update)

    async def handle_voice(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle incoming voice messages.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat or not update.message:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            logger.debug("Ignoring voice from non-allowed chat %s", chat_id)
            return

        voice = update.message.voice
        if not voice:
            return

        # Download audio
        try:
            file = await context.bot.get_file(voice.file_id)
            audio_bytes = await file.download_as_bytearray()
            logger.info(
                "Downloaded %d bytes of audio from chat %s", len(audio_bytes), chat_id
            )
        except Exception as e:
            logger.error("Failed to download voice: %s", e)
            await update.message.reply_text(f"Failed to download audio: {e}")
            return

        # Transcribe
        try:
            text = await transcribe(bytes(audio_bytes), self.settings.whisper_url)

            # Delete the voice message to keep chat clean
            await update.message.delete()

            # Echo transcription unless it's a skill invocation
            stripped = text.strip()
            is_skill = stripped.lower().startswith("skill ")
            if not stripped.startswith("/") and not is_skill:
                from html import escape

                tag = self._session_tag(chat_id)
                await update.message.chat.send_message(
                    f"{tag} <i>{escape(text)}</i>", parse_mode="HTML"
                )
        except TranscriptionError as e:
            logger.error("Transcription failed: %s", e)
            await update.message.reply_text(f"Transcription failed: {e}")
            return

        # Voice transcriptions are always sent as prompts to Claude.
        # Commands come from typed text, /commands, and buttons only.
        await self._handle_prompt(chat_id, text, update)

    async def handle_photo(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle incoming photo messages and image documents.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat or not update.message:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            logger.debug("Ignoring photo from non-allowed chat %s", chat_id)
            return

        # Determine file_id and media_type
        if update.message.photo:
            # Photos: pick highest resolution (last in the list)
            photo = update.message.photo[-1]
            file_id = photo.file_id
            media_type = "image/jpeg"
        elif (
            update.message.document
            and update.message.document.mime_type
            and update.message.document.mime_type.startswith("image/")
        ):
            file_id = update.message.document.file_id
            media_type = update.message.document.mime_type
        else:
            return

        # Download image
        try:
            file = await context.bot.get_file(file_id)
            image_bytes = await file.download_as_bytearray()
            logger.info(
                "Downloaded %d bytes of image from chat %s",
                len(image_bytes),
                chat_id,
            )
        except Exception as e:
            logger.error("Failed to download image: %s", e)
            await update.message.reply_text(f"Failed to download image: {e}")
            return

        caption = (
            update.message.caption
            or "Describe this image and assist with any requests"
        )
        image_data = base64.b64encode(bytes(image_bytes)).decode("ascii")
        image = ImageAttachment(data=image_data, media_type=media_type)

        await self._handle_prompt_with_images(chat_id, caption, [image], update)

    async def _handle_transcription(
        self, chat_id: int, text: str, update: Update
    ) -> None:
        """Handle a transcribed voice message.

        Args:
            chat_id: Telegram chat ID.
            text: Transcribed text.
            update: Telegram update for replying.
        """
        command = parse_command(text, self.settings.projects)

        if command.command_type == CommandType.APPROVE:
            await self._handle_approve(chat_id, update)
        elif command.command_type == CommandType.REJECT:
            await self._handle_reject(chat_id, update)
        elif command.command_type == CommandType.STICKY_APPROVE:
            await self._handle_sticky_approve(chat_id, update)
        elif command.command_type == CommandType.CLEAR_STICKY:
            await self._handle_clear_sticky(chat_id, update)
        elif command.command_type == CommandType.STATUS:
            await self._handle_status(chat_id, update)
        elif command.command_type == CommandType.CLEAR:
            await self._handle_clear(chat_id, update)
        elif command.command_type == CommandType.SWITCH_PROJECT:
            await self._handle_switch_project(chat_id, command.project, update)
        elif command.command_type == CommandType.CANCEL:
            await self._handle_cancel(chat_id, update)
        elif command.command_type == CommandType.LIST_APPROVALS:
            await self._handle_list_approvals(chat_id, update)
        elif command.command_type == CommandType.RESTART:
            await self._handle_restart(chat_id, update)
        elif command.command_type == CommandType.RESUME:
            await self._handle_resume(chat_id, update)
        elif command.command_type == CommandType.SESSIONS:
            await self._handle_sessions(chat_id, update)
        else:
            await self._handle_prompt(chat_id, command.text, update)

    async def _handle_approve(self, chat_id: int, update: Update) -> None:
        """Handle permission approval (silent - no feedback needed)."""
        session = self.session_manager.get(chat_id)
        if not session:
            await update.message.reply_text("No active session.")  # type: ignore
            return

        if not session.permission_handler.approve():
            await update.message.reply_text("No pending permission to approve.")  # type: ignore

    async def _handle_reject(self, chat_id: int, update: Update) -> None:
        """Handle permission rejection."""
        session = self.session_manager.get(chat_id)
        if not session:
            await update.message.reply_text("No active session.")  # type: ignore
            return

        # Get description before denying
        desc = session.permission_handler.get_pending_description()
        if session.permission_handler.deny("User rejected via voice"):
            from html import escape

            await update.message.reply_text(  # type: ignore
                f"❌ <b>Rejected:</b> {escape(desc or 'unknown')}", parse_mode="HTML"
            )
        else:
            await update.message.reply_text("No pending permission to reject.")  # type: ignore

    async def _handle_sticky_approve(self, chat_id: int, update: Update) -> None:
        """Handle sticky approval - approve and remember for similar calls."""
        session = self.session_manager.get(chat_id)
        if not session:
            await update.message.reply_text("No active session.")  # type: ignore
            return

        sticky = session.permission_handler.sticky_approve()
        if sticky:
            await update.message.reply_text(  # type: ignore
                f"Stickied: {sticky.describe()} auto-approved"
            )
        else:
            await update.message.reply_text("No pending permission to sticky approve.")  # type: ignore

    async def _handle_clear_sticky(self, chat_id: int, update: Update) -> None:
        """Handle clearing all sticky approvals."""
        session = self.session_manager.get(chat_id)
        if not session:
            await update.message.reply_text("No active session.")  # type: ignore
            return

        count = session.permission_handler.clear_sticky_approvals()
        if count > 0:
            await update.message.reply_text(f"Cleared {count} sticky approval(s).")  # type: ignore
        else:
            await update.message.reply_text("No sticky approvals to clear.")  # type: ignore

    async def _handle_list_approvals(self, chat_id: int, update: Update) -> None:
        """Handle listing all sticky approvals with revoke buttons."""
        session = self.session_manager.get(chat_id)
        if not session:
            await update.message.reply_text("No active session.")  # type: ignore
            return

        approvals = session.permission_handler.get_sticky_approvals()
        if not approvals:
            await update.message.reply_text("No auto-approvals configured.")  # type: ignore
            return

        # Build message with list of approvals
        lines = ["<b>Auto-approvals:</b>"]
        for i, approval in enumerate(approvals):
            lines.append(f"{i + 1}. {approval.describe()}")

        # Build keyboard with revoke buttons (max 4 per row)
        buttons = [
            InlineKeyboardButton(f"❌ {i + 1}", callback_data=f"revoke_{i}")
            for i in range(len(approvals))
        ]
        # Chunk into rows of 4
        rows = [buttons[i : i + 4] for i in range(0, len(buttons), 4)]
        rows.append([InlineKeyboardButton("🗑️ Revoke All", callback_data="revoke_all")])
        keyboard = InlineKeyboardMarkup(rows)

        await update.message.reply_text(  # type: ignore
            "\n".join(lines), reply_markup=keyboard, parse_mode="HTML"
        )

    async def approvals_command(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle /approvals command.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            return

        await self._handle_list_approvals(chat_id, update)

    async def handle_callback(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle inline keyboard button presses."""
        query = update.callback_query
        if not query or not query.data:
            return

        await query.answer()

        chat_id = query.message.chat.id if query.message else None
        if not chat_id or not self.is_allowed(chat_id):
            return

        # Handle resume selection
        if query.data.startswith("resume_"):
            session_id = query.data[7:]
            await self._handle_resume_callback(chat_id, session_id, query)
            return

        # Handle session operations first (don't require existing session)
        if query.data == "session_new":
            await self._handle_session_new_callback(chat_id, query)
            return
        if query.data.startswith("session_switch_"):
            name = query.data[15:]
            await self._handle_session_switch_callback(chat_id, name, query)
            return
        if query.data.startswith("session_close_confirm_"):
            name = query.data[22:]
            await self._handle_session_close_confirm_callback(chat_id, name, query)
            return
        if query.data.startswith("session_close_cancel_"):
            await query.delete_message()
            return
        if query.data.startswith("session_close_"):
            name = query.data[14:]
            await self._handle_session_close_callback(chat_id, name, query)
            return
        if query.data.startswith("session_rename_"):
            name = query.data[15:]
            await self._handle_session_rename_callback(chat_id, name, query)
            return

        session = self.session_manager.get(chat_id)
        if not session:
            await query.edit_message_text("No active session.")
            return

        if query.data == "approve":
            if session.permission_handler.approve():
                await query.delete_message()
            else:
                await query.edit_message_text("No pending permission.")
        elif query.data == "sticky_approve":
            sticky = session.permission_handler.sticky_approve()
            if sticky:
                await query.edit_message_text(
                    f"Stickied: {sticky.describe()} auto-approved"
                )
            else:
                await query.edit_message_text("No pending permission.")
        elif query.data == "reject":
            # Get description before denying (deny clears pending)
            desc = session.permission_handler.get_pending_description()
            if session.permission_handler.deny("User rejected via button"):
                from html import escape

                await query.edit_message_text(
                    f"❌ <b>Rejected:</b> {escape(desc or 'unknown')}",
                    parse_mode="HTML",
                )
            else:
                await query.edit_message_text("No pending permission.")
        elif query.data == "cancel":
            task = self._active_tasks.get(chat_id)
            if task and not task.done():
                self._cancel_flags[chat_id] = True
                task.cancel()
                # Don't edit message here - let run_prompt() handle cleanup
                # to avoid race condition with the finally block
            else:
                await query.edit_message_text("No running task to cancel.")
        elif query.data == "revoke_all":
            count = session.permission_handler.clear_sticky_approvals()
            if count > 0:
                await query.edit_message_text(f"Revoked all {count} auto-approval(s).")
            else:
                await query.edit_message_text("No auto-approvals to revoke.")
        elif query.data.startswith("revoke_"):
            index_str = query.data[7:]  # Remove "revoke_" prefix
            try:
                index = int(index_str)
                removed = session.permission_handler.remove_sticky_approval(index)
                if removed:
                    await query.edit_message_text(f"Revoked: {removed.describe()}")
                else:
                    await query.edit_message_text("Invalid approval index.")
            except ValueError:
                await query.edit_message_text("Invalid revoke command.")
        elif query.data == "confirm_restart":
            msg = await self._do_restart(chat_id)
            await query.edit_message_text(msg)
        elif query.data == "cancel_restart":
            await query.edit_message_text("Restart cancelled.")

    async def _handle_status(self, chat_id: int, update: Update) -> None:
        """Handle status request."""
        status = self.session_manager.get_status(chat_id)
        if status:
            await update.message.reply_text(status)  # type: ignore
        else:
            await update.message.reply_text("No active session.")  # type: ignore

    async def _handle_clear(self, chat_id: int, update: Update) -> None:
        """Handle clear context request — wipe claude_session_id."""
        session = self.session_manager.get(chat_id)
        if session and session.claude_session_id:
            session.claude_session_id = None
            self.session_manager._persist_session(session)
            await update.message.reply_text(  # type: ignore
                "Context cleared. Next message starts fresh."
            )
        else:
            await update.message.reply_text("No context to clear.")  # type: ignore

    @staticmethod
    def _get_last_user_message(lines: list[str]) -> str:
        """Extract last plain-text user message from JSONL lines."""
        for line in reversed(lines):
            try:
                entry = json.loads(line)
                if entry.get("type") == "user":
                    content = entry.get("message", {}).get("content", "")
                    if isinstance(content, str) and content.strip():
                        return content.strip()[:60]
            except (json.JSONDecodeError, AttributeError):
                continue
        return ""

    def _find_recent_sessions(
        self, cwd: str, limit: int = 10
    ) -> list[tuple[str, str, float]]:
        """Find recent Claude sessions for a cwd.

        Args:
            cwd: Working directory to match.
            limit: Max sessions to return.

        Returns:
            List of (session_id, last_user_message, mtime) sorted newest first.
        """
        import time

        projects_dir = Path.home() / ".claude" / "projects"
        if not projects_dir.exists():
            return []

        candidates: list[tuple[float, Path]] = []
        for jsonl in projects_dir.rglob("*.jsonl"):
            candidates.append((jsonl.stat().st_mtime, jsonl))
        candidates.sort(key=lambda x: x[0], reverse=True)

        now = time.time()
        results: list[tuple[str, str, float]] = []
        for mtime, jsonl in candidates:
            if len(results) >= limit:
                break
            # Skip very recently modified files (likely running sessions)
            if now - mtime < 30:
                continue
            # Skip agent-spawned sessions
            if jsonl.stem.startswith("agent-"):
                continue
            try:
                with open(jsonl) as f:
                    lines = f.readlines()
                if len(lines) < 2:
                    continue
                meta = json.loads(lines[0])
                file_cwd = meta.get("cwd") or json.loads(lines[1]).get("cwd")
                if not file_cwd:
                    continue
                if Path(file_cwd).resolve() != Path(cwd).resolve():
                    continue
                last_msg = self._get_last_user_message(lines)
                if not last_msg:
                    continue
                results.append((jsonl.stem, last_msg, mtime))
            except (json.JSONDecodeError, OSError):
                continue
        return results

    async def _handle_resume(self, chat_id: int, update: Update) -> None:
        """Handle resume request — show recent sessions to pick from."""
        session = self.session_manager.get_or_create(chat_id)
        sessions = self._find_recent_sessions(session.cwd)

        if not sessions:
            await update.message.reply_text("No sessions found to resume.")  # type: ignore
            return

        import time

        rows: list[list[InlineKeyboardButton]] = []
        for sid, last_msg, mtime in sessions:
            age_min = int((time.time() - mtime) / 60)
            if age_min < 60:
                age = f"{age_min}m"
            elif age_min < 1440:
                age = f"{age_min // 60}h"
            else:
                age = f"{age_min // 1440}d"
            rows.append(
                [
                    InlineKeyboardButton(
                        f"{age} · {last_msg}", callback_data=f"resume_{sid}"
                    )
                ]
            )

        keyboard = InlineKeyboardMarkup(rows)
        await update.message.reply_text(  # type: ignore
            "Pick a session:", reply_markup=keyboard
        )

    async def _handle_resume_callback(
        self, chat_id: int, session_id: str, query: Any
    ) -> None:
        """Handle resume button selection."""
        session = self.session_manager.get_or_create(chat_id)

        if session.claude_session_id == session_id:
            await query.edit_message_text("Already on this session.")
            return

        session.claude_session_id = session_id
        self.session_manager._persist_session(session)
        await self.session_manager._close_client(session)

        await query.edit_message_text(f"Resumed session {session_id[:8]}")

    async def _handle_switch_project(
        self, chat_id: int, project: str | None, update: Update
    ) -> None:
        """Handle project switch request."""
        if not project or project not in self.settings.projects:
            projects = ", ".join(self.settings.projects.keys())
            await update.message.reply_text(  # type: ignore
                f"Unknown project. Available: {projects}"
            )
            return

        cwd = self.settings.projects[project]
        self.session_manager.set_cwd(chat_id, cwd)
        await update.message.reply_text(f"Switched to {project} ({cwd})")  # type: ignore

    async def _handle_cancel(self, chat_id: int, update: Update) -> None:
        """Handle cancel/escape request to stop running task."""
        task = self._active_tasks.get(chat_id)
        if task and not task.done():
            self._cancel_flags[chat_id] = True
            task.cancel()
            with contextlib.suppress(asyncio.CancelledError):
                await task
            self._active_tasks.pop(chat_id, None)
            self._cancel_flags.pop(chat_id, None)
            await update.message.reply_text("⏹️ Task cancelled.")  # type: ignore
        else:
            await update.message.reply_text("No running task to cancel.")  # type: ignore

    async def _handle_restart(self, chat_id: int, update: Update) -> None:
        """Handle restart request - show confirmation dialog."""
        session = self.session_manager.get(chat_id)
        sticky_count = (
            len(session.permission_handler.get_sticky_approvals()) if session else 0
        )

        # Build confirmation message
        msg = "Are you sure you want to restart?"
        if sticky_count > 0:
            msg += f"\n\nThis will clear {sticky_count} auto-approval(s)."

        keyboard = InlineKeyboardMarkup(
            [
                [
                    InlineKeyboardButton(
                        "Yes, restart", callback_data="confirm_restart"
                    ),
                    InlineKeyboardButton("Cancel", callback_data="cancel_restart"),
                ]
            ]
        )
        await update.message.reply_text(msg, reply_markup=keyboard)  # type: ignore

    async def _do_restart(self, chat_id: int) -> str:
        """Actually perform the restart. Returns status message."""
        # Cancel any running task first
        task = self._active_tasks.get(chat_id)
        if task and not task.done():
            self._cancel_flags[chat_id] = True
            task.cancel()
            with contextlib.suppress(asyncio.CancelledError):
                await task
            self._active_tasks.pop(chat_id, None)
            self._cancel_flags.pop(chat_id, None)

        # Preserve claude_session_id across restart
        session = self.session_manager.get(chat_id)
        saved_session_id = session.claude_session_id if session else None
        sticky_count = 0
        if session:
            sticky_count = session.permission_handler.clear_sticky_approvals()

        # Close SDK client and create fresh session
        await self.session_manager.create_new_async(chat_id)

        # Restore claude_session_id so next message resumes context
        if saved_session_id:
            new_session = self.session_manager.get(chat_id)
            if new_session:
                new_session.claude_session_id = saved_session_id
                self.session_manager._persist_session(new_session)

        # Build status message
        parts = ["🔄 Restarted."]
        if sticky_count > 0:
            parts.append(f"Cleared {sticky_count} auto-approval(s).")
        if saved_session_id:
            parts.append("Context preserved.")
        return " ".join(parts)

    async def _handle_sessions(self, chat_id: int, update: Update) -> None:
        """Handle sessions dialog request."""
        await self._show_sessions_dialog(chat_id, update)

    async def _show_sessions_dialog(self, chat_id: int, update: Update) -> None:
        """Show the sessions dialog with interactive buttons."""
        sessions = self.session_manager.list_sessions(chat_id)

        if not sessions:
            # No sessions yet, create main and show dialog
            self.session_manager.get_or_create(chat_id)
            sessions = self.session_manager.list_sessions(chat_id)

        # Build session list with fruit indicators
        lines = ["📂 <b>Sessions</b>\n"]
        fruits = self._SESSION_FRUITS
        for i, s in enumerate(sessions):
            fruit = fruits[i % len(fruits)]
            active = " ←" if s.is_active else ""
            cwd_short = s.cwd.split("/")[-1] or s.cwd
            lines.append(
                f"{fruit} {s.name}{active}"
                f" · {s.message_count} msgs · {cwd_short}"
            )

        # Build keyboard
        rows: list[list[InlineKeyboardButton]] = []

        # Switch buttons row
        switch_buttons = [
            InlineKeyboardButton(
                f"{fruits[i % len(fruits)]} {s.name}",
                callback_data=f"session_switch_{s.name}",
            )
            for i, s in enumerate(sessions)
        ]
        # Chunk switch buttons into rows of 2
        for i in range(0, len(switch_buttons), 2):
            rows.append(switch_buttons[i : i + 2])

        # New session button
        rows.append(
            [InlineKeyboardButton("+ New Session", callback_data="session_new")]
        )

        # Rename buttons row
        rename_buttons = [
            InlineKeyboardButton(
                f"✏️ {fruits[i % len(fruits)]}", callback_data=f"session_rename_{s.name}"
            )
            for i, s in enumerate(sessions)
        ]
        for i in range(0, len(rename_buttons), 2):
            rows.append(rename_buttons[i : i + 2])

        # Close buttons row
        close_buttons = [
            InlineKeyboardButton(
                f"✕ {fruits[i % len(fruits)]}", callback_data=f"session_close_{s.name}"
            )
            for i, s in enumerate(sessions)
        ]
        for i in range(0, len(close_buttons), 2):
            rows.append(close_buttons[i : i + 2])

        keyboard = InlineKeyboardMarkup(rows)

        await update.message.reply_text(  # type: ignore
            "\n".join(lines), reply_markup=keyboard, parse_mode="HTML"
        )

    async def sessions_command(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle /sessions command.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            return

        await self._handle_sessions(chat_id, update)

    async def _handle_session_new_callback(self, chat_id: int, query: Any) -> None:
        """Handle new session button click."""
        name = self.session_manager.generate_session_name(chat_id)
        self.session_manager.create_new(chat_id, name=name)
        fruit = self._session_tag(chat_id)
        await query.edit_message_text(f"{fruit} {name}")

    async def _handle_session_switch_callback(
        self, chat_id: int, name: str, query: Any
    ) -> None:
        """Handle session switch button click."""
        session = self.session_manager.switch_session(chat_id, name)
        if session:
            fruit = self._session_tag(chat_id)
            await query.edit_message_text(f"{fruit} {name}")
        else:
            await query.edit_message_text(f"Session '{name}' not found.")

    async def _handle_session_close_callback(
        self, chat_id: int, name: str, query: Any
    ) -> None:
        """Handle session close button click - show confirmation."""
        sessions = self.session_manager.list_sessions(chat_id)
        session_info = next((s for s in sessions if s.name == name), None)

        if not session_info:
            await query.edit_message_text(f"Session '{name}' not found.")
            return

        msg = f"Close session '{name}'?"
        if session_info.message_count > 0:
            msg += f"\n\nThis session has {session_info.message_count} message(s)."

        keyboard = InlineKeyboardMarkup(
            [
                [
                    InlineKeyboardButton(
                        "Yes, close", callback_data=f"session_close_confirm_{name}"
                    ),
                    InlineKeyboardButton(
                        "Cancel", callback_data=f"session_close_cancel_{name}"
                    ),
                ]
            ]
        )
        await query.edit_message_text(msg, reply_markup=keyboard)

    async def _handle_session_close_confirm_callback(
        self, chat_id: int, name: str, query: Any
    ) -> None:
        """Handle session close confirmation."""
        closed = await self.session_manager.close_session_async(chat_id, name)
        if closed:
            await query.delete_message()
        else:
            await query.edit_message_text(f"Session '{name}' not found.")

    async def _handle_session_rename_callback(
        self, chat_id: int, name: str, query: Any
    ) -> None:
        """Handle session rename button click - prompt for new name."""
        self._pending_renames[chat_id] = name
        await query.edit_message_text(f"Send new name for session '{name}':")

    async def restart_command(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Handle /restart command.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            return

        await self._handle_restart(chat_id, update)

    def _get_prompt_lock(self, chat_id: int) -> asyncio.Lock:
        """Get or create a lock for serializing prompts per chat."""
        if chat_id not in self._prompt_locks:
            self._prompt_locks[chat_id] = asyncio.Lock()
        return self._prompt_locks[chat_id]

    async def _send_formatted(
        self,
        update: Update,
        text: str,
        chat_id: int | None = None,
    ) -> None:
        """Send a message with Telegram MarkdownV2 formatting.

        Sends directly to the chat rather than replying to the
        triggering message.  This avoids stale-reply ordering when
        messages are queued behind a lock.

        Falls back to plain text if formatting fails.

        Args:
            update: Telegram update (used for bot reference).
            text: Text to send (may contain Markdown).
            chat_id: Optional chat ID for session tag.
        """
        target_chat_id = chat_id or (
            update.effective_chat.id if update.effective_chat else None
        )
        if not target_chat_id:
            return
        if chat_id:
            tag = self._session_tag(chat_id)
            text = f"{tag} {text}"
        bot = update.get_bot()
        try:
            formatted = convert_markdown_to_telegram(text)
            await bot.send_message(
                target_chat_id, formatted, parse_mode="MarkdownV2"
            )
        except Exception as e:
            # Fall back to plain text if formatting fails
            logger.debug("Markdown formatting failed, falling back to plain: %s", e)
            await bot.send_message(target_chat_id, text)

    _SESSION_FRUITS = ["🍎", "🍊", "🍋", "🍇", "🍉", "🍓", "🍑", "🍒", "🥝", "🍍"]

    def _session_tag(self, chat_id: int) -> str:
        """Get session indicator tag for messages."""
        sessions = self.session_manager.list_sessions(chat_id)
        active = self.session_manager.get_active_session_name(chat_id)
        for i, s in enumerate(sessions):
            if s.name == active:
                return self._SESSION_FRUITS[i % len(self._SESSION_FRUITS)]
        return self._SESSION_FRUITS[0]

    async def unknown_command(
        self, update: Update, context: ContextTypes.DEFAULT_TYPE
    ) -> None:
        """Forward unknown /commands to Claude as skill invocations.

        Args:
            update: Telegram update.
            context: Callback context.
        """
        if not update.effective_chat or not update.message:
            return

        chat_id = update.effective_chat.id
        if not self.is_allowed(chat_id):
            return

        text = update.message.text
        if not text:
            return

        # Delete the command message to keep chat clean
        await update.message.delete()

        await self._handle_prompt(chat_id, text, update)

    async def _handle_prompt(self, chat_id: int, text: str, update: Update) -> None:
        """Handle a prompt to send to Claude."""
        await self._handle_prompt_with_images(chat_id, text, None, update)

    async def _handle_prompt_with_images(
        self,
        chat_id: int,
        text: str,
        images: list[ImageAttachment] | None,
        update: Update,
    ) -> None:
        """Handle a prompt with optional images to send to Claude."""
        tag = self._session_tag(chat_id)

        # Set up notification callback for this chat
        async def notify_permission(tool_name: str, input_data: dict[str, Any]) -> None:
            desc = f"{tag} Claude wants to use {tool_name}"
            if tool_name == "Bash":
                cmd = input_data.get("command", "unknown")
                desc = f"{tag} Run: {cmd}"
            elif tool_name in ("Write", "Edit"):
                path = input_data.get("file_path", "unknown")
                desc = f"{tag} Modify: {path}"
            keyboard = InlineKeyboardMarkup(
                [
                    [
                        InlineKeyboardButton("Approve", callback_data="approve"),
                        InlineKeyboardButton("Always", callback_data="sticky_approve"),
                        InlineKeyboardButton("Reject", callback_data="reject"),
                    ]
                ]
            )
            await update.get_bot().send_message(
                chat_id, desc, reply_markup=keyboard
            )

        self.session_manager.set_notify_callback(chat_id, notify_permission)

        lock = self._get_prompt_lock(chat_id)
        bot = update.get_bot()

        # Run prompt in background task so bot can still receive messages
        async def run_prompt() -> None:
            # Notify if we're waiting for another prompt to finish
            if lock.locked():
                await bot.send_message(
                    chat_id, f"{tag} (Queued, waiting for previous request...)"
                )
            async with lock:
                logger.info("Processing prompt for chat %s: %s", chat_id, text[:50])
                self._cancel_flags[chat_id] = False
                this_task = asyncio.current_task()

                # Send "working" message with Stop button
                stop_keyboard = InlineKeyboardMarkup(
                    [[InlineKeyboardButton("🛑 Stop", callback_data="cancel")]]
                )
                working_msg = await bot.send_message(
                    chat_id,
                    f"{tag} ⏳ Working...",
                    reply_markup=stop_keyboard,
                )

                response_buffer: list[str] = []
                try:
                    async for chunk in self.session_manager.send_prompt(
                        chat_id, text, images=images
                    ):
                        # Check if cancelled
                        if self._cancel_flags.get(chat_id, False):
                            logger.info("Task cancelled for chat %s", chat_id)
                            break
                        response_buffer.append(chunk)

                        # Send in batches to avoid too many messages
                        if len(response_buffer) >= 5:
                            await self._send_formatted(
                                update, "\n".join(response_buffer), chat_id
                            )
                            response_buffer = []

                    # Send remaining
                    if response_buffer and not self._cancel_flags.get(chat_id, False):
                        await self._send_formatted(
                            update, "\n".join(response_buffer), chat_id
                        )
                except asyncio.CancelledError:
                    logger.info("Task cancelled for chat %s", chat_id)
                    # Close SDK client to discard the interrupted response
                    # stream — otherwise the next query reads stale data
                    # from the old prompt
                    with contextlib.suppress(Exception):
                        session = self.session_manager.get(chat_id)
                        if session:
                            await self.session_manager._close_client(session)
                except Exception as e:
                    logger.exception("Error in background prompt for chat %s", chat_id)
                    await bot.send_message(chat_id, f"Error: {e}")
                finally:
                    was_cancelled = self._cancel_flags.get(chat_id, False)
                    # Only clean up tracking if we're still the registered
                    # task — a new message may have replaced us already
                    if self._active_tasks.get(chat_id) is this_task:
                        self._active_tasks.pop(chat_id, None)
                        self._cancel_flags.pop(chat_id, None)
                    # Update or remove the "Working..." message
                    with contextlib.suppress(Exception):
                        if was_cancelled:
                            await working_msg.edit_text("⏹️ Task cancelled.")
                        else:
                            await working_msg.delete()

        task = asyncio.create_task(run_prompt())
        self._active_tasks[chat_id] = task

    def build_application(self) -> Application:  # type: ignore
        """Build the Telegram application.

        Returns:
            Configured Application instance.
        """
        app = Application.builder().token(self.settings.telegram_bot_token).build()

        # Add handlers
        app.add_handler(CommandHandler("start", self.start_command))
        app.add_handler(CommandHandler("status", self.status_command))
        app.add_handler(CommandHandler("restart", self.restart_command))
        app.add_handler(CommandHandler("approvals", self.approvals_command))
        app.add_handler(CommandHandler("sessions", self.sessions_command))
        app.add_handler(CallbackQueryHandler(self.handle_callback))
        app.add_handler(MessageHandler(filters.VOICE, self.handle_voice))
        app.add_handler(MessageHandler(filters.PHOTO, self.handle_photo))
        app.add_handler(MessageHandler(filters.Document.IMAGE, self.handle_photo))
        app.add_handler(
            MessageHandler(filters.TEXT & ~filters.COMMAND, self.handle_text)
        )
        # Catch-all for unrecognized /commands - forward to Claude for skill invocation
        app.add_handler(MessageHandler(filters.COMMAND, self.unknown_command))

        return app

    def run(self) -> None:
        """Run the bot with polling."""
        logger.info("Starting Voice Agent bot...")
        app = self.build_application()
        app.run_polling(allowed_updates=Update.ALL_TYPES)

__init__(settings)

Initialize the bot.

Parameters:

Name Type Description Default
settings Settings

Application settings.

required
Source code in src/voice_agent/bot.py
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
def __init__(self, settings: Settings) -> None:
    """Initialize the bot.

    Args:
        settings: Application settings.
    """
    self.settings = settings
    self.storage = SessionStorage(path=settings.session_storage_path)
    self.session_manager = SessionManager(
        default_cwd=settings.default_cwd,
        permission_timeout=settings.permission_timeout,
        storage=self.storage,
    )
    self.allowed_chat_ids = settings.get_allowed_chat_ids()
    self._prompt_locks: dict[int, asyncio.Lock] = {}
    self._active_tasks: dict[int, asyncio.Task[None]] = {}
    self._cancel_flags: dict[int, bool] = {}
    self._pending_renames: dict[int, str] = {}  # chat_id -> session name to rename

approvals_command(update, context) async

Handle /approvals command.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
async def approvals_command(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle /approvals command.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        return

    await self._handle_list_approvals(chat_id, update)

build_application()

Build the Telegram application.

Returns:

Type Description
Application

Configured Application instance.

Source code in src/voice_agent/bot.py
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
def build_application(self) -> Application:  # type: ignore
    """Build the Telegram application.

    Returns:
        Configured Application instance.
    """
    app = Application.builder().token(self.settings.telegram_bot_token).build()

    # Add handlers
    app.add_handler(CommandHandler("start", self.start_command))
    app.add_handler(CommandHandler("status", self.status_command))
    app.add_handler(CommandHandler("restart", self.restart_command))
    app.add_handler(CommandHandler("approvals", self.approvals_command))
    app.add_handler(CommandHandler("sessions", self.sessions_command))
    app.add_handler(CallbackQueryHandler(self.handle_callback))
    app.add_handler(MessageHandler(filters.VOICE, self.handle_voice))
    app.add_handler(MessageHandler(filters.PHOTO, self.handle_photo))
    app.add_handler(MessageHandler(filters.Document.IMAGE, self.handle_photo))
    app.add_handler(
        MessageHandler(filters.TEXT & ~filters.COMMAND, self.handle_text)
    )
    # Catch-all for unrecognized /commands - forward to Claude for skill invocation
    app.add_handler(MessageHandler(filters.COMMAND, self.unknown_command))

    return app

handle_callback(update, context) async

Handle inline keyboard button presses.

Source code in src/voice_agent/bot.py
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
async def handle_callback(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle inline keyboard button presses."""
    query = update.callback_query
    if not query or not query.data:
        return

    await query.answer()

    chat_id = query.message.chat.id if query.message else None
    if not chat_id or not self.is_allowed(chat_id):
        return

    # Handle resume selection
    if query.data.startswith("resume_"):
        session_id = query.data[7:]
        await self._handle_resume_callback(chat_id, session_id, query)
        return

    # Handle session operations first (don't require existing session)
    if query.data == "session_new":
        await self._handle_session_new_callback(chat_id, query)
        return
    if query.data.startswith("session_switch_"):
        name = query.data[15:]
        await self._handle_session_switch_callback(chat_id, name, query)
        return
    if query.data.startswith("session_close_confirm_"):
        name = query.data[22:]
        await self._handle_session_close_confirm_callback(chat_id, name, query)
        return
    if query.data.startswith("session_close_cancel_"):
        await query.delete_message()
        return
    if query.data.startswith("session_close_"):
        name = query.data[14:]
        await self._handle_session_close_callback(chat_id, name, query)
        return
    if query.data.startswith("session_rename_"):
        name = query.data[15:]
        await self._handle_session_rename_callback(chat_id, name, query)
        return

    session = self.session_manager.get(chat_id)
    if not session:
        await query.edit_message_text("No active session.")
        return

    if query.data == "approve":
        if session.permission_handler.approve():
            await query.delete_message()
        else:
            await query.edit_message_text("No pending permission.")
    elif query.data == "sticky_approve":
        sticky = session.permission_handler.sticky_approve()
        if sticky:
            await query.edit_message_text(
                f"Stickied: {sticky.describe()} auto-approved"
            )
        else:
            await query.edit_message_text("No pending permission.")
    elif query.data == "reject":
        # Get description before denying (deny clears pending)
        desc = session.permission_handler.get_pending_description()
        if session.permission_handler.deny("User rejected via button"):
            from html import escape

            await query.edit_message_text(
                f"❌ <b>Rejected:</b> {escape(desc or 'unknown')}",
                parse_mode="HTML",
            )
        else:
            await query.edit_message_text("No pending permission.")
    elif query.data == "cancel":
        task = self._active_tasks.get(chat_id)
        if task and not task.done():
            self._cancel_flags[chat_id] = True
            task.cancel()
            # Don't edit message here - let run_prompt() handle cleanup
            # to avoid race condition with the finally block
        else:
            await query.edit_message_text("No running task to cancel.")
    elif query.data == "revoke_all":
        count = session.permission_handler.clear_sticky_approvals()
        if count > 0:
            await query.edit_message_text(f"Revoked all {count} auto-approval(s).")
        else:
            await query.edit_message_text("No auto-approvals to revoke.")
    elif query.data.startswith("revoke_"):
        index_str = query.data[7:]  # Remove "revoke_" prefix
        try:
            index = int(index_str)
            removed = session.permission_handler.remove_sticky_approval(index)
            if removed:
                await query.edit_message_text(f"Revoked: {removed.describe()}")
            else:
                await query.edit_message_text("Invalid approval index.")
        except ValueError:
            await query.edit_message_text("Invalid revoke command.")
    elif query.data == "confirm_restart":
        msg = await self._do_restart(chat_id)
        await query.edit_message_text(msg)
    elif query.data == "cancel_restart":
        await query.edit_message_text("Restart cancelled.")

handle_photo(update, context) async

Handle incoming photo messages and image documents.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
async def handle_photo(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle incoming photo messages and image documents.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat or not update.message:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        logger.debug("Ignoring photo from non-allowed chat %s", chat_id)
        return

    # Determine file_id and media_type
    if update.message.photo:
        # Photos: pick highest resolution (last in the list)
        photo = update.message.photo[-1]
        file_id = photo.file_id
        media_type = "image/jpeg"
    elif (
        update.message.document
        and update.message.document.mime_type
        and update.message.document.mime_type.startswith("image/")
    ):
        file_id = update.message.document.file_id
        media_type = update.message.document.mime_type
    else:
        return

    # Download image
    try:
        file = await context.bot.get_file(file_id)
        image_bytes = await file.download_as_bytearray()
        logger.info(
            "Downloaded %d bytes of image from chat %s",
            len(image_bytes),
            chat_id,
        )
    except Exception as e:
        logger.error("Failed to download image: %s", e)
        await update.message.reply_text(f"Failed to download image: {e}")
        return

    caption = (
        update.message.caption
        or "Describe this image and assist with any requests"
    )
    image_data = base64.b64encode(bytes(image_bytes)).decode("ascii")
    image = ImageAttachment(data=image_data, media_type=media_type)

    await self._handle_prompt_with_images(chat_id, caption, [image], update)

handle_text(update, context) async

Handle incoming text messages.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
async def handle_text(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle incoming text messages.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat or not update.message:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        logger.debug("Ignoring text from non-allowed chat %s", chat_id)
        return

    text = update.message.text
    if not text:
        return

    # Check for pending rename
    if chat_id in self._pending_renames:
        old_name = self._pending_renames.pop(chat_id)
        new_name = text.strip()
        if self.session_manager.rename_session(chat_id, old_name, new_name):
            await update.message.reply_text(f"Renamed '{old_name}' → '{new_name}'")
        else:
            await update.message.reply_text(
                f"Failed to rename. Name '{new_name}' may already exist."
            )
        return

    logger.info("Received text from chat %s: %s", chat_id, text[:50])
    await self._handle_transcription(chat_id, text, update)

handle_voice(update, context) async

Handle incoming voice messages.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
async def handle_voice(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle incoming voice messages.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat or not update.message:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        logger.debug("Ignoring voice from non-allowed chat %s", chat_id)
        return

    voice = update.message.voice
    if not voice:
        return

    # Download audio
    try:
        file = await context.bot.get_file(voice.file_id)
        audio_bytes = await file.download_as_bytearray()
        logger.info(
            "Downloaded %d bytes of audio from chat %s", len(audio_bytes), chat_id
        )
    except Exception as e:
        logger.error("Failed to download voice: %s", e)
        await update.message.reply_text(f"Failed to download audio: {e}")
        return

    # Transcribe
    try:
        text = await transcribe(bytes(audio_bytes), self.settings.whisper_url)

        # Delete the voice message to keep chat clean
        await update.message.delete()

        # Echo transcription unless it's a skill invocation
        stripped = text.strip()
        is_skill = stripped.lower().startswith("skill ")
        if not stripped.startswith("/") and not is_skill:
            from html import escape

            tag = self._session_tag(chat_id)
            await update.message.chat.send_message(
                f"{tag} <i>{escape(text)}</i>", parse_mode="HTML"
            )
    except TranscriptionError as e:
        logger.error("Transcription failed: %s", e)
        await update.message.reply_text(f"Transcription failed: {e}")
        return

    # Voice transcriptions are always sent as prompts to Claude.
    # Commands come from typed text, /commands, and buttons only.
    await self._handle_prompt(chat_id, text, update)

is_allowed(chat_id)

Check if a chat ID is allowed to use the bot.

Parameters:

Name Type Description Default
chat_id int

Telegram chat ID.

required

Returns:

Type Description
bool

True if allowed (or if no whitelist configured).

Source code in src/voice_agent/bot.py
61
62
63
64
65
66
67
68
69
70
71
72
def is_allowed(self, chat_id: int) -> bool:
    """Check if a chat ID is allowed to use the bot.

    Args:
        chat_id: Telegram chat ID.

    Returns:
        True if allowed (or if no whitelist configured).
    """
    if not self.allowed_chat_ids:
        return True
    return chat_id in self.allowed_chat_ids

restart_command(update, context) async

Handle /restart command.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
async def restart_command(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle /restart command.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        return

    await self._handle_restart(chat_id, update)

run()

Run the bot with polling.

Source code in src/voice_agent/bot.py
1145
1146
1147
1148
1149
def run(self) -> None:
    """Run the bot with polling."""
    logger.info("Starting Voice Agent bot...")
    app = self.build_application()
    app.run_polling(allowed_updates=Update.ALL_TYPES)

sessions_command(update, context) async

Handle /sessions command.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
async def sessions_command(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle /sessions command.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        return

    await self._handle_sessions(chat_id, update)

start_command(update, context) async

Handle /start command.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
async def start_command(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle /start command.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        return

    await update.message.reply_text(  # type: ignore
        "Voice Agent ready. Send a voice or text message.\n\n"
        "Commands:\n"
        "- 'status' to check session state\n"
        "- 'sessions' to manage multiple sessions\n"
        "- 'resume' to pick up the last SSH session\n"
        "- 'restart' to reset (keeps context)\n"
        "- 'clear' to wipe context\n"
        "- 'yes/approve' or 'no/reject' for permission prompts\n"
        "- 'always approve' to sticky-approve similar tool calls\n"
        "- 'clear sticky' to reset sticky approvals\n"
        "- 'escape/stop task/abort' to cancel running task"
    )

status_command(update, context) async

Handle /status command.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
async def status_command(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Handle /status command.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        return

    status = self.session_manager.get_status(chat_id)
    if status:
        await update.message.reply_text(status)  # type: ignore
    else:
        await update.message.reply_text("No active session.")  # type: ignore

unknown_command(update, context) async

Forward unknown /commands to Claude as skill invocations.

Parameters:

Name Type Description Default
update Update

Telegram update.

required
context DEFAULT_TYPE

Callback context.

required
Source code in src/voice_agent/bot.py
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
async def unknown_command(
    self, update: Update, context: ContextTypes.DEFAULT_TYPE
) -> None:
    """Forward unknown /commands to Claude as skill invocations.

    Args:
        update: Telegram update.
        context: Callback context.
    """
    if not update.effective_chat or not update.message:
        return

    chat_id = update.effective_chat.id
    if not self.is_allowed(chat_id):
        return

    text = update.message.text
    if not text:
        return

    # Delete the command message to keep chat clean
    await update.message.delete()

    await self._handle_prompt(chat_id, text, update)