codex-autorunner 1.1.0__py3-none-any.whl → 1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. codex_autorunner/agents/opencode/client.py +113 -4
  2. codex_autorunner/agents/opencode/supervisor.py +4 -0
  3. codex_autorunner/agents/registry.py +17 -7
  4. codex_autorunner/bootstrap.py +219 -1
  5. codex_autorunner/core/__init__.py +17 -1
  6. codex_autorunner/core/about_car.py +114 -1
  7. codex_autorunner/core/app_server_threads.py +6 -0
  8. codex_autorunner/core/config.py +236 -1
  9. codex_autorunner/core/context_awareness.py +38 -0
  10. codex_autorunner/core/docs.py +0 -122
  11. codex_autorunner/core/filebox.py +265 -0
  12. codex_autorunner/core/flows/controller.py +71 -1
  13. codex_autorunner/core/flows/reconciler.py +4 -1
  14. codex_autorunner/core/flows/runtime.py +22 -0
  15. codex_autorunner/core/flows/store.py +61 -9
  16. codex_autorunner/core/flows/transition.py +23 -16
  17. codex_autorunner/core/flows/ux_helpers.py +18 -3
  18. codex_autorunner/core/flows/worker_process.py +32 -6
  19. codex_autorunner/core/hub.py +198 -41
  20. codex_autorunner/core/lifecycle_events.py +253 -0
  21. codex_autorunner/core/path_utils.py +2 -1
  22. codex_autorunner/core/pma_audit.py +224 -0
  23. codex_autorunner/core/pma_context.py +496 -0
  24. codex_autorunner/core/pma_dispatch_interceptor.py +284 -0
  25. codex_autorunner/core/pma_lifecycle.py +527 -0
  26. codex_autorunner/core/pma_queue.py +367 -0
  27. codex_autorunner/core/pma_safety.py +221 -0
  28. codex_autorunner/core/pma_state.py +115 -0
  29. codex_autorunner/core/ports/agent_backend.py +2 -5
  30. codex_autorunner/core/ports/run_event.py +1 -4
  31. codex_autorunner/core/prompt.py +0 -80
  32. codex_autorunner/core/prompts.py +56 -172
  33. codex_autorunner/core/redaction.py +0 -4
  34. codex_autorunner/core/review_context.py +11 -9
  35. codex_autorunner/core/runner_controller.py +35 -33
  36. codex_autorunner/core/runner_state.py +147 -0
  37. codex_autorunner/core/runtime.py +829 -0
  38. codex_autorunner/core/sqlite_utils.py +13 -4
  39. codex_autorunner/core/state.py +7 -10
  40. codex_autorunner/core/state_roots.py +5 -0
  41. codex_autorunner/core/templates/__init__.py +39 -0
  42. codex_autorunner/core/templates/git_mirror.py +234 -0
  43. codex_autorunner/core/templates/provenance.py +56 -0
  44. codex_autorunner/core/templates/scan_cache.py +120 -0
  45. codex_autorunner/core/ticket_linter_cli.py +17 -0
  46. codex_autorunner/core/ticket_manager_cli.py +154 -92
  47. codex_autorunner/core/time_utils.py +11 -0
  48. codex_autorunner/core/types.py +18 -0
  49. codex_autorunner/core/utils.py +34 -6
  50. codex_autorunner/flows/review/service.py +23 -25
  51. codex_autorunner/flows/ticket_flow/definition.py +43 -1
  52. codex_autorunner/integrations/agents/__init__.py +2 -0
  53. codex_autorunner/integrations/agents/backend_orchestrator.py +18 -0
  54. codex_autorunner/integrations/agents/codex_backend.py +19 -8
  55. codex_autorunner/integrations/agents/runner.py +3 -8
  56. codex_autorunner/integrations/agents/wiring.py +8 -0
  57. codex_autorunner/integrations/telegram/doctor.py +228 -6
  58. codex_autorunner/integrations/telegram/handlers/commands/execution.py +236 -74
  59. codex_autorunner/integrations/telegram/handlers/commands/files.py +314 -75
  60. codex_autorunner/integrations/telegram/handlers/commands/flows.py +346 -58
  61. codex_autorunner/integrations/telegram/handlers/commands/workspace.py +498 -37
  62. codex_autorunner/integrations/telegram/handlers/commands_runtime.py +202 -45
  63. codex_autorunner/integrations/telegram/handlers/commands_spec.py +18 -7
  64. codex_autorunner/integrations/telegram/handlers/messages.py +26 -1
  65. codex_autorunner/integrations/telegram/helpers.py +1 -3
  66. codex_autorunner/integrations/telegram/runtime.py +9 -4
  67. codex_autorunner/integrations/telegram/service.py +30 -0
  68. codex_autorunner/integrations/telegram/state.py +38 -0
  69. codex_autorunner/integrations/telegram/ticket_flow_bridge.py +10 -4
  70. codex_autorunner/integrations/telegram/transport.py +10 -3
  71. codex_autorunner/integrations/templates/__init__.py +27 -0
  72. codex_autorunner/integrations/templates/scan_agent.py +312 -0
  73. codex_autorunner/server.py +2 -2
  74. codex_autorunner/static/agentControls.js +21 -5
  75. codex_autorunner/static/app.js +115 -11
  76. codex_autorunner/static/chatUploads.js +137 -0
  77. codex_autorunner/static/docChatCore.js +185 -13
  78. codex_autorunner/static/fileChat.js +68 -40
  79. codex_autorunner/static/fileboxUi.js +159 -0
  80. codex_autorunner/static/hub.js +46 -81
  81. codex_autorunner/static/index.html +303 -24
  82. codex_autorunner/static/messages.js +82 -4
  83. codex_autorunner/static/notifications.js +255 -0
  84. codex_autorunner/static/pma.js +1167 -0
  85. codex_autorunner/static/settings.js +3 -0
  86. codex_autorunner/static/streamUtils.js +57 -0
  87. codex_autorunner/static/styles.css +9125 -6742
  88. codex_autorunner/static/templateReposSettings.js +225 -0
  89. codex_autorunner/static/ticketChatActions.js +165 -3
  90. codex_autorunner/static/ticketChatStream.js +17 -119
  91. codex_autorunner/static/ticketEditor.js +41 -13
  92. codex_autorunner/static/ticketTemplates.js +798 -0
  93. codex_autorunner/static/tickets.js +69 -19
  94. codex_autorunner/static/turnEvents.js +27 -0
  95. codex_autorunner/static/turnResume.js +33 -0
  96. codex_autorunner/static/utils.js +28 -0
  97. codex_autorunner/static/workspace.js +258 -44
  98. codex_autorunner/static/workspaceFileBrowser.js +6 -4
  99. codex_autorunner/surfaces/cli/cli.py +1465 -155
  100. codex_autorunner/surfaces/cli/pma_cli.py +817 -0
  101. codex_autorunner/surfaces/web/app.py +253 -49
  102. codex_autorunner/surfaces/web/routes/__init__.py +4 -0
  103. codex_autorunner/surfaces/web/routes/analytics.py +29 -22
  104. codex_autorunner/surfaces/web/routes/file_chat.py +317 -36
  105. codex_autorunner/surfaces/web/routes/filebox.py +227 -0
  106. codex_autorunner/surfaces/web/routes/flows.py +219 -29
  107. codex_autorunner/surfaces/web/routes/messages.py +70 -39
  108. codex_autorunner/surfaces/web/routes/pma.py +1652 -0
  109. codex_autorunner/surfaces/web/routes/repos.py +1 -1
  110. codex_autorunner/surfaces/web/routes/shared.py +0 -3
  111. codex_autorunner/surfaces/web/routes/templates.py +634 -0
  112. codex_autorunner/surfaces/web/runner_manager.py +2 -2
  113. codex_autorunner/surfaces/web/schemas.py +70 -18
  114. codex_autorunner/tickets/agent_pool.py +27 -0
  115. codex_autorunner/tickets/files.py +33 -16
  116. codex_autorunner/tickets/lint.py +50 -0
  117. codex_autorunner/tickets/models.py +3 -0
  118. codex_autorunner/tickets/outbox.py +41 -5
  119. codex_autorunner/tickets/runner.py +350 -69
  120. {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.0.dist-info}/METADATA +15 -19
  121. {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.0.dist-info}/RECORD +125 -94
  122. codex_autorunner/core/adapter_utils.py +0 -21
  123. codex_autorunner/core/engine.py +0 -3302
  124. {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.0.dist-info}/WHEEL +0 -0
  125. {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.0.dist-info}/entry_points.txt +0 -0
  126. {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.0.dist-info}/licenses/LICENSE +0 -0
  127. {codex_autorunner-1.1.0.dist-info → codex_autorunner-1.2.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  codex_autorunner/__init__.py,sha256=EyZQrh8IKtssHmoNafaN7--MNRG4DhLA-w7T7-AJqhk,205
2
2
  codex_autorunner/__main__.py,sha256=Qd-f8z2Q2vpiEP2x6PBFsJrpACWDVxFKQk820MhFmHo,59
3
3
  codex_autorunner/api.py,sha256=1QIExNBqoNfND7ldsa36E65MGaBstutrr7j6Dgs5W74,705
4
- codex_autorunner/bootstrap.py,sha256=xG_jUGn2ChzsDR1-fy-WxZnWESG7V8MDNqJcYb5E6uM,5011
4
+ codex_autorunner/bootstrap.py,sha256=rvUj4RLEhDFoEbNmtOTOEQKUlYDdak2kwVx_VgBPRt8,12558
5
5
  codex_autorunner/cli.py,sha256=UKTukqhpK2pSJeFdVT1ESAGgjR_VGAtfHaovpwydf0k,222
6
6
  codex_autorunner/codex_cli.py,sha256=SkIFfNx7-sJB2QXa9Sy3r0MjovkGTFe8zM96vVxCA9E,384
7
7
  codex_autorunner/codex_runner.py,sha256=P0yHlZZjVYWLVH1O4b5VUwQs_mkJspPPG3-nULWt4Cw,362
@@ -9,98 +9,114 @@ codex_autorunner/discovery.py,sha256=8vwGq5YKAZpyTFY-mcv2L7oZY1ECkgqeeu-jD3SBGaI
9
9
  codex_autorunner/housekeeping.py,sha256=1Jk3-vIDfYfXf1N63Dqz7C-i0ACGYTzRcgYHcYDjsZo,12826
10
10
  codex_autorunner/manifest.py,sha256=-1pQfCNFeAei9r-Z5wqJV2_EmJ6jNhYZ4y1aIc__w-8,6545
11
11
  codex_autorunner/plugin_api.py,sha256=o-87FVzjSbC1od55aGF3O3pp-NkKX9hDKOcEeh0J5BU,664
12
- codex_autorunner/server.py,sha256=bZBpp9R99L77eQQ_t63njn21VoDBZzoCAOndbMZ0s08,434
12
+ codex_autorunner/server.py,sha256=BINEzCpVBJW0gXMe2jBmnwpuaFy36Ukp5YWXK72seKA,451
13
13
  codex_autorunner/agents/__init__.py,sha256=6xEQXHkZ40kHadHB9Is5fK9dGGVsgryasoRllIN8_ho,418
14
14
  codex_autorunner/agents/base.py,sha256=UiYYYvSYrEjTHy0tjs8O8hcTwrgMtmuyrhoVW9EkiYY,1643
15
- codex_autorunner/agents/registry.py,sha256=TuysgG3o3ymcwiyxP7YhJTN4vvIMEnbejE_eM6xiMTE,8165
15
+ codex_autorunner/agents/registry.py,sha256=n9snnwQapd426vtoeDyOnIlfpC-97vpI-xbaIadzolE,8516
16
16
  codex_autorunner/agents/types.py,sha256=3dzkr0Rvn2EgSiJ1k65f6MF0ZEXifGK7GhUF4Nr2GBs,727
17
17
  codex_autorunner/agents/codex/__init__.py,sha256=GQ9KHMVT2ggOe1jT1kHEPfJLRDzfH0doGJCNwO4a2o0,92
18
18
  codex_autorunner/agents/codex/harness.py,sha256=Eva1uR-QuWpMk07VuDLXVpterpqOHls5WadbnpJnnOs,8440
19
19
  codex_autorunner/agents/opencode/__init__.py,sha256=nTTukw5TzOKURCTyF7CJsbx-rh-9sue79XvqsOVTTNc,478
20
20
  codex_autorunner/agents/opencode/agent_config.py,sha256=VO3qske0X75S8eoK6XR3NUNJq_WzGLJu1KsZdOFF-MY,2922
21
- codex_autorunner/agents/opencode/client.py,sha256=LC2VGtRugyvkAiwXCH6Caimprrphvl1C0iCVyxyz95c,19367
21
+ codex_autorunner/agents/opencode/client.py,sha256=G32-WeoN7D4dO9GO4ymqCg_XTMxa5Kjwb_ylzy1ApJo,23738
22
22
  codex_autorunner/agents/opencode/constants.py,sha256=h9rywpj-Lqio-pRVZ74CEbq8TOVI11oEEIXwY9hQ9FA,85
23
23
  codex_autorunner/agents/opencode/events.py,sha256=c0OxtbfYtmYRwMyt4UOgRiAmunfT76huXBDQuybB0jg,1828
24
24
  codex_autorunner/agents/opencode/harness.py,sha256=djALbaAhEi3coX4oSqhIne_9JHC19Gf-VcBca-a9R9I,10788
25
25
  codex_autorunner/agents/opencode/logging.py,sha256=pbIS4xG84fkLrdNKiX2Y4zMTqj-ADzXOCNNPlnw1-z0,8423
26
26
  codex_autorunner/agents/opencode/run_prompt.py,sha256=b4sZcuRgyHrM2jouEGZGeCw-nOwqUFX6OPy92e64kJ4,8656
27
27
  codex_autorunner/agents/opencode/runtime.py,sha256=CTeARdmkCfyp2TB193vG4GeXB1MNPZ4S83OMMqGProE,63958
28
- codex_autorunner/agents/opencode/supervisor.py,sha256=rtaY2HqUKd9xa2anHRCv0Xs84SPbQ9equtli8uUYa_4,18427
29
- codex_autorunner/core/__init__.py,sha256=khlUA3V6Oq9fRgEs5rtrpgCAAHU_9mwcHWbgtGW1NJc,152
30
- codex_autorunner/core/about_car.py,sha256=jwtXZSngWB3nK_m4nv6OCyCAqSbTFY_--wQs21RHbGw,5774
31
- codex_autorunner/core/adapter_utils.py,sha256=o1AUZVhyQTMF-DaaWNVINnXJ_8HAyjaj6mqfDABYW9Q,728
28
+ codex_autorunner/agents/opencode/supervisor.py,sha256=KJ-Zz4nE12NsL5QZSMSejPFCiOHKDePVmAnthVwRaFU,18625
29
+ codex_autorunner/core/__init__.py,sha256=tLqdoJBO1Xvr9umB50rLnn7z-GzMF1VKc-2ZzW7FUTQ,535
30
+ codex_autorunner/core/about_car.py,sha256=KoV0jlyiF0V-wtZ1sb2w-GsaNr3HHukt69NL-9iHKWk,11116
32
31
  codex_autorunner/core/app_server_ids.py,sha256=hn1AOx5RXN2gKtxdgfhFYGaYFAHxOJdgcvp1yqQyRMg,1839
33
32
  codex_autorunner/core/app_server_logging.py,sha256=bXmc03VfpBRX0_WYW6QYJ7XLWpd-hnkJB_EnSr1WFOY,7792
34
33
  codex_autorunner/core/app_server_prompts.py,sha256=Sjx22i7bxb8qFBBvkcFgyvHLEqFbz3IuGKTALRzsfjo,4222
35
- codex_autorunner/core/app_server_threads.py,sha256=FpnKXp9zLX6G_wEdWtQGFa7EsxuE_n2ZTorR5f1ZkFo,6460
34
+ codex_autorunner/core/app_server_threads.py,sha256=8cHq4Z5SpMNntF1BWrI2z8r3PHOQu0ARyT2PQXIPoII,6645
36
35
  codex_autorunner/core/app_server_utils.py,sha256=We3SjezC4FFfYcQc8t8g40GWZlJft_1CFt1LCSgs298,5148
37
36
  codex_autorunner/core/archive.py,sha256=CyUiGChq9LrbnDOWAi8LgHllcHd79ZxbBIm5O7m_wjk,10415
38
37
  codex_autorunner/core/circuit_breaker.py,sha256=DL8lUrZPluzvNHgCMDUJjWuYytgmVzhL30va8M3TPQ4,6205
39
38
  codex_autorunner/core/codex_runner.py,sha256=iteZnbPnsvfYBopCvvhyWIbnx_eVUJWu6A-gilVGVcw,3353
40
- codex_autorunner/core/config.py,sha256=x8up5d5cUhI7d54eWCok4nvBxldE4wm0ACc_-9E9w1M,109046
41
- codex_autorunner/core/docs.py,sha256=K-L7E4QQEvLROnJypfNtjHhnOz7Dl8guLhmYdwTj2l8,3741
39
+ codex_autorunner/core/config.py,sha256=LxeFJSastIFqbkoLy8RiywR0ms55UAY29a1pNAX0WtI,117531
40
+ codex_autorunner/core/context_awareness.py,sha256=5iM9wSFWp_oaZLazAz1qRAgOeX4te07MO9kebd-xdXU,1782
41
+ codex_autorunner/core/docs.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  codex_autorunner/core/drafts.py,sha256=VeHfBmUpQDFmVZH2RSbZHCi7lIiMVrCFRf0iENlreEY,4202
43
- codex_autorunner/core/engine.py,sha256=Xr6t5SEhpQHeXsHIgTnLhZNB3AugkEjUl43vNYxG37c,127524
44
43
  codex_autorunner/core/exceptions.py,sha256=CJAOtYagbVSieCxJiP3ndp-sBvjcQVYBz6LLKzKKaWA,1600
44
+ codex_autorunner/core/filebox.py,sha256=XS0fu9k4q-V2BTO5OFDmTZ9BGq87ua_wJTF8b1y_-aE,8104
45
45
  codex_autorunner/core/git_utils.py,sha256=hOxXp41FDO6U0x0fOjSdW8-x1IXj6rJ_EvgXXre6a3c,8570
46
- codex_autorunner/core/hub.py,sha256=L2gPck5tWp8e4PBwWbi-rIJtc20oIklyYjf6_aP6c7M,38850
46
+ codex_autorunner/core/hub.py,sha256=JeFndESVPUYDARB7MZIU_sdyEL20DRSVL1cpKisnpX8,44847
47
47
  codex_autorunner/core/injected_context.py,sha256=HQ1VTO7E0TccBkRMQM3f0ihiGS4FNM-aCW35QX7_CXs,301
48
+ codex_autorunner/core/lifecycle_events.py,sha256=QLpBJ1OjbGxY3rvzmYrlu-ZmoDicXNSiwO8RB5Qc4cE,8515
48
49
  codex_autorunner/core/locks.py,sha256=MWPGf7-4QTcQass9O5M7OlI1pHAqomep3-7pr3aA8qU,8324
49
50
  codex_autorunner/core/logging_utils.py,sha256=fQ9rIshtE-S02-xcFJOUOAXFTrFIcv_TkHzBXU4fxHs,5063
50
51
  codex_autorunner/core/notifications.py,sha256=XHhnhN6nJpJlbnNVrapMiXr8Y4El7l7x9s3ZCqTAjqM,18043
51
52
  codex_autorunner/core/optional_dependencies.py,sha256=sBuSnQrRhV6_JA2tVLlVnDBsED79kY81cOyWcRiynUM,1271
52
53
  codex_autorunner/core/patch_utils.py,sha256=H5IPB5X4EJmXw7dNV3hj6m-vV2yXNY4PMuvq12msV7o,7635
53
- codex_autorunner/core/path_utils.py,sha256=MjFTnTC-GuwR4-QS6fBJuvuicSi2E-G3Jt7KWjaFffc,3450
54
- codex_autorunner/core/prompt.py,sha256=se4ziQ76LssiRJvSuNFbaIdf5UAX0wejmMVtO7k1So8,2898
55
- codex_autorunner/core/prompts.py,sha256=LBab4SjAaAfWmWKSPkSGaCy5dWsnZr36lM3y8uFuGz4,8919
56
- codex_autorunner/core/redaction.py,sha256=VkGJS2JTCYrWcTieb-iw994SM_mcBXC3toqwvH8VG2o,842
54
+ codex_autorunner/core/path_utils.py,sha256=2TwtUY8YvIbc4fyqVcZalzBVTmk5uDMpeUg7ZDAt0h4,3492
55
+ codex_autorunner/core/pma_audit.py,sha256=QtDbR6yD4kdk8JV67fjeidNjOga8S2rLUsUNX7BSxJE,8022
56
+ codex_autorunner/core/pma_context.py,sha256=Xm63zxRcQ0DybQaJOXhwde1ADPGq8iQMeFIUhEhtvIE,16559
57
+ codex_autorunner/core/pma_dispatch_interceptor.py,sha256=WZZfNJKAciqLdpJm02tE1t3WndU7nLO4z9xQcOb0wJk,9203
58
+ codex_autorunner/core/pma_lifecycle.py,sha256=p60VgkpXxY0evLNPJj4-OhWIG6BXP4IepLyins4lhNE,16997
59
+ codex_autorunner/core/pma_queue.py,sha256=R7AvfqWWxpER3lkhuP1d1eLD_LK-94oJyVmF7TKP4CM,12464
60
+ codex_autorunner/core/pma_safety.py,sha256=Xf648Q044O_Gx8GZYVybBFaPy9fZwExWqGZciNMTgmk,7619
61
+ codex_autorunner/core/pma_state.py,sha256=dN-nRhUrZVPqlTsaEOfDn6s7eoN12zMTBqmW2HJrS4M,3722
62
+ codex_autorunner/core/prompt.py,sha256=TUkZr5wYVHNtgxUpXeiSK_d_nxf412idEtjjoaXcDWM,177
63
+ codex_autorunner/core/prompts.py,sha256=rPC7nIyA0QbQZDhTuqO3--_pf64wzPOCxKstwRalkGQ,5857
64
+ codex_autorunner/core/redaction.py,sha256=bm7KhtSVJ24GwTOkJBRSZjCzCG-uHerqFtZN-KemhJ0,738
57
65
  codex_autorunner/core/request_context.py,sha256=FVQtn67zJffRET9TBy48jk23ZonAjONOeFwZiizyfxc,997
58
66
  codex_autorunner/core/retry.py,sha256=n31DM84oIW0PwWPipNd5TH2H6H5ej8I2JxikfX-FIQs,1725
59
- codex_autorunner/core/review_context.py,sha256=DaepmVJ-qVx77FrXEkTMyDMF1uIAVT7HccDUXlk7iNU,5033
67
+ codex_autorunner/core/review_context.py,sha256=kCRjuzHLyf3weUh2uycn0EgHzrvTco1bino0fV0StOU,5107
60
68
  codex_autorunner/core/run_index.py,sha256=feOG5JNtJoqH57vfRuIeVtb111zokgpDsHMj3cgz4TE,7794
61
- codex_autorunner/core/runner_controller.py,sha256=0QfocgTIZUQ4HbUhJLtVZRyT0vxyAzdHkttG0C94w2k,7404
69
+ codex_autorunner/core/runner_controller.py,sha256=uIT_Kt2OBgKVCbk_8otN1zwCCnqCQFoUXnalI1Euoxs,7521
62
70
  codex_autorunner/core/runner_process.py,sha256=G_O_kzo6sv_oWl0FuCzUXW28kZGXh7OdZOBWBKR5kBk,1503
63
- codex_autorunner/core/sqlite_utils.py,sha256=dA_2UGXoH-TNKPeJsqrIgbRtmTdETxr6FWPM5BZm9pU,754
64
- codex_autorunner/core/state.py,sha256=-Adtoag43MDPFhv2rzI0doVCWNJxH5oVcHZKjUosQf8,14356
65
- codex_autorunner/core/state_roots.py,sha256=Ziu81ObE90sgn3Xn49-7yTWmGjFyfjH2p1HplgAIa2k,1725
71
+ codex_autorunner/core/runner_state.py,sha256=WzkAGaf3OA3jLSSmVAtxwuoYoQkvpUPLOa_BulJ8Yds,5014
72
+ codex_autorunner/core/runtime.py,sha256=6DKC7Onpb4nxGoCTJXlgI3rwrQWxtPg4iM3KlwjSGTs,26626
73
+ codex_autorunner/core/sqlite_utils.py,sha256=1fvF2SZ6bx0yI7fgm-obik6x7RwofymgWZbpQuatf_M,1069
74
+ codex_autorunner/core/state.py,sha256=xfcbAYr6RRMNCUDbfde_qOGp_cS28XjKRORyfUs5kn4,14379
75
+ codex_autorunner/core/state_roots.py,sha256=q0UO8-prWErKP0MmSRPQKAXQH3hacdnXPHB-ZrO5iQ4,1887
66
76
  codex_autorunner/core/supervisor_protocol.py,sha256=5mF7krSfH82zU6smopJKamzqrcs2t2Uz-GU-vuCk2oc,364
67
77
  codex_autorunner/core/supervisor_utils.py,sha256=Cb20PgcJzRWVCrJZt3SkCocoijQOuOwkKzsIFEIaHYY,2060
68
78
  codex_autorunner/core/text_delta_coalescer.py,sha256=hNHupQpbE6YVDioNmuehcQZosGI9fhvNLFTm_5xtNMs,3086
69
- codex_autorunner/core/ticket_linter_cli.py,sha256=X0qGbBI9QEwfSRVo-x4NSRyc8wfREUbuNk4jazSoY48,6529
70
- codex_autorunner/core/ticket_manager_cli.py,sha256=8CoTWSX5f-fADOQVFKd47Y2A967jJV-nMACX0o194IA,14907
79
+ codex_autorunner/core/ticket_linter_cli.py,sha256=PQ3Ir_EOEMAV-qGMw_mf4FWl1sByZb7NJWxY43R7KEU,7260
80
+ codex_autorunner/core/ticket_manager_cli.py,sha256=-knJiuWIu9qmwz8FKuZjqY-rCFA7MVMbWz8NNBadTQs,16598
81
+ codex_autorunner/core/time_utils.py,sha256=XUnwf8G33GXC41BC04ofjVgy-BXQPvBBlaPNgAk1wjk,206
82
+ codex_autorunner/core/types.py,sha256=azj_41SVrmarROn0EKSGmCzBeNgJcx7F1k-pqadBSkI,440
71
83
  codex_autorunner/core/update.py,sha256=Nw0o6QlsqIiRmiKhQ7ScRHa_H7U7zs2DbN-2PjBC4zA,17839
72
84
  codex_autorunner/core/update_paths.py,sha256=ECTr-8YUr85Shg_HKHgYHcsgZP5eOcmZsEOQbiYgeZE,796
73
85
  codex_autorunner/core/update_runner.py,sha256=mimPqchmRD-Rv2TIX67Z-ShfH3ytzS_Lozw0m6IdBsc,1484
74
86
  codex_autorunner/core/usage.py,sha256=BpttMKXZaPADFhjBxlhIExY6vTr2tmwUK7v6u_vSwfg,74815
75
- codex_autorunner/core/utils.py,sha256=386gRnEg_HswZYV4hYII8c196g31OosOCRqXEnm908c,10976
87
+ codex_autorunner/core/utils.py,sha256=F4vvnOeduINC500_N6Uil0_xWZHiWVLElO2uYKwOF6w,11892
76
88
  codex_autorunner/core/flows/__init__.py,sha256=AVQh2yts_kjo1zA91HwBc4uoMkfSRl8E_2b-gnxdvHM,503
77
- codex_autorunner/core/flows/controller.py,sha256=zejAiPrm-OhXP_5B2IILA_hkIfxvhre-fL4Ejz1EVbo,6953
89
+ codex_autorunner/core/flows/controller.py,sha256=2OYAVzIuRvCdEkD5Cx0OS7AxCbOje0sS3JwQqfQgULY,9814
78
90
  codex_autorunner/core/flows/definition.py,sha256=5rkczvPA2dW0PdgSYQIFxu4ItUPu2Q9_8ATeZiKGEpY,2725
79
91
  codex_autorunner/core/flows/models.py,sha256=Pny0f6fFXKX7tCuwUCYKRJPit8orqLIfjkfhLd_8zWA,2428
80
92
  codex_autorunner/core/flows/reasons.py,sha256=hT_NXIl-7Ry8n7xk289iUnbL_5i-SAOeBjo5AJikqA4,1565
81
- codex_autorunner/core/flows/reconciler.py,sha256=Zmci27gWO27JDFlKVwlYq7z1AalCaSQn_8JpRcbycfI,4177
82
- codex_autorunner/core/flows/runtime.py,sha256=9PDRoGZuhHSGlzGPQKunwv-J4joVQLKy5e8YMUvhWmw,13420
83
- codex_autorunner/core/flows/store.py,sha256=UCOaRmbbQrN_736Mn2GhsWuu_hFxl8q9sW_m4mj2-l4,18824
84
- codex_autorunner/core/flows/transition.py,sha256=AWBhXGh2OPmGSiWZm8Q4HhAEDli0fZHeJanWuz_FpPM,4717
85
- codex_autorunner/core/flows/ux_helpers.py,sha256=OcnYcFglp-yHPcJuV_DWn6PAP9IRMcGGB_E1W1I5UTc,8060
86
- codex_autorunner/core/flows/worker_process.py,sha256=C5Y-1Q8jNfW2sg-9FYIpuBDc_MF-FQ8I9ltNc9oaduE,6741
93
+ codex_autorunner/core/flows/reconciler.py,sha256=Ta3mUFfOmFZIgVoc-fpkIM9FAK19HzIbCnibHWfvQmM,4292
94
+ codex_autorunner/core/flows/runtime.py,sha256=mMyWJR63sZjhPsmiQRLwakoKSxR-OFjIexNP1n2cfO4,14495
95
+ codex_autorunner/core/flows/store.py,sha256=G6M17Wf3jO3fXCjwW9PfvI-Ak2kYjOJf9ZhNjZZh7wQ,20434
96
+ codex_autorunner/core/flows/transition.py,sha256=o-LDTz5aL5jQ-owNAVq1Xe6Su8lZ7GCGdX_NWus2V6U,5056
97
+ codex_autorunner/core/flows/ux_helpers.py,sha256=-508f_gGLq1J-owUziCSTXV14dIjZOAqWvV3NuK7oG0,8620
98
+ codex_autorunner/core/flows/worker_process.py,sha256=kTg9yzxlD5UnQ0veDjP8_v6mi1UXADNnPm4zrcZei7c,7471
87
99
  codex_autorunner/core/ports/__init__.py,sha256=FAfpDuugMaknY8LSIqqGqsfCXgnh3kbBQlux5Z6Xez4,490
88
- codex_autorunner/core/ports/agent_backend.py,sha256=Y_KBwJ_Wk8P_X7f6YAe7Wb4iplhFfkX9orbHYocqaSc,4403
100
+ codex_autorunner/core/ports/agent_backend.py,sha256=LAqXqhjs482Al6S4Tx_6h4yiFgRl3VXlAkzFTS9yZOs,4304
89
101
  codex_autorunner/core/ports/backend_orchestrator.py,sha256=3VZpeW078WqcLJotf5zXArs4O6dU79Kfz3e9iZcgvuc,1113
90
- codex_autorunner/core/ports/run_event.py,sha256=SK-4e4Ix_tyEWFhZEwXa9L83yMbnyosJqJVSewxOLkE,1509
102
+ codex_autorunner/core/ports/run_event.py,sha256=inttfYvHRxQG06mv0iQIjLEuSuMTLauWwZlyhFk_0sc,1410
103
+ codex_autorunner/core/templates/__init__.py,sha256=g5g9IGdQoJerPat7cOUtIEpWbW3EGvpnToifKDGf9vQ,840
104
+ codex_autorunner/core/templates/git_mirror.py,sha256=7xcR1M8HU_6Khm5rL4ziZXlEPPCiLXFF2mul4e6y4K8,6639
105
+ codex_autorunner/core/templates/provenance.py,sha256=mayi07_J2pED_rKxxXvds9zWSLWJ_wn-IVVq0k-T3xs,1638
106
+ codex_autorunner/core/templates/scan_cache.py,sha256=i_jABUdRoV4AvYm3fHSb3Ex-z2JHQmIc--rd7ckt-6E,3790
91
107
  codex_autorunner/flows/review/__init__.py,sha256=aUkSaVLBDjgbC72hfIM1t-ZzE0hLWmtjlNjlhJb0ktk,320
92
- codex_autorunner/flows/review/service.py,sha256=i3Pea2mjnJtAvnFTPlb-3IQLsrU2xG46D7AgIqi85GQ,30838
108
+ codex_autorunner/flows/review/service.py,sha256=MiO496yk-XhTmt-DgDWKmGMHuZQxtIR_CZYj6rbELZY,30600
93
109
  codex_autorunner/flows/ticket_flow/__init__.py,sha256=bSji9VcWwd_Ow6hdBlLOlpvoEcieEwcfswJ0DI-SWPA,97
94
- codex_autorunner/flows/ticket_flow/definition.py,sha256=doUEwnSH3SUYDNNvc1xTV6ltH2ZTGAG-qkCcoiwfBLU,3782
110
+ codex_autorunner/flows/ticket_flow/definition.py,sha256=zQyxoWQ02QX32_Ipx28rckK3ZtKk5UfRW78nPdG1_Vg,5509
95
111
  codex_autorunner/integrations/__init__.py,sha256=_6PZ2Hq6DzApW4d0rrmJY05vftGmHXpHe9SOxq0J2hM,28
96
- codex_autorunner/integrations/agents/__init__.py,sha256=PRQBqYCdfgMvD6cOXwnhY04TKRhbARTcLxMltmrykTE,515
97
- codex_autorunner/integrations/agents/backend_orchestrator.py,sha256=WHncbdr7DnD_Wa45Cb51eeIRiGVX3nhsjQFOJMdFgCw,9743
112
+ codex_autorunner/integrations/agents/__init__.py,sha256=9SiyMj-Ud1rtfOWrvpzxEIZRn8vLuix6G186AiXDht0,610
113
+ codex_autorunner/integrations/agents/backend_orchestrator.py,sha256=KdGNhI6kbMhpBypJQqDRsPek8PXSuGhiyss1MdRz5mU,10269
98
114
  codex_autorunner/integrations/agents/codex_adapter.py,sha256=V6OtHb3poUB67nrIdnHwnCN4lmUaTFTCfR9XPkRxRDM,3886
99
- codex_autorunner/integrations/agents/codex_backend.py,sha256=dbpltJbrKi0dnzvhvNkNjK2yEmqEACEJqbrvvjEG2g4,17492
115
+ codex_autorunner/integrations/agents/codex_backend.py,sha256=D53HdjyHL7bL2SPi7DVY7dRRtRT_4NCU-yd910wS_v8,17882
100
116
  codex_autorunner/integrations/agents/opencode_adapter.py,sha256=yOG3WfwRborZ6pKgABG7P7W9EG-QkkH3g9-49m_u1oM,4051
101
117
  codex_autorunner/integrations/agents/opencode_backend.py,sha256=kSPuAcb2DuZnKyf-0ZFEhLLKLoEQKKA9NKD2qFYpWMs,22307
102
- codex_autorunner/integrations/agents/runner.py,sha256=vEhukm16JCI3GTTuj6wTDxTaqLzDo78QoqTBemHrf6s,2821
103
- codex_autorunner/integrations/agents/wiring.py,sha256=27CurKqcRa6aTRho0b6a5JWQWjdPlbIpNz58Mho4jfg,12140
118
+ codex_autorunner/integrations/agents/runner.py,sha256=JyytAeuSBpJPA75jWmIoFlON9jyKgfvXmg-ZJSXm_uk,2690
119
+ codex_autorunner/integrations/agents/wiring.py,sha256=UVnBHoOvDNlGK5U3sqPfggaWlPxr-Ai7Xfk508zrAzc,12326
104
120
  codex_autorunner/integrations/app_server/__init__.py,sha256=Ro2hRhH9wzxQJThz1Kyo-SADxCFtyF2ZfhHNureykGk,201
105
121
  codex_autorunner/integrations/app_server/client.py,sha256=S6zRzbSryU9YrZ3j_1Azu7dO6NQ9ZbY40HuaN_xkoR4,70827
106
122
  codex_autorunner/integrations/app_server/env.py,sha256=S0qP_hPFlRL-IHJCoRQoGJBWrkjnngiI4vGRCuimpx4,130
@@ -115,41 +131,43 @@ codex_autorunner/integrations/telegram/commands_registry.py,sha256=C5T6KeTUq4Dmh
115
131
  codex_autorunner/integrations/telegram/config.py,sha256=9xp66k479EedIGssi24UIm8EvCAtBuGL_ea4kkmdGEA,32312
116
132
  codex_autorunner/integrations/telegram/constants.py,sha256=16-CnkenzOrXAslfFXKYAMBmBUVPltAHfSuBWqq0Eag,6741
117
133
  codex_autorunner/integrations/telegram/dispatch.py,sha256=dgh95aYuvveqS7TGvbYHKbtT2RYFx1qGq7mGYyRY2xI,6916
118
- codex_autorunner/integrations/telegram/doctor.py,sha256=nVAjDg56XE4UZbJVndTqZJLnUyfQ5Itfgv1xntEwFvA,1628
119
- codex_autorunner/integrations/telegram/helpers.py,sha256=pNO_eViiP20Sac7eOnfp_dcgZBVChABqeBWJ8unU5aw,73490
134
+ codex_autorunner/integrations/telegram/doctor.py,sha256=uZNxQsnRGaQnu6GpoHVve5ELkSDO6FPCN4_byj6XbQo,9667
135
+ codex_autorunner/integrations/telegram/helpers.py,sha256=vfsrdiaAILyOAqSbDikakhlfYFS23Kqb9lYO2sixocA,73389
120
136
  codex_autorunner/integrations/telegram/notifications.py,sha256=XvUdRUq5gfD9JA30PclVLrDL5Azw0Sin8Oj0i1fcVx4,23430
121
137
  codex_autorunner/integrations/telegram/outbox.py,sha256=U3qve8pTSRakeqMMWgWqkSvL1e7zoz_aWqhLNH2eZEk,13954
122
138
  codex_autorunner/integrations/telegram/overflow.py,sha256=LUbPTwA2BxFV1w0sF1XAhIu_ft_eieSVYmjuftiVyO0,5384
123
139
  codex_autorunner/integrations/telegram/progress_stream.py,sha256=jphPyvF1ka_ppEK66spAbcSDkEcNNXuJ2Y6p89VC4ks,7756
124
140
  codex_autorunner/integrations/telegram/rendering.py,sha256=uBhymMUQuiKJJZ0ZxSl01sC4dYFVJqoIMMMFlm1XGZc,3531
125
141
  codex_autorunner/integrations/telegram/retry.py,sha256=GIdMSSCVa2Sjd6-t2FC1O6AwPPSEM342rjjuI1Y7Tpk,1349
126
- codex_autorunner/integrations/telegram/runtime.py,sha256=V9P93PDl_-DrunkYYheRmvCjqNaaTwhw0D127vb0XFw,10375
127
- codex_autorunner/integrations/telegram/service.py,sha256=d4zqmAaKCiUlYayyNrLzG2cjOTfqOyBsQPn8WEsjh0A,58395
128
- codex_autorunner/integrations/telegram/state.py,sha256=y4tvDseDwaYPuYJXQ9P782BqRilkwCltX7Gr2qc5DRM,83841
129
- codex_autorunner/integrations/telegram/ticket_flow_bridge.py,sha256=wVjoSY9kgFMmk-OTaFFSQU93UQSSfF-7rcU1VengLTY,20895
130
- codex_autorunner/integrations/telegram/transport.py,sha256=7KDpQZecwxKRbFucXWADiXl8OkizX8OOLt4gnryy0Dw,14711
142
+ codex_autorunner/integrations/telegram/runtime.py,sha256=yyELUr2b-H3qosqWFnkhqCgaG5Cvf1i4hv3CClVHChg,10625
143
+ codex_autorunner/integrations/telegram/service.py,sha256=vBXVyhtXTBUtMmG2hjw36ql6iK4NpglwpMRJALFhN8E,59505
144
+ codex_autorunner/integrations/telegram/state.py,sha256=FxdZVz8JNGyM5MAOBYXBHGcKJj4dxiNX6SrF_2ktrgw,85694
145
+ codex_autorunner/integrations/telegram/ticket_flow_bridge.py,sha256=UkRMloBZx-amYf2M4xRZG35-Zyz7ecu8uBEDY3dyeJA,21308
146
+ codex_autorunner/integrations/telegram/transport.py,sha256=zvNMR2hhwTgxLyf0dS0gDxFVIVEMoiGYkeiPQwblD2o,15082
131
147
  codex_autorunner/integrations/telegram/trigger_mode.py,sha256=bDGQUMUbnUNq4u25c-zmBUAOlFvnl5a8YyWgTN2Y8h8,1531
132
148
  codex_autorunner/integrations/telegram/types.py,sha256=SjeVaus_YtWz-06GqkSWl99cHTdu0YKd5egdlYY3tMI,1707
133
149
  codex_autorunner/integrations/telegram/voice.py,sha256=I3XD-Uc-egA2UVfby210-kCLhL_pBfekyaaGLf359Qs,14784
134
150
  codex_autorunner/integrations/telegram/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
151
  codex_autorunner/integrations/telegram/handlers/approvals.py,sha256=G8-FwRSyyBs9emb9eJjf4a0kD2rdqnFf25SldfHCKZ4,9365
136
152
  codex_autorunner/integrations/telegram/handlers/callbacks.py,sha256=wyF8Kmg69KHpKdlPj1DOhp3EEQ3rZ0sjxHnomApSAKw,3754
137
- codex_autorunner/integrations/telegram/handlers/commands_runtime.py,sha256=E6BvhegqPmPdCByFa8Mp29DOIOOte6upmm9xC47Gfpg,102158
138
- codex_autorunner/integrations/telegram/handlers/commands_spec.py,sha256=ulF5GKyaGBNN8pmCkl1jivdqteuOmRXtTXHu2fQbT8U,5325
139
- codex_autorunner/integrations/telegram/handlers/messages.py,sha256=0i52-o6bpAa_HvvW5tU7NCKg9ECDot507Npe0kjUk-U,31730
153
+ codex_autorunner/integrations/telegram/handlers/commands_runtime.py,sha256=b935T6ML8lG8VUjAZQQ5M1nDR0rDU-1rq-u9HWez7oY,108920
154
+ codex_autorunner/integrations/telegram/handlers/commands_spec.py,sha256=B9nzbALNmcxCzgz6MSHJgYy7lJgt4xgT9E41XrxVlqk,5629
155
+ codex_autorunner/integrations/telegram/handlers/messages.py,sha256=2MOy2nxyStU3l4-fJ9_YMfjsyVovju9o9Fn64PwzK9Y,32665
140
156
  codex_autorunner/integrations/telegram/handlers/questions.py,sha256=GoOZzyYPqOt9jW4T27EzjNUOQrMgf3i3F6fJ6tWILzI,15570
141
157
  codex_autorunner/integrations/telegram/handlers/selections.py,sha256=JSg_ihLMkK1L3aH8XPEFbO5EaYY5ZWddwPztkNkA-Wc,25055
142
158
  codex_autorunner/integrations/telegram/handlers/utils.py,sha256=T2y-2p1SNduypiNz9uq4zqRIFq47z9Lop6_s3nhUzN8,5317
143
159
  codex_autorunner/integrations/telegram/handlers/commands/__init__.py,sha256=NjxemJCRhWUDCP0nacsBfhXMYYUstVotgUhcISTaANU,812
144
160
  codex_autorunner/integrations/telegram/handlers/commands/approvals.py,sha256=uQsGQtSPjXZ5FyNldvVsZDImEI-G-YOMUwhlnth2wlc,6632
145
- codex_autorunner/integrations/telegram/handlers/commands/execution.py,sha256=BgHwY6efXY-x7QKxzGlTGyKBubKoBAygO7phLndg5JI,104903
146
- codex_autorunner/integrations/telegram/handlers/commands/files.py,sha256=xghRc6jF8iZoYxnOZY1h9wO08vLf72JcIcvRetfGQOU,50701
147
- codex_autorunner/integrations/telegram/handlers/commands/flows.py,sha256=zKEVt8Q55dgDC4qFpVM1QpAbZJLapFD1c1dkFDlqsec,53706
161
+ codex_autorunner/integrations/telegram/handlers/commands/execution.py,sha256=TF4d4V9SI-6qbEHTy9BZcwA3fuMh08RxYGBvJL-D084,112545
162
+ codex_autorunner/integrations/telegram/handlers/commands/files.py,sha256=OtWdyV_EKsyp6wJK2HlEUuBfB0ZM67NATnoZvVcVsTQ,59270
163
+ codex_autorunner/integrations/telegram/handlers/commands/flows.py,sha256=vJWHGNdFai8kgttOP1CybuAQPF4XfFU-mCOIXxbbP1I,64463
148
164
  codex_autorunner/integrations/telegram/handlers/commands/formatting.py,sha256=WRJDe2jUtrGMFVsp2Hah1GDsfQUV0Dd0KLSbcrY0j0o,3139
149
165
  codex_autorunner/integrations/telegram/handlers/commands/github.py,sha256=IKWKYttLqUei5NCzjIIqvGBcFpRBffdfvTwSMzPHzWo,68888
150
166
  codex_autorunner/integrations/telegram/handlers/commands/shared.py,sha256=Lam8f76yQGkTBsr0QpawOBU_eIjch8C4NzW6ifSd0sQ,6581
151
167
  codex_autorunner/integrations/telegram/handlers/commands/voice.py,sha256=y06N3ju4RjI1Y4r69Os-2BcR6erHjXyGOkoiLWepS0k,3955
152
- codex_autorunner/integrations/telegram/handlers/commands/workspace.py,sha256=w8LYnUJ0XX4VNmN0jkpGgbksyilliOBNQg71qiA24CE,81418
168
+ codex_autorunner/integrations/telegram/handlers/commands/workspace.py,sha256=7sle1PCCD1WQ1vdrzQ8IWEDSgTJHBxyf-TpZdeesElc,100360
169
+ codex_autorunner/integrations/templates/__init__.py,sha256=zicmMosrOEOwvBqiWkYzOfkWN6v2t4hlEwVMZyyLpNw,706
170
+ codex_autorunner/integrations/templates/scan_agent.py,sha256=4OIrBbIzG-nxS_zXNcfBKmC2l4XHVavG2rdFA9dEHo8,9887
153
171
  codex_autorunner/routes/__init__.py,sha256=c8w_wt0V051zbHnI9WG3HieblE_2HivnboGux25oLQA,505
154
172
  codex_autorunner/routes/agents.py,sha256=0mrfZk4I3m0ESgD22n-hyPrSMWlrzgC-WhXqRIci1r8,103
155
173
  codex_autorunner/routes/analytics.py,sha256=OPyGeqZVb0bDleUiAovfAOuYEpKwUNEbmC3Zhbd6_ds,110
@@ -167,51 +185,60 @@ codex_autorunner/routes/system.py,sha256=sDPU0W0XxMvPKsqUfNfryN7dTp3QNjE1d6awhsV
167
185
  codex_autorunner/routes/usage.py,sha256=XbPzqbQdPMlpley43IqGCeAZ0VzQ-7Da9A2dLhpmf0Q,102
168
186
  codex_autorunner/routes/voice.py,sha256=1Ce6A2NojspaJQ_TodOsdZRyodn4E-gDPkVnwe_rQi0,102
169
187
  codex_autorunner/routes/workspace.py,sha256=j_-z5kSU5pMC2obOyqJj4HYW35pquVwy7swBQBDflk4,110
170
- codex_autorunner/static/agentControls.js,sha256=VzLpWzG7tWak9f3_heLuL6HAobpiH6GhPRku_eciVSo,13119
188
+ codex_autorunner/static/agentControls.js,sha256=U8c8s9ueKOBD8rgLJS5gseebKnXnxYfMnQqttY2MS8U,13745
171
189
  codex_autorunner/static/agentEvents.js,sha256=HAQHeKJnOqj6IkcBEM1ye5p6rcIjK9c9LZfBWKowonw,8188
172
- codex_autorunner/static/app.js,sha256=NuHkyIkgYrCPo_H9xLW99Dr9rBc9BaM7IGdEJCAVfWA,4209
190
+ codex_autorunner/static/app.js,sha256=rxtxK_Tw4l6rXxRycE7a-rHoZaOTne901CQbmLQ0ZyU,7658
173
191
  codex_autorunner/static/archive.js,sha256=OsdQ_OwOiSsA1mDPtPO_fEUuVZ0XsDGfE20Ddnd7RII,31544
174
192
  codex_autorunner/static/archiveApi.js,sha256=da5envEoMUK0WF_iQScWjUhEeQPaCilsGGbWNyK_MnA,1622
175
193
  codex_autorunner/static/autoRefresh.js,sha256=8nsJmnIpD1Ga02kdUIFNAA3Z3-lw-7kLJMjR4Ve0aE8,6694
176
194
  codex_autorunner/static/bootstrap.js,sha256=ZXzMfDMjiC5ReOrDbv9lqSBaTZQlM7eqEAJ4IKPhm5s,4833
177
195
  codex_autorunner/static/bus.js,sha256=NXuNHd_43Irr-5Ood1LQ15rSwCTm5J_Pv9ybnkeGQM0,630
178
196
  codex_autorunner/static/cache.js,sha256=idp3ISlRKjSK_eSRUmL_rWGI2qx7g-BJ1_48Mz6IWSw,1035
197
+ codex_autorunner/static/chatUploads.js,sha256=oFKWPAHnESvk0aqFTH40A3-90fai78GGS9KXSr1RZsk,5174
179
198
  codex_autorunner/static/constants.js,sha256=TuLK0-_WKJVE5uJUeTl_CVtD5laEtTjtTnu0Uv2eIFw,1932
180
199
  codex_autorunner/static/dashboard.js,sha256=15gI7rxhtG6Ngnw_N9iNHSkALkaaGRIYCYoqEJxwOe4,30749
181
200
  codex_autorunner/static/diffRenderer.js,sha256=AVeJ6yt8UBk6yQJWV6VCIsH9TIY5CYTCjNFD8uOWQ9U,1307
182
- codex_autorunner/static/docChatCore.js,sha256=XJW4LzojwfMITuw0QictzDQBL3Pu_y8LM71r6Pr3USc,13540
201
+ codex_autorunner/static/docChatCore.js,sha256=LSn_Z7MHh7FtiRexXtxfXGdjN9mjfkdQODxgcAc90h0,22724
183
202
  codex_autorunner/static/docChatStorage.js,sha256=OgPiNgvPVVp0kJcCVy-ILjMSo5--keyrIleWacA-k6A,2104
184
203
  codex_autorunner/static/docChatVoice.js,sha256=YrKIf0INTke3ge9uDHLl_Fd3wFcISGyjJlQU-iyhAlU,2419
185
204
  codex_autorunner/static/docEditor.js,sha256=w2AqcQEGIkRut2xpRiFG4ndxccv0THoh3ZdwFw2YM6s,4580
186
205
  codex_autorunner/static/env.js,sha256=3-XgQC03WqalAg_T8dabn47uSKS7lPM874OzV7ET5jU,1813
187
206
  codex_autorunner/static/eventSummarizer.js,sha256=PuLdLS9MIVrp97W47iAlEf8TFLNTHCigT2clYCH2sZg,5425
188
- codex_autorunner/static/fileChat.js,sha256=NDuXXD35fVK2qxwQ9e1fAXMfy2WhIsq-L8BzIlyKOHA,5838
207
+ codex_autorunner/static/fileChat.js,sha256=cUdmgyUOo2VL5Oe8VK7aDFYHEoT1ldyjZx7bgY0A69E,7248
208
+ codex_autorunner/static/fileboxUi.js,sha256=HPNsms7jzdl8sM5eZNFkJac3mkvSRioziwIkQ16OwjQ,5600
189
209
  codex_autorunner/static/health.js,sha256=nwB-Ofc96zTP6YLQDaIJfO7duLug9bj3CCe893M7x1I,5204
190
- codex_autorunner/static/hub.js,sha256=s5K7GBccL5dd2VKtr7GQI268r4K1mj1yQJ9w90OGbMo,50255
191
- codex_autorunner/static/index.html,sha256=WXvgxZG0ntBpIqiIIBm0nChuKUNH18bBuOb7CDbswAw,50217
210
+ codex_autorunner/static/hub.js,sha256=CTZRedwEwo7S3Z500doHEYrEcWpIgm-Rk2rtY6aVd1U,48852
211
+ codex_autorunner/static/index.html,sha256=JICjnURPfBLlmVsbpiEkzu7mJsOKUwg7NXfgF8G6Ksg,65834
192
212
  codex_autorunner/static/liveUpdates.js,sha256=SiVWPQRp-mqmmhRqOQWPFtMBLUA89J1KYvif88ZCMOk,1950
193
213
  codex_autorunner/static/loader.js,sha256=2Xyg_D43sSsH3fmm93-utyPJJSQ7KpvebbhNrM79ljo,1065
194
- codex_autorunner/static/messages.js,sha256=wrJxDqFSPkD8mtoKFPEHcvMstVntN66tkqi3On-HG7o,32288
214
+ codex_autorunner/static/messages.js,sha256=xLjw2LJMy6ng1cgEsCcZZ7SN4PXeNSFEVkJycQVhe8Y,35287
195
215
  codex_autorunner/static/mobileCompact.js,sha256=cDXLGeFLj5_knH-9qOXfbR5IXjCttyQ3-jclL4k1ouo,9473
216
+ codex_autorunner/static/notifications.js,sha256=WauZLW1M4oPX9y9mtMklioVpzlPu7cu06aWgIBgEz2E,8992
217
+ codex_autorunner/static/pma.js,sha256=eA_jyCXjaLetVQ02-jacfLN813xYSM4yaGIesCJ9ssc,42857
196
218
  codex_autorunner/static/preserve.js,sha256=cOB-kcPQPHYDZqwkJFi69n6LhT51BHNWGL6zLRPsJyM,437
197
- codex_autorunner/static/settings.js,sha256=Q_jaK_9YFVps3foZApGOu7Yn4bRLRzqXzsvQfYLp1TM,9834
219
+ codex_autorunner/static/settings.js,sha256=ouKultNn5PUXt4tFr9CkkQdTMDwC_RtSTIbyuz-12Vs,9989
198
220
  codex_autorunner/static/smartRefresh.js,sha256=0BovWNSXgeqkcawiF0JfZf7Zu81Nqr2Ni4qCj0EeJ6I,1713
199
- codex_autorunner/static/styles.css,sha256=uvrcKbGmSBoAdxKVHBIupMr261vf1OW0FmL1ItRA6w4,210911
221
+ codex_autorunner/static/streamUtils.js,sha256=EXbXeDUKUry953W3noyWo-2dpZxVVkfgbwiFT3eAXLQ,2128
222
+ codex_autorunner/static/styles.css,sha256=srBoQ3KL6UW2zl80ThpgFE0c9a8hDciRjjxMYfrcuGc,253919
200
223
  codex_autorunner/static/tabs.js,sha256=SgebpOJIxzkD307VQ1NmXBpLY40b1g8RvNIcf2fmVlI,8429
224
+ codex_autorunner/static/templateReposSettings.js,sha256=w-YmI-zbSpiVE_MHew3Ly2kJRF81_QbV-GMl8MAfq9E,7121
201
225
  codex_autorunner/static/terminal.js,sha256=EEnwfA8rcOt1vOQngXdOTpymdqsYoBA-XPmFoksaHcs,1621
202
226
  codex_autorunner/static/terminalManager.js,sha256=_KqMvFqCq3t5St_Bxl7pC8w9KAvOth9InT56hUSnZxc,139493
203
- codex_autorunner/static/ticketChatActions.js,sha256=dH0h7CdCbEHr94aUQI-jxkLLoXw6_eoNeNhpcOWR0Ck,11862
227
+ codex_autorunner/static/ticketChatActions.js,sha256=4BsA_eUb3fV0qqK7GO1s7BvZiVIH1F7ggm773x5BS9E,18026
204
228
  codex_autorunner/static/ticketChatEvents.js,sha256=9Y1CA4t--bxqXRHrsE4O4Dx5Td9KAFAAZwLXXj_y1yM,536
205
229
  codex_autorunner/static/ticketChatStorage.js,sha256=lEg2zKJfEA34ZS0azwCmGPW8CPpX3wqCmyNcCafP9Yw,621
206
- codex_autorunner/static/ticketChatStream.js,sha256=yotrAXNI4FXbJFGuiLgVcYXDs3KU4GaNmQdwrECGPrk,9432
207
- codex_autorunner/static/ticketEditor.js,sha256=uL7PjXtBE6IKw9BSMKnSSPMRlt3m8LdbKmd3sOvso2U,29973
230
+ codex_autorunner/static/ticketChatStream.js,sha256=vv5hqpmvUPINVEZB5PKPBviLqB5ZHdLb3N-UhARxhiA,5987
231
+ codex_autorunner/static/ticketEditor.js,sha256=BYWz8Avwux-rfuEZ-_uObokzGVBXYEnZAGPd8gElfU0,31420
232
+ codex_autorunner/static/ticketTemplates.js,sha256=jk8LWKnMHPoLoD7QCQ-88NDdQWwrHZj12RGtFkTbkjk,26465
208
233
  codex_autorunner/static/ticketVoice.js,sha256=CVRumgn6kc9uwEqvRxh5bdHx4C1DTOv-SEP_fJgeLxM,320
209
- codex_autorunner/static/tickets.js,sha256=Y0NePyenqZKxaIPbGGxPDAAz0sv-wlIHxvIqfoYPX9Y,77393
210
- codex_autorunner/static/utils.js,sha256=pIoc5NNeuGNKNMn53RLh2oYRvil8JIqK6wkFxkzgTgE,22306
234
+ codex_autorunner/static/tickets.js,sha256=c57keSCtTObCY4XXVcTkqBhUdjRJqFc_86tTTly2_B4,79904
235
+ codex_autorunner/static/turnEvents.js,sha256=AmZZ3Bt-A1hg4QwaY9-tiwxnUEvDJvwdbrq7OF8wK5s,1152
236
+ codex_autorunner/static/turnResume.js,sha256=eAXZLyyEYr-mCuDjItxRJkdCUBbdXZGzQEH_lTx2CHk,776
237
+ codex_autorunner/static/utils.js,sha256=oWEmfn2JFSYDIcKpBNVu4kcSHnqbaxm42AxP1Ns7OBA,23200
211
238
  codex_autorunner/static/voice.js,sha256=QfQvDQK-AkyO1nNtYxq04dKolfyWHiLHG5uihGV9hpU,20209
212
- codex_autorunner/static/workspace.js,sha256=lskhBJZquG4HAOmHD23McgRIJo1KoaiqxCk4IobFIM0,29778
239
+ codex_autorunner/static/workspace.js,sha256=xqdf9T_0Cy_iFECMREIZ-WwmKL0jUfz2aM4f2Cm_DKg,37220
213
240
  codex_autorunner/static/workspaceApi.js,sha256=kZ79wHLBocaoFQwMN09XoQ8HM2rBKucqa_NQx5FPOlM,2015
214
- codex_autorunner/static/workspaceFileBrowser.js,sha256=0EAn4aKO34vqKLYNZhuLq9ODg8GCy9PR9yoY8dtaN-o,20858
241
+ codex_autorunner/static/workspaceFileBrowser.js,sha256=qgn3AXtSym3nIY4d7RQxLW3JLuD3iOjlwPymXsP3Eus,20961
215
242
  codex_autorunner/static/vendor/LICENSE.xterm,sha256=R1kKvILKKMOnUg07hzusejoAsCy8Mik-HxQdzNJpgIc,1186
216
243
  codex_autorunner/static/vendor/xterm-addon-fit.js,sha256=EPMZTF8XwXhvt9XbhlweyFObZzajGAY_04var3xGhI8,1503
217
244
  codex_autorunner/static/vendor/xterm.css,sha256=gy8_LGA7Q61DUf8ElwFQzHqHMBQnbbEmpgZcbdgeSHI,5383
@@ -237,48 +264,52 @@ codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-vietnamese
237
264
  codex_autorunner/static/vendor/fonts/jetbrains-mono/OFL.txt,sha256=p2q_ACxJCX0UboZ0CjEFpdAEULFZLoIKEQmoxWgM1pc,4399
238
265
  codex_autorunner/surfaces/__init__.py,sha256=qZrxvu7IX7s-SgSSIugNSc1JBE566tYz0zCX0hDhoUs,117
239
266
  codex_autorunner/surfaces/cli/__init__.py,sha256=TPjzXRVfCb4BIDdNkHovX9nhW31VGTQGy7V7oYvEVF4,211
240
- codex_autorunner/surfaces/cli/cli.py,sha256=eblZyhwYmZrxEcvaFZFeMHzc8RzrxqTyJQrA4KwYwEU,44641
267
+ codex_autorunner/surfaces/cli/cli.py,sha256=vKlQSC0MPXVeQNjEj3eY94iTzUglA3uk3YScyynNiHQ,92443
241
268
  codex_autorunner/surfaces/cli/codex_cli.py,sha256=4DJIaw63ohYlxsXWTG7Ikux8_zwgWYOyQqXtRWE7rMc,386
269
+ codex_autorunner/surfaces/cli/pma_cli.py,sha256=7Id9_KpG2UBQoz7_201vZib-4C3DJyCKxjJ7fiHyARU,30315
242
270
  codex_autorunner/surfaces/telegram/__init__.py,sha256=esNRNjA4D3fsYSNsR-x2C18iUQpnyYWY0CQT7hrUx3k,66
243
271
  codex_autorunner/surfaces/web/__init__.py,sha256=fDDDTYL26__wwaWd7xtI6axymkOgYntcrlHeHptDb8I,29
244
- codex_autorunner/surfaces/web/app.py,sha256=t9rNDzuaaLUx7B0Xe8J2HqDXYu5g7Dj4PdakRGOH2Lo,79037
272
+ codex_autorunner/surfaces/web/app.py,sha256=WpE-jiYok1t_Qnvr0HNra1VJO211s3Y19pWXePCbDiQ,87990
245
273
  codex_autorunner/surfaces/web/hub_jobs.py,sha256=L_ba698fms2YdlZLUl6erLha-_-t3MJE5jsL9JcP3pw,6059
246
274
  codex_autorunner/surfaces/web/middleware.py,sha256=4mh4EikDLWWByLx3O5nQvMcqHOUFpORrNSWagHWLweE,21455
247
275
  codex_autorunner/surfaces/web/pty_session.py,sha256=K1_hJFYy-xh90o1hDezmsC3euP7ifsgHMzAg1E9HZA8,12791
248
276
  codex_autorunner/surfaces/web/review.py,sha256=70KXs1-b15f1CXuRfWHgHpriHzcyPbpMkEFY25AOzNo,166
249
- codex_autorunner/surfaces/web/runner_manager.py,sha256=pbkc13vCQ0Ycg0WcYvfzCJbbi6g_IOInaztjAZdQMRQ,648
250
- codex_autorunner/surfaces/web/schemas.py,sha256=tnV_89jYDdeBz52RS8qlxEaESJ-e-2bWdPZB15sY0ZQ,9501
277
+ codex_autorunner/surfaces/web/runner_manager.py,sha256=V1oA0e8qFpVz1wNGr-67lEMoe4jTo5x7DULgOrp2bx8,665
278
+ codex_autorunner/surfaces/web/schemas.py,sha256=Py7hljRZ_e8epRFbfc7-GNie9sYV2KgkYAxJP126v4k,10711
251
279
  codex_autorunner/surfaces/web/static_assets.py,sha256=Mo0FJ0ALM-NlUpkWJIMKC2Vq5JX6ZeOe3w_h_VK5uys,15178
252
280
  codex_autorunner/surfaces/web/static_refresh.py,sha256=Rv40lPd3eRDqcwnF6CXlwRaV5kNPkcXund7zjY7YqGM,3145
253
281
  codex_autorunner/surfaces/web/terminal_sessions.py,sha256=uol4tWorQ-EcJHLWNS6MQb8otpGFR1CaXuzutGMOgO0,2651
254
- codex_autorunner/surfaces/web/routes/__init__.py,sha256=K5yCrvwECOMjOeB_zhVfEkYo8pXyTCDDcSTNlnG_j-M,2964
282
+ codex_autorunner/surfaces/web/routes/__init__.py,sha256=laWu7u2pF5Xelmsaap-WVMCYj4puekaI-xCqpEiv-RI,3154
255
283
  codex_autorunner/surfaces/web/routes/agents.py,sha256=w3yC3KxNMy16015YFS9FNRLLiIq9CvFM7culln7ByqA,5541
256
- codex_autorunner/surfaces/web/routes/analytics.py,sha256=TkOSd3gsv2LggHl00a9t8o901J94uPqsX6VRwT_t4wQ,9435
284
+ codex_autorunner/surfaces/web/routes/analytics.py,sha256=1P4TP_icwWYY2ddLYHaCTTxgkc_1QrRch12nakOtCrY,10140
257
285
  codex_autorunner/surfaces/web/routes/app_server.py,sha256=vPy0nsw7wqQpK_4Iquffa6Aox4ksuyBx1hHfvrek040,5351
258
286
  codex_autorunner/surfaces/web/routes/archive.py,sha256=IjYtIi0P_WucFxppoqRLnSuFaFcclSKx9kiDnAbJ5vU,12514
259
287
  codex_autorunner/surfaces/web/routes/base.py,sha256=JV8kpXuaPkoJh9DBq--k9CdEM2VZwqfBDTEUE8EqGRg,26662
260
- codex_autorunner/surfaces/web/routes/file_chat.py,sha256=PTUDrhu6IOS6eEVSRydDARizPlH_LZfIldhSw6Sne1g,29843
261
- codex_autorunner/surfaces/web/routes/flows.py,sha256=wav4K9RhR29GEK7PCVWB0PpPXej3TtYH5WCg9TRh9bc,42813
262
- codex_autorunner/surfaces/web/routes/messages.py,sha256=qa9b1R8WGYsZCidy43qCocogeQ1g6pH1mKdAsJbvJlU,16643
263
- codex_autorunner/surfaces/web/routes/repos.py,sha256=P1Yr8t19edAEUT9GHefU56dfvv7SbS0mqdmEp6-teP0,7999
288
+ codex_autorunner/surfaces/web/routes/file_chat.py,sha256=IVvG5TmeTruY4Geo6qMZV1P3U5xIiXCTvQ-tFs565XQ,41880
289
+ codex_autorunner/surfaces/web/routes/filebox.py,sha256=HdRRAjh80o4IfDkUbsuPUXflQ96fcJ6KBDQHmq42mcA,8084
290
+ codex_autorunner/surfaces/web/routes/flows.py,sha256=C9SpQwmnVb5t3xfxluNTrhG1fHlUkRTrV-evzxptUB4,50327
291
+ codex_autorunner/surfaces/web/routes/messages.py,sha256=XEIH24jfHUN3e00hopDmiXnADLo0h6Shw9Ie-nHAdPs,18070
292
+ codex_autorunner/surfaces/web/routes/pma.py,sha256=1hLNmFkSWbZxhVMkf-IUAs0AhoajUVLW-z1j7S4mbGU,65690
293
+ codex_autorunner/surfaces/web/routes/repos.py,sha256=peJku6GMqMuF4mHVo-jC8cooeIRbNDpW5Hd_caGqmYs,8000
264
294
  codex_autorunner/surfaces/web/routes/review.py,sha256=kFUxZ27PSc89VR1V4-2m6iyL5EbTJ5TV60WmAnKKccY,5510
265
295
  codex_autorunner/surfaces/web/routes/sessions.py,sha256=TdUdMFp8AWJJ2GQpNUvHN9SJ2kFTpTFFITWWXmKcixA,6535
266
296
  codex_autorunner/surfaces/web/routes/settings.py,sha256=uqSGmXp_jdrKnwMsJ_hYp18beTzKQULeTNE5nicAXVk,7347
267
- codex_autorunner/surfaces/web/routes/shared.py,sha256=Lwv0hex39ZgsHX22BI0uXdrnhBOAkolVbp5EYr6l7Q8,9159
297
+ codex_autorunner/surfaces/web/routes/shared.py,sha256=y3svPKfYPaCiY66VHdVj_AoqfefIBRjZNmT34I4mfzs,8988
268
298
  codex_autorunner/surfaces/web/routes/system.py,sha256=fvU-5umRh8bxgdiNmfs_5ObUGibMLHqDQpvasU-0m80,7580
299
+ codex_autorunner/surfaces/web/routes/templates.py,sha256=43lGtI9vRS6zQV3Ioung_zojaLvLDEIopuUQZaJE0mY,21760
269
300
  codex_autorunner/surfaces/web/routes/terminal_images.py,sha256=0wNAIHRcN_iIzeXuVN6nqe9E7OYEoQ6C84Tcx93r1XI,3299
270
301
  codex_autorunner/surfaces/web/routes/usage.py,sha256=p4olpgUXSbV7Nn4DQPZPYCxPNzmFQdC_5gUYUSPMJuU,2737
271
302
  codex_autorunner/surfaces/web/routes/voice.py,sha256=sfws5BPrz9GWH_CEqrtNgO0H4wV1Ys-FNQSH5okQ_os,4858
272
303
  codex_autorunner/surfaces/web/routes/workspace.py,sha256=nbBUXX35h6QI0HkC0SLliDj1v43pKFBoWsqojylg0lA,11258
273
304
  codex_autorunner/tickets/__init__.py,sha256=2_OD0c3RHdRgCoi-T5Xacw9_gKqu5BBbUxQRMTZgsNw,607
274
- codex_autorunner/tickets/agent_pool.py,sha256=HCSx5d982izWd1jUmC8RlAbWzgTkIXHKoecqioZvkio,16209
275
- codex_autorunner/tickets/files.py,sha256=xTITpvXRC5gC8jFrioQ4B_Qg0CppH9NDkDe2NGKdoPs,2622
305
+ codex_autorunner/tickets/agent_pool.py,sha256=wweHSG6_LDYRDdlLbTt-y-HlyKOs22Ycz9nOxlpRLH4,17617
306
+ codex_autorunner/tickets/files.py,sha256=DQDa4A9o_QRgAJ7P2MHB1jTdLlosr-XlJ5x8D0y-vQY,3303
276
307
  codex_autorunner/tickets/frontmatter.py,sha256=zsv6Y-csjpL_jtzNPk3d34oOqrg-6EjnAlN98BEtF_g,1547
277
- codex_autorunner/tickets/lint.py,sha256=6vKPWMqbBvJ0fPJqBZGWo0aIsoYckceMjdVIzREUxMI,2873
278
- codex_autorunner/tickets/models.py,sha256=YFBd8rid2RCHusa-V8DliMBWhXhSOOJ33SozSxRnEO0,2704
279
- codex_autorunner/tickets/outbox.py,sha256=30_Jxns2JMo9eia3kM2ZYDHA9emkdKt98JlD19A9HLQ,7072
308
+ codex_autorunner/tickets/lint.py,sha256=RFwVqodHaq7PO-PSWw-XUhtqABgFupQXO4W9ggdeOTE,4462
309
+ codex_autorunner/tickets/models.py,sha256=X8zmzWjRhJyBrSMzUca-4lH3H-4JjL5159bfIjfsJ4c,2854
310
+ codex_autorunner/tickets/outbox.py,sha256=uUI_EkNiqs9lm9lSwSViPKAR8xSCHMFMN0CL-cOEmIY,8179
280
311
  codex_autorunner/tickets/replies.py,sha256=R_eeg55s8dQ4VBcIpjPI1up4jCQvG8l_c0uV4LUa5Gs,4841
281
- codex_autorunner/tickets/runner.py,sha256=bBZtNjE38Wz2kLc9eoS5YlP_JvSRNygnLaBxrkWpiU0,36922
312
+ codex_autorunner/tickets/runner.py,sha256=1pvA6WBDOUOo35SaqqBNEn1gbBxWzoxjHRUywgjF-4o,47725
282
313
  codex_autorunner/tickets/spec_ingest.py,sha256=PmCYdGFeKVN6C9tae3j1zt8WXvISunlFpVHimycaMpo,2507
283
314
  codex_autorunner/voice/__init__.py,sha256=Z2ziy5TP4NCgNi4xld1FfRIbSJL9hpgkggYhbEtGOgQ,991
284
315
  codex_autorunner/voice/capture.py,sha256=UzvQvu3KaKpL4RoyXT-mq24uohAXvHIZ8vi6wObEJgQ,11435
@@ -300,9 +331,9 @@ codex_autorunner/web/static_refresh.py,sha256=4QY5FK5T8ymsBIuSeuLWcx9yXL8LyO4Usc
300
331
  codex_autorunner/web/terminal_sessions.py,sha256=8Pa4gKd-ZUjwqEDUInAgEPRP14CouBEZqgvXRKzNjEg,119
301
332
  codex_autorunner/workspace/__init__.py,sha256=yTql6_7BVZG0tirPMhbmMEVkk_j7Q8Wvb89eIZ0K7o8,977
302
333
  codex_autorunner/workspace/paths.py,sha256=mScZQpKPyFYvxEmyr_51PfWP_7aTAWkRT4AZWqGnME4,10785
303
- codex_autorunner-1.1.0.dist-info/licenses/LICENSE,sha256=gfYghezUeimFKy0hTmkOiAAwBY_QdRSXDTypbMtZU0k,1068
304
- codex_autorunner-1.1.0.dist-info/METADATA,sha256=V4ximj_lUt9K-aHHFrdDKXdE9Cupf8i_ZGzzXt6RDtQ,8380
305
- codex_autorunner-1.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
306
- codex_autorunner-1.1.0.dist-info/entry_points.txt,sha256=iPTzENG1MGBhxWF4x8W7VWk3iq4XurmGXMnIch7AVTs,93
307
- codex_autorunner-1.1.0.dist-info/top_level.txt,sha256=fc2h9rEENr-ZdyLemPJbMcWmsWlz4JuyD1UOkPLLVSQ,17
308
- codex_autorunner-1.1.0.dist-info/RECORD,,
334
+ codex_autorunner-1.2.0.dist-info/licenses/LICENSE,sha256=gfYghezUeimFKy0hTmkOiAAwBY_QdRSXDTypbMtZU0k,1068
335
+ codex_autorunner-1.2.0.dist-info/METADATA,sha256=1xmI7p6haabEJXOlVpgH2_gTx3W2gjNBON_RK2CW5Bo,8914
336
+ codex_autorunner-1.2.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
337
+ codex_autorunner-1.2.0.dist-info/entry_points.txt,sha256=iPTzENG1MGBhxWF4x8W7VWk3iq4XurmGXMnIch7AVTs,93
338
+ codex_autorunner-1.2.0.dist-info/top_level.txt,sha256=fc2h9rEENr-ZdyLemPJbMcWmsWlz4JuyD1UOkPLLVSQ,17
339
+ codex_autorunner-1.2.0.dist-info/RECORD,,
@@ -1,21 +0,0 @@
1
- from __future__ import annotations
2
-
3
- from typing import Any, Callable
4
-
5
-
6
- def handle_agent_output(
7
- log_app_server_output: Callable[[int, list[str]], None],
8
- write_run_artifact: Callable[[int, str, str], Any],
9
- merge_run_index_entry: Callable[[int, dict[str, Any]], None],
10
- run_id: int,
11
- output: str | list[str],
12
- ) -> None:
13
- if isinstance(output, str):
14
- messages = [output]
15
- else:
16
- messages = output
17
- log_app_server_output(run_id, messages)
18
- output_text = "\n\n".join(messages).strip() if messages else ""
19
- if output_text:
20
- output_path = write_run_artifact(run_id, "output.txt", output_text)
21
- merge_run_index_entry(run_id, {"artifacts": {"output_path": str(output_path)}})