codex-autorunner 0.1.2__py3-none-any.whl → 1.0.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 (189) hide show
  1. codex_autorunner/__main__.py +4 -0
  2. codex_autorunner/agents/opencode/client.py +68 -35
  3. codex_autorunner/agents/opencode/logging.py +21 -5
  4. codex_autorunner/agents/opencode/run_prompt.py +1 -0
  5. codex_autorunner/agents/opencode/runtime.py +118 -30
  6. codex_autorunner/agents/opencode/supervisor.py +36 -48
  7. codex_autorunner/agents/registry.py +136 -8
  8. codex_autorunner/api.py +25 -0
  9. codex_autorunner/bootstrap.py +16 -35
  10. codex_autorunner/cli.py +157 -139
  11. codex_autorunner/core/about_car.py +44 -32
  12. codex_autorunner/core/adapter_utils.py +21 -0
  13. codex_autorunner/core/app_server_logging.py +7 -3
  14. codex_autorunner/core/app_server_prompts.py +27 -260
  15. codex_autorunner/core/app_server_threads.py +15 -26
  16. codex_autorunner/core/codex_runner.py +6 -0
  17. codex_autorunner/core/config.py +390 -100
  18. codex_autorunner/core/docs.py +10 -2
  19. codex_autorunner/core/drafts.py +82 -0
  20. codex_autorunner/core/engine.py +278 -262
  21. codex_autorunner/core/flows/__init__.py +25 -0
  22. codex_autorunner/core/flows/controller.py +178 -0
  23. codex_autorunner/core/flows/definition.py +82 -0
  24. codex_autorunner/core/flows/models.py +75 -0
  25. codex_autorunner/core/flows/runtime.py +351 -0
  26. codex_autorunner/core/flows/store.py +485 -0
  27. codex_autorunner/core/flows/transition.py +133 -0
  28. codex_autorunner/core/flows/worker_process.py +242 -0
  29. codex_autorunner/core/hub.py +15 -9
  30. codex_autorunner/core/locks.py +4 -0
  31. codex_autorunner/core/prompt.py +15 -7
  32. codex_autorunner/core/redaction.py +29 -0
  33. codex_autorunner/core/review_context.py +5 -8
  34. codex_autorunner/core/run_index.py +6 -0
  35. codex_autorunner/core/runner_process.py +5 -2
  36. codex_autorunner/core/state.py +0 -88
  37. codex_autorunner/core/static_assets.py +55 -0
  38. codex_autorunner/core/supervisor_utils.py +67 -0
  39. codex_autorunner/core/update.py +20 -11
  40. codex_autorunner/core/update_runner.py +2 -0
  41. codex_autorunner/core/utils.py +29 -2
  42. codex_autorunner/discovery.py +2 -4
  43. codex_autorunner/flows/ticket_flow/__init__.py +3 -0
  44. codex_autorunner/flows/ticket_flow/definition.py +91 -0
  45. codex_autorunner/integrations/agents/__init__.py +27 -0
  46. codex_autorunner/integrations/agents/agent_backend.py +142 -0
  47. codex_autorunner/integrations/agents/codex_backend.py +307 -0
  48. codex_autorunner/integrations/agents/opencode_backend.py +325 -0
  49. codex_autorunner/integrations/agents/run_event.py +71 -0
  50. codex_autorunner/integrations/app_server/client.py +576 -92
  51. codex_autorunner/integrations/app_server/supervisor.py +59 -33
  52. codex_autorunner/integrations/telegram/adapter.py +141 -167
  53. codex_autorunner/integrations/telegram/api_schemas.py +120 -0
  54. codex_autorunner/integrations/telegram/config.py +175 -0
  55. codex_autorunner/integrations/telegram/constants.py +16 -1
  56. codex_autorunner/integrations/telegram/dispatch.py +17 -0
  57. codex_autorunner/integrations/telegram/doctor.py +47 -0
  58. codex_autorunner/integrations/telegram/handlers/callbacks.py +0 -4
  59. codex_autorunner/integrations/telegram/handlers/commands/__init__.py +2 -0
  60. codex_autorunner/integrations/telegram/handlers/commands/execution.py +53 -57
  61. codex_autorunner/integrations/telegram/handlers/commands/files.py +2 -6
  62. codex_autorunner/integrations/telegram/handlers/commands/flows.py +227 -0
  63. codex_autorunner/integrations/telegram/handlers/commands/formatting.py +1 -1
  64. codex_autorunner/integrations/telegram/handlers/commands/github.py +41 -582
  65. codex_autorunner/integrations/telegram/handlers/commands/workspace.py +8 -8
  66. codex_autorunner/integrations/telegram/handlers/commands_runtime.py +133 -475
  67. codex_autorunner/integrations/telegram/handlers/commands_spec.py +11 -4
  68. codex_autorunner/integrations/telegram/handlers/messages.py +120 -9
  69. codex_autorunner/integrations/telegram/helpers.py +88 -16
  70. codex_autorunner/integrations/telegram/outbox.py +208 -37
  71. codex_autorunner/integrations/telegram/progress_stream.py +3 -10
  72. codex_autorunner/integrations/telegram/service.py +214 -40
  73. codex_autorunner/integrations/telegram/state.py +100 -2
  74. codex_autorunner/integrations/telegram/ticket_flow_bridge.py +322 -0
  75. codex_autorunner/integrations/telegram/transport.py +36 -3
  76. codex_autorunner/integrations/telegram/trigger_mode.py +53 -0
  77. codex_autorunner/manifest.py +2 -0
  78. codex_autorunner/plugin_api.py +22 -0
  79. codex_autorunner/routes/__init__.py +23 -14
  80. codex_autorunner/routes/analytics.py +239 -0
  81. codex_autorunner/routes/base.py +81 -109
  82. codex_autorunner/routes/file_chat.py +836 -0
  83. codex_autorunner/routes/flows.py +980 -0
  84. codex_autorunner/routes/messages.py +459 -0
  85. codex_autorunner/routes/system.py +6 -1
  86. codex_autorunner/routes/usage.py +87 -0
  87. codex_autorunner/routes/workspace.py +271 -0
  88. codex_autorunner/server.py +2 -1
  89. codex_autorunner/static/agentControls.js +1 -0
  90. codex_autorunner/static/agentEvents.js +248 -0
  91. codex_autorunner/static/app.js +25 -22
  92. codex_autorunner/static/autoRefresh.js +29 -1
  93. codex_autorunner/static/bootstrap.js +1 -0
  94. codex_autorunner/static/bus.js +1 -0
  95. codex_autorunner/static/cache.js +1 -0
  96. codex_autorunner/static/constants.js +20 -4
  97. codex_autorunner/static/dashboard.js +162 -196
  98. codex_autorunner/static/diffRenderer.js +37 -0
  99. codex_autorunner/static/docChatCore.js +324 -0
  100. codex_autorunner/static/docChatStorage.js +65 -0
  101. codex_autorunner/static/docChatVoice.js +65 -0
  102. codex_autorunner/static/docEditor.js +133 -0
  103. codex_autorunner/static/env.js +1 -0
  104. codex_autorunner/static/eventSummarizer.js +166 -0
  105. codex_autorunner/static/fileChat.js +182 -0
  106. codex_autorunner/static/health.js +155 -0
  107. codex_autorunner/static/hub.js +41 -118
  108. codex_autorunner/static/index.html +787 -858
  109. codex_autorunner/static/liveUpdates.js +1 -0
  110. codex_autorunner/static/loader.js +1 -0
  111. codex_autorunner/static/messages.js +470 -0
  112. codex_autorunner/static/mobileCompact.js +2 -1
  113. codex_autorunner/static/settings.js +24 -211
  114. codex_autorunner/static/styles.css +7567 -3865
  115. codex_autorunner/static/tabs.js +28 -5
  116. codex_autorunner/static/terminal.js +14 -0
  117. codex_autorunner/static/terminalManager.js +34 -59
  118. codex_autorunner/static/ticketChatActions.js +333 -0
  119. codex_autorunner/static/ticketChatEvents.js +16 -0
  120. codex_autorunner/static/ticketChatStorage.js +16 -0
  121. codex_autorunner/static/ticketChatStream.js +264 -0
  122. codex_autorunner/static/ticketEditor.js +750 -0
  123. codex_autorunner/static/ticketVoice.js +9 -0
  124. codex_autorunner/static/tickets.js +1315 -0
  125. codex_autorunner/static/utils.js +32 -3
  126. codex_autorunner/static/voice.js +1 -0
  127. codex_autorunner/static/workspace.js +672 -0
  128. codex_autorunner/static/workspaceApi.js +53 -0
  129. codex_autorunner/static/workspaceFileBrowser.js +504 -0
  130. codex_autorunner/tickets/__init__.py +20 -0
  131. codex_autorunner/tickets/agent_pool.py +377 -0
  132. codex_autorunner/tickets/files.py +85 -0
  133. codex_autorunner/tickets/frontmatter.py +55 -0
  134. codex_autorunner/tickets/lint.py +102 -0
  135. codex_autorunner/tickets/models.py +95 -0
  136. codex_autorunner/tickets/outbox.py +232 -0
  137. codex_autorunner/tickets/replies.py +179 -0
  138. codex_autorunner/tickets/runner.py +823 -0
  139. codex_autorunner/tickets/spec_ingest.py +77 -0
  140. codex_autorunner/web/app.py +269 -91
  141. codex_autorunner/web/middleware.py +3 -4
  142. codex_autorunner/web/schemas.py +89 -109
  143. codex_autorunner/web/static_assets.py +1 -44
  144. codex_autorunner/workspace/__init__.py +40 -0
  145. codex_autorunner/workspace/paths.py +319 -0
  146. {codex_autorunner-0.1.2.dist-info → codex_autorunner-1.0.0.dist-info}/METADATA +18 -21
  147. codex_autorunner-1.0.0.dist-info/RECORD +251 -0
  148. {codex_autorunner-0.1.2.dist-info → codex_autorunner-1.0.0.dist-info}/WHEEL +1 -1
  149. codex_autorunner/agents/execution/policy.py +0 -292
  150. codex_autorunner/agents/factory.py +0 -52
  151. codex_autorunner/agents/orchestrator.py +0 -358
  152. codex_autorunner/core/doc_chat.py +0 -1446
  153. codex_autorunner/core/snapshot.py +0 -580
  154. codex_autorunner/integrations/github/chatops.py +0 -268
  155. codex_autorunner/integrations/github/pr_flow.py +0 -1314
  156. codex_autorunner/routes/docs.py +0 -381
  157. codex_autorunner/routes/github.py +0 -327
  158. codex_autorunner/routes/runs.py +0 -250
  159. codex_autorunner/spec_ingest.py +0 -812
  160. codex_autorunner/static/docChatActions.js +0 -287
  161. codex_autorunner/static/docChatEvents.js +0 -300
  162. codex_autorunner/static/docChatRender.js +0 -205
  163. codex_autorunner/static/docChatStream.js +0 -361
  164. codex_autorunner/static/docs.js +0 -20
  165. codex_autorunner/static/docsClipboard.js +0 -69
  166. codex_autorunner/static/docsCrud.js +0 -257
  167. codex_autorunner/static/docsDocUpdates.js +0 -62
  168. codex_autorunner/static/docsDrafts.js +0 -16
  169. codex_autorunner/static/docsElements.js +0 -69
  170. codex_autorunner/static/docsInit.js +0 -285
  171. codex_autorunner/static/docsParse.js +0 -160
  172. codex_autorunner/static/docsSnapshot.js +0 -87
  173. codex_autorunner/static/docsSpecIngest.js +0 -263
  174. codex_autorunner/static/docsState.js +0 -127
  175. codex_autorunner/static/docsThreadRegistry.js +0 -44
  176. codex_autorunner/static/docsUi.js +0 -153
  177. codex_autorunner/static/docsVoice.js +0 -56
  178. codex_autorunner/static/github.js +0 -504
  179. codex_autorunner/static/logs.js +0 -678
  180. codex_autorunner/static/review.js +0 -157
  181. codex_autorunner/static/runs.js +0 -418
  182. codex_autorunner/static/snapshot.js +0 -124
  183. codex_autorunner/static/state.js +0 -94
  184. codex_autorunner/static/todoPreview.js +0 -27
  185. codex_autorunner/workspace.py +0 -16
  186. codex_autorunner-0.1.2.dist-info/RECORD +0 -222
  187. {codex_autorunner-0.1.2.dist-info → codex_autorunner-1.0.0.dist-info}/entry_points.txt +0 -0
  188. {codex_autorunner-0.1.2.dist-info → codex_autorunner-1.0.0.dist-info}/licenses/LICENSE +0 -0
  189. {codex_autorunner-0.1.2.dist-info → codex_autorunner-1.0.0.dist-info}/top_level.txt +0 -0
@@ -1,94 +0,0 @@
1
- import { api, confirmModal, flash, streamEvents } from "./utils.js";
2
- import { publish } from "./bus.js";
3
- import { CONSTANTS } from "./constants.js";
4
- let stopStateStream = null;
5
- export async function loadState({ notify = true } = {}) {
6
- try {
7
- const data = await api(CONSTANTS.API.STATE_ENDPOINT);
8
- publish("state:update", data);
9
- return data;
10
- }
11
- catch (err) {
12
- if (notify)
13
- flash(err.message);
14
- publish("state:error", err);
15
- throw err;
16
- }
17
- }
18
- export function startStatePolling() {
19
- if (stopStateStream)
20
- return stopStateStream;
21
- let active = true;
22
- let cancelStream = null;
23
- const connect = () => {
24
- if (!active)
25
- return;
26
- loadState({ notify: false }).catch(() => { });
27
- cancelStream = streamEvents("/api/state/stream", {
28
- onMessage: (data, event) => {
29
- if (event && event !== "message")
30
- return;
31
- try {
32
- const state = JSON.parse(data);
33
- publish("state:update", state);
34
- }
35
- catch (e) {
36
- console.error("Bad state payload", e);
37
- }
38
- },
39
- onFinish: () => {
40
- if (active) {
41
- setTimeout(connect, 2000);
42
- }
43
- },
44
- });
45
- };
46
- connect();
47
- stopStateStream = () => {
48
- active = false;
49
- if (cancelStream)
50
- cancelStream();
51
- stopStateStream = null;
52
- };
53
- return stopStateStream;
54
- }
55
- async function runAction(path, body, successMessage) {
56
- await api(path, { method: "POST", body });
57
- if (successMessage)
58
- flash(successMessage);
59
- await loadState({ notify: false });
60
- }
61
- export function startRun(once = false, overrides = {}) {
62
- const body = { once };
63
- if (Object.prototype.hasOwnProperty.call(overrides, "agent")) {
64
- body.agent = overrides.agent;
65
- }
66
- if (Object.prototype.hasOwnProperty.call(overrides, "model")) {
67
- body.model = overrides.model;
68
- }
69
- if (Object.prototype.hasOwnProperty.call(overrides, "reasoning")) {
70
- body.reasoning = overrides.reasoning;
71
- }
72
- return runAction("/api/run/start", body, once ? "Started one-off run" : "Runner starting");
73
- }
74
- export function stopRun() {
75
- return runAction("/api/run/stop", null, "Stop signal sent");
76
- }
77
- export function resumeRun() {
78
- return runAction("/api/run/resume", null, "Resume requested");
79
- }
80
- export async function killRun() {
81
- const confirmed = await confirmModal("Kill the runner process? This stops it immediately and may leave partial state.", { confirmText: "Kill runner", cancelText: "Cancel", danger: true });
82
- if (!confirmed)
83
- return null;
84
- return runAction("/api/run/kill", null, "Kill signal sent");
85
- }
86
- export function resetRun() {
87
- return runAction("/api/run/reset", null, "Runner reset complete");
88
- }
89
- export async function clearLock() {
90
- const confirmed = await confirmModal("Clear a stale autorunner lock? This will only succeed if the lock looks safe to remove.", { confirmText: "Clear lock", cancelText: "Cancel", danger: true });
91
- if (!confirmed)
92
- return null;
93
- return runAction("/api/run/clear-lock", null, "Cleared stale lock");
94
- }
@@ -1,27 +0,0 @@
1
- export function renderTodoPreview(text) {
2
- const list = document.getElementById("todo-preview-list");
3
- if (!list)
4
- return;
5
- list.innerHTML = "";
6
- const lines = (text || "").split("\n").map((l) => l.trim());
7
- const todos = lines.filter((l) => l.startsWith("- ["));
8
- if (todos.length === 0) {
9
- const li = document.createElement("li");
10
- li.textContent = "No TODO items found.";
11
- list.appendChild(li);
12
- return;
13
- }
14
- todos.forEach((line) => {
15
- const li = document.createElement("li");
16
- const box = document.createElement("div");
17
- box.className = "box";
18
- const done = line.toLowerCase().startsWith("- [x]");
19
- if (done)
20
- box.classList.add("done");
21
- const textSpan = document.createElement("span");
22
- textSpan.textContent = line.substring(5).trim();
23
- li.appendChild(box);
24
- li.appendChild(textSpan);
25
- list.appendChild(li);
26
- });
27
- }
@@ -1,16 +0,0 @@
1
- import hashlib
2
- from pathlib import Path
3
-
4
- from .core.utils import canonicalize_path
5
-
6
- WORKSPACE_ID_HEX_LEN = 12
7
-
8
-
9
- def canonical_workspace_root(path: Path) -> Path:
10
- return canonicalize_path(path)
11
-
12
-
13
- def workspace_id_for_path(path: Path) -> str:
14
- canonical = canonical_workspace_root(path)
15
- digest = hashlib.sha256(str(canonical).encode("utf-8")).hexdigest()
16
- return digest[:WORKSPACE_ID_HEX_LEN]
@@ -1,222 +0,0 @@
1
- codex_autorunner/__init__.py,sha256=ckmosn6wHfU7M5zBHvBr9Vq2TH-ZYz3qrMRIyHKzcrU,111
2
- codex_autorunner/bootstrap.py,sha256=YMmbttb_sQI2eFOlcK5rNMUuGBKzw-00A7oKB4XRSgs,5477
3
- codex_autorunner/cli.py,sha256=diEYM7hbsOS1ZLBVD7P6i1AEU6IimkZeOqWF2Urc2lY,42321
4
- codex_autorunner/codex_cli.py,sha256=Uzt5I9zlsUJclQNYeMmt4q9AEGjtihln8FjljQ8-yg0,2513
5
- codex_autorunner/codex_runner.py,sha256=P0yHlZZjVYWLVH1O4b5VUwQs_mkJspPPG3-nULWt4Cw,362
6
- codex_autorunner/discovery.py,sha256=waPlKWNRgKYKAawVxTKhqE5kL7OaXpGxB_B_0VWwN20,6828
7
- codex_autorunner/housekeeping.py,sha256=1Jk3-vIDfYfXf1N63Dqz7C-i0ACGYTzRcgYHcYDjsZo,12826
8
- codex_autorunner/manifest.py,sha256=_BahkPLNNFvRqKsfBFKYT-2sOsb89Bgzo4df9aatPAM,6457
9
- codex_autorunner/server.py,sha256=B09qqzqC8kYbCGa9iGCEySS_e_nddYyeY3sMi33KOWk,376
10
- codex_autorunner/spec_ingest.py,sha256=gqCHmuVrC-iIABxxcri9cxrOi2Qy-N_idItxbTbluxw,30595
11
- codex_autorunner/workspace.py,sha256=PBm2IeR5XSG7-1UOk08TTHzKq76qFEptoROnhOM9Y_0,405
12
- codex_autorunner/agents/__init__.py,sha256=6xEQXHkZ40kHadHB9Is5fK9dGGVsgryasoRllIN8_ho,418
13
- codex_autorunner/agents/base.py,sha256=UiYYYvSYrEjTHy0tjs8O8hcTwrgMtmuyrhoVW9EkiYY,1643
14
- codex_autorunner/agents/factory.py,sha256=fo5dZCoNGzEZ1sgGS8VYc-emftVngo26Xfm567pCra0,2058
15
- codex_autorunner/agents/orchestrator.py,sha256=l5ncMbrz--Z2hqdPofcG57kDWbWlNT6vXqBEmU_0eg8,10953
16
- codex_autorunner/agents/registry.py,sha256=Q427ZkW1rnT__7nYjMS3SNShXxwcKZIUaJhc9BKcraQ,3446
17
- codex_autorunner/agents/types.py,sha256=3dzkr0Rvn2EgSiJ1k65f6MF0ZEXifGK7GhUF4Nr2GBs,727
18
- codex_autorunner/agents/codex/__init__.py,sha256=GQ9KHMVT2ggOe1jT1kHEPfJLRDzfH0doGJCNwO4a2o0,92
19
- codex_autorunner/agents/codex/harness.py,sha256=ly-KtEdd1SGJzu9bqY4BW9yCJRoGCqaX2vIfcu8n4vM,8426
20
- codex_autorunner/agents/execution/policy.py,sha256=dmwpYuAbf_sRo3g4ALkte9GhuZTeCPht5WahcQAepns,8307
21
- codex_autorunner/agents/opencode/__init__.py,sha256=nTTukw5TzOKURCTyF7CJsbx-rh-9sue79XvqsOVTTNc,478
22
- codex_autorunner/agents/opencode/agent_config.py,sha256=VO3qske0X75S8eoK6XR3NUNJq_WzGLJu1KsZdOFF-MY,2922
23
- codex_autorunner/agents/opencode/client.py,sha256=18-jorlF_oACSDxRc1i_MQy6tzx2NqbDDKAVo5waqGY,18220
24
- codex_autorunner/agents/opencode/events.py,sha256=c0OxtbfYtmYRwMyt4UOgRiAmunfT76huXBDQuybB0jg,1828
25
- codex_autorunner/agents/opencode/harness.py,sha256=0tfFWVZH2ES1SMiVVacVk3c1PGnKANvvkfL8tE8uqlA,10596
26
- codex_autorunner/agents/opencode/logging.py,sha256=QQ-rmx6ZqnIyKMAxgvoEB1O2hdfRhDQqWNcVHg8KQ_M,7654
27
- codex_autorunner/agents/opencode/run_prompt.py,sha256=IUiNc4s-aKlKQVGE3zfu5rzCIRbZkJm95Co-xag-KD4,8615
28
- codex_autorunner/agents/opencode/runtime.py,sha256=HzelqT0h4_e1dAEr83m_0CLda_-FHgaySQkkHDamPFE,57968
29
- codex_autorunner/agents/opencode/supervisor.py,sha256=Jg6uj-W7vrCh-RL_WUhVhE9Qem4zrY_8f6pO29tVVGk,18978
30
- codex_autorunner/core/__init__.py,sha256=Y_gMb4qRh0IPcHermkvGuBa0chW31hqCTZ_M_hJ901c,31
31
- codex_autorunner/core/about_car.py,sha256=hW8ulbMBCZQ3LHtMbB00nhdBr0YrS3YXU7fDMDN9GQQ,5352
32
- codex_autorunner/core/app_server_events.py,sha256=1x-ddiRo5kyFRYbFdzOe6vcgx4dCzdh18_SqGQiKIPI,6856
33
- codex_autorunner/core/app_server_logging.py,sha256=TD6qnSLMLRXpaJIiQUaDMwyBzSEiVpoDyWJKPZm2Z4s,7509
34
- codex_autorunner/core/app_server_prompts.py,sha256=EvhntNaTJ8lz_EKylBQEUhfMQbPXInhgdlNvEcfooLM,11638
35
- codex_autorunner/core/app_server_threads.py,sha256=t-INlgXQHOknlngOWGcO625FttkNbN4X0dqkUkH4BEc,6624
36
- codex_autorunner/core/circuit_breaker.py,sha256=DL8lUrZPluzvNHgCMDUJjWuYytgmVzhL30va8M3TPQ4,6205
37
- codex_autorunner/core/codex_runner.py,sha256=iWjDuu3nB8kK_9VGZ08bIkw3hTt-EXQw8SkNXp94FBg,2983
38
- codex_autorunner/core/config.py,sha256=9oGwzpqs8V7TxAZ7hheDXzYOWyCywFBwiftfokpZE_w,90688
39
- codex_autorunner/core/doc_chat.py,sha256=GdEErNM_Ix5oB8924pUTYDq5xJNYJ8TXqWDjnJgeMo4,56141
40
- codex_autorunner/core/docs.py,sha256=g654ogPFnaRYU-HVwkaQvV7c840oSYrAEFPcHaF9Zjg,3492
41
- codex_autorunner/core/engine.py,sha256=lr0H0SLGv3h6UEDXarLXwTxAbGalW4onl_L-Z81207c,101669
42
- codex_autorunner/core/exceptions.py,sha256=O1LmgvG5t70YODubg4t0xQq-JT1gyDJtnfYvNiEYfLE,1555
43
- codex_autorunner/core/git_utils.py,sha256=vLINnfCNYaZyCzJFlkn5wasTZsfAfNOM5momEIcC46M,6633
44
- codex_autorunner/core/hub.py,sha256=tURR50Z1NoOd--z7lk2BGrHNKJWwB88SfCXQMM8SF6Q,33847
45
- codex_autorunner/core/injected_context.py,sha256=HQ1VTO7E0TccBkRMQM3f0ihiGS4FNM-aCW35QX7_CXs,301
46
- codex_autorunner/core/locks.py,sha256=nVbtAPTHVov9Ii_soRN-Q1cYy1nOi9rXqLnk9lsyv0Q,8097
47
- codex_autorunner/core/logging_utils.py,sha256=fQ9rIshtE-S02-xcFJOUOAXFTrFIcv_TkHzBXU4fxHs,5063
48
- codex_autorunner/core/notifications.py,sha256=Bx-2E01vKyhxODwx2dFnmv7ns2NPKG1irdguGYx9AXU,17556
49
- codex_autorunner/core/optional_dependencies.py,sha256=sBuSnQrRhV6_JA2tVLlVnDBsED79kY81cOyWcRiynUM,1271
50
- codex_autorunner/core/patch_utils.py,sha256=H5IPB5X4EJmXw7dNV3hj6m-vV2yXNY4PMuvq12msV7o,7635
51
- codex_autorunner/core/path_utils.py,sha256=MjFTnTC-GuwR4-QS6fBJuvuicSi2E-G3Jt7KWjaFffc,3450
52
- codex_autorunner/core/prompt.py,sha256=t4l3zufoHXXA_HmLU9mOKhyoxI5VPVOsPdS2AbN6Kc0,2741
53
- codex_autorunner/core/prompts.py,sha256=LBab4SjAaAfWmWKSPkSGaCy5dWsnZr36lM3y8uFuGz4,8919
54
- codex_autorunner/core/request_context.py,sha256=FVQtn67zJffRET9TBy48jk23ZonAjONOeFwZiizyfxc,997
55
- codex_autorunner/core/retry.py,sha256=n31DM84oIW0PwWPipNd5TH2H6H5ej8I2JxikfX-FIQs,1725
56
- codex_autorunner/core/review.py,sha256=au5Vr4hTtjHGRbXQxBbLCjQ52vqz-f9zjOIGpUKAeik,30878
57
- codex_autorunner/core/review_context.py,sha256=BJOO--fFD0L7HmGKGALXACVfTvmCiMeBesvDsi_jmSc,5090
58
- codex_autorunner/core/run_index.py,sha256=cdsBOTY78LaqxAhzU7d3lFi4YFORcY4TZOJcEwTErCo,7540
59
- codex_autorunner/core/runner_controller.py,sha256=0QfocgTIZUQ4HbUhJLtVZRyT0vxyAzdHkttG0C94w2k,7404
60
- codex_autorunner/core/runner_process.py,sha256=5Vg1NKkpk-Hev0DaEJm3MmRz3xrG2TnGa5JiK-einRY,1257
61
- codex_autorunner/core/snapshot.py,sha256=utmLMcZWheYHx6uck6sXBOrRrl8-trNeygKY8VPQvTE,18352
62
- codex_autorunner/core/sqlite_utils.py,sha256=dA_2UGXoH-TNKPeJsqrIgbRtmTdETxr6FWPM5BZm9pU,754
63
- codex_autorunner/core/state.py,sha256=9kxgS_hmkc2WrNEY6cdlECzxxoASvN_lh_t9wwB4YUk,17905
64
- codex_autorunner/core/text_delta_coalescer.py,sha256=Q1VVvWWJc7zg3RkPTIklA6ErpI74L_vQBfd5oPLkk9A,1063
65
- codex_autorunner/core/update.py,sha256=C3wpTnLBvkNBmV9O-Zfc8Msb14xmDaPLC8sHUsj-3Uo,17476
66
- codex_autorunner/core/update_runner.py,sha256=brJmOUHLPmrL-GLag8gc6tT-ucZ7TC8KY6z8q_3I7ig,1378
67
- codex_autorunner/core/usage.py,sha256=3yS50fQz_v9zWD2Gr0NudAwZSEwXqO554jKsP1ZczYE,68698
68
- codex_autorunner/core/utils.py,sha256=yStTGEHv_uDldxF9EGdcX5eu68FJtjtCKMsMWfe869E,7794
69
- codex_autorunner/integrations/__init__.py,sha256=_6PZ2Hq6DzApW4d0rrmJY05vftGmHXpHe9SOxq0J2hM,28
70
- codex_autorunner/integrations/app_server/__init__.py,sha256=Ro2hRhH9wzxQJThz1Kyo-SADxCFtyF2ZfhHNureykGk,201
71
- codex_autorunner/integrations/app_server/client.py,sha256=iAsoybT0Df4fX1Ep9Ke9teHZojp02e45Nk6Xg1CC7oI,54309
72
- codex_autorunner/integrations/app_server/env.py,sha256=nQ44YN_Q1dyAZx0DJAimXbRx9SvlLXP5NZWV53cmj9s,3372
73
- codex_autorunner/integrations/app_server/supervisor.py,sha256=tBgcigxsjK6f9SJla_AlgJti1gA00NnW9KQj6-QVulk,7858
74
- codex_autorunner/integrations/github/__init__.py,sha256=mLMQATB-B_LbgebPRCdWqUDS-cMxXfuALGh_RsWbWBk,224
75
- codex_autorunner/integrations/github/chatops.py,sha256=Qk4JjTiHqnZFw3FKuhb5LzR_O-1UOaJfZm6pwG2j0oQ,9338
76
- codex_autorunner/integrations/github/pr_flow.py,sha256=U0WJsDyvZL_nuMKEKQaCspbyjpVMzJiDM43eTAunybs,50317
77
- codex_autorunner/integrations/github/service.py,sha256=484jkhg_lnDap0jMatspuMNn04cg7uVqAG2GctF17Co,39015
78
- codex_autorunner/integrations/telegram/__init__.py,sha256=oAEE1Yb-7Ybgb79NLWqNErkSXOGBJDgcvlI7gfHlpDA,36
79
- codex_autorunner/integrations/telegram/adapter.py,sha256=sz_aoCUd8gpCu6cyCz7oUChlSxRKJlY0k0KLGOqjB_E,56668
80
- codex_autorunner/integrations/telegram/commands_registry.py,sha256=C5T6KeTUq4DmhmSe9FwNRg_kNJWKcYB4hxthVu7MbAQ,3153
81
- codex_autorunner/integrations/telegram/config.py,sha256=f64XTqVbuJFcJeNPGWWQbX3_K4Q25qdl8Euyej8pKVs,23246
82
- codex_autorunner/integrations/telegram/constants.py,sha256=RHV-MDkCuj3Sx8Bdbssbjbs1y1RBc_xAnKM4dQzB8Pc,6486
83
- codex_autorunner/integrations/telegram/dispatch.py,sha256=0xqY2s90LUKXLMcJfhta0b4267-kUsFnNxSIxRrJrSs,6303
84
- codex_autorunner/integrations/telegram/helpers.py,sha256=FZUjWgenoOufscvW2k_zS5s6ajzWr6cmojJP332dWCY,70574
85
- codex_autorunner/integrations/telegram/notifications.py,sha256=XvUdRUq5gfD9JA30PclVLrDL5Azw0Sin8Oj0i1fcVx4,23430
86
- codex_autorunner/integrations/telegram/outbox.py,sha256=5Js2Wa3m4n6gnF1xsGz3RNAZ7MmzEvqNmxO9gg9gumw,6866
87
- codex_autorunner/integrations/telegram/overflow.py,sha256=LUbPTwA2BxFV1w0sF1XAhIu_ft_eieSVYmjuftiVyO0,5384
88
- codex_autorunner/integrations/telegram/progress_stream.py,sha256=nr7c7MN9L1iBhfuli5PiiPDAtoXNxdsd5KQcANggMoA,7746
89
- codex_autorunner/integrations/telegram/rendering.py,sha256=uBhymMUQuiKJJZ0ZxSl01sC4dYFVJqoIMMMFlm1XGZc,3531
90
- codex_autorunner/integrations/telegram/retry.py,sha256=GIdMSSCVa2Sjd6-t2FC1O6AwPPSEM342rjjuI1Y7Tpk,1349
91
- codex_autorunner/integrations/telegram/runtime.py,sha256=V9P93PDl_-DrunkYYheRmvCjqNaaTwhw0D127vb0XFw,10375
92
- codex_autorunner/integrations/telegram/service.py,sha256=M1B6c3K6dfmJ5hEzIj_5buY1_SK5MPDjZBqxGqkDmrk,51041
93
- codex_autorunner/integrations/telegram/state.py,sha256=LnaD-ctOHrahtuT36bjptOKOuzIwavTx4cF_3bTfRjI,79501
94
- codex_autorunner/integrations/telegram/transport.py,sha256=-wZvnQREY-WKsTfWYt-Y1rj6FbgaB_woOKSRHws3mvA,13413
95
- codex_autorunner/integrations/telegram/types.py,sha256=SjeVaus_YtWz-06GqkSWl99cHTdu0YKd5egdlYY3tMI,1707
96
- codex_autorunner/integrations/telegram/voice.py,sha256=I3XD-Uc-egA2UVfby210-kCLhL_pBfekyaaGLf359Qs,14784
97
- codex_autorunner/integrations/telegram/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
- codex_autorunner/integrations/telegram/handlers/approvals.py,sha256=G8-FwRSyyBs9emb9eJjf4a0kD2rdqnFf25SldfHCKZ4,9365
99
- codex_autorunner/integrations/telegram/handlers/callbacks.py,sha256=bN6XudQN0ho3i7150_EWqFdV48doqBJ6vVV1sS848p0,3643
100
- codex_autorunner/integrations/telegram/handlers/commands_runtime.py,sha256=PK3xVkFkpOA9n-f5YD3jLA0efhApJPY7umFhYvDbUEQ,114477
101
- codex_autorunner/integrations/telegram/handlers/commands_spec.py,sha256=aEIvUsoM6YZq03l633uuHDrbLIGE6T4c-9qBrmT09fA,4663
102
- codex_autorunner/integrations/telegram/handlers/messages.py,sha256=Lg1jfdPQ6VKQ7Hf1r047vqWMHkgd1f6aOo_ftpPg0-w,27295
103
- codex_autorunner/integrations/telegram/handlers/questions.py,sha256=GoOZzyYPqOt9jW4T27EzjNUOQrMgf3i3F6fJ6tWILzI,15570
104
- codex_autorunner/integrations/telegram/handlers/selections.py,sha256=V0gRMc6n8aVtAhIW9QGIc3abqFN1d9UKdPli1jj3cdM,22685
105
- codex_autorunner/integrations/telegram/handlers/utils.py,sha256=T2y-2p1SNduypiNz9uq4zqRIFq47z9Lop6_s3nhUzN8,5317
106
- codex_autorunner/integrations/telegram/handlers/commands/__init__.py,sha256=MwyMNQQ3zo5Nhk87aSigHHadvPqtn2VkEbFmQp89p1o,760
107
- codex_autorunner/integrations/telegram/handlers/commands/approvals.py,sha256=uQsGQtSPjXZ5FyNldvVsZDImEI-G-YOMUwhlnth2wlc,6632
108
- codex_autorunner/integrations/telegram/handlers/commands/execution.py,sha256=oaqF7I_1iMjPjnTBWqj_ymdGCvles5P6xgFe-W3IZmI,104464
109
- codex_autorunner/integrations/telegram/handlers/commands/files.py,sha256=EZ6CSFLKsNSV6yrmD7MwPTTZJWg4OMdO6nSu94Ijk4Y,50741
110
- codex_autorunner/integrations/telegram/handlers/commands/formatting.py,sha256=xiLer6Z-OJ4EUCFdWpe9fbnJjZlejbCr8uebzn8Uhzw,3147
111
- codex_autorunner/integrations/telegram/handlers/commands/github.py,sha256=goMb8TjH4UDGQ2voIIXV-FlfgwEFLh1h1tlMn8Atc8c,89127
112
- codex_autorunner/integrations/telegram/handlers/commands/shared.py,sha256=Lam8f76yQGkTBsr0QpawOBU_eIjch8C4NzW6ifSd0sQ,6581
113
- codex_autorunner/integrations/telegram/handlers/commands/voice.py,sha256=y06N3ju4RjI1Y4r69Os-2BcR6erHjXyGOkoiLWepS0k,3955
114
- codex_autorunner/integrations/telegram/handlers/commands/workspace.py,sha256=XEtXXq8OsN-wO4UgYhMwQomZT3BHWc2zsoyBS2IMB0E,81391
115
- codex_autorunner/routes/__init__.py,sha256=qaGY5Imd62FxMUYJLqLai86Qr5zBv2Rlxy-kkCHpfkU,2270
116
- codex_autorunner/routes/agents.py,sha256=1di_lDZyjsQ4y_zNL5Nms4VDbSbG7zrn_K1BOVfkvcU,5533
117
- codex_autorunner/routes/app_server.py,sha256=OUYVzKTObaWII4I9xXhwYYLdEJ_oiYJJoHoocs7LyVc,5349
118
- codex_autorunner/routes/base.py,sha256=1ay8z9MPTn1sEdMgp6YMP5CpxA7POWY_Vs9XHYXW2yA,27499
119
- codex_autorunner/routes/docs.py,sha256=F8GVhm12xB8VE1oHwrQUTe6j422RuqQ01G3A7GSwhg4,14252
120
- codex_autorunner/routes/github.py,sha256=cjwTdVDYWg8AwuUb-CGImTkiDhDqOrehFITY05iaQ7E,12558
121
- codex_autorunner/routes/repos.py,sha256=qE_ObzKYiJap5MJyFHSoTjYzB9DnWYPWB3QiWrpDwWo,7999
122
- codex_autorunner/routes/review.py,sha256=K0g1YzEvi845QSCY8VxejZJ9mpmfOPTJ6LVWe_hBHBA,5519
123
- codex_autorunner/routes/runs.py,sha256=JrTuQnQiBaJDLoQIasXe9JBDcUEGqZ1QvrUw5kWbHt8,10601
124
- codex_autorunner/routes/sessions.py,sha256=C1FzYVC3d6U5w5vpHksjwi-O5Rk-y_hYlX5dAMM7MGw,6537
125
- codex_autorunner/routes/settings.py,sha256=f-le6apg8dtvebMs0EGgUXLWjN-gkxenr5Ahbrmoj2k,7349
126
- codex_autorunner/routes/shared.py,sha256=_UEIQrfRSpxsVz47R8EzsknNDCg5-XrTbZUz_Ah7xg0,9155
127
- codex_autorunner/routes/system.py,sha256=VARxzSFO-yn8gslqZGR-7pH4nTG6XF_yFJly9mGscmA,7316
128
- codex_autorunner/routes/terminal_images.py,sha256=0wNAIHRcN_iIzeXuVN6nqe9E7OYEoQ6C84Tcx93r1XI,3299
129
- codex_autorunner/routes/voice.py,sha256=s_eDNBc3AxjrC6cZ7IETtIb5ybkoQLCK4wjhJwDN_lc,4856
130
- codex_autorunner/static/agentControls.js,sha256=DBAmOhIhG5qBkPK6q4uNM1RP29exPY1OPGX0ksft_CU,11699
131
- codex_autorunner/static/app.js,sha256=jI2Y6u-gC3JAOstFpmo7sruculVvjP2pLyn5bckLhps,3479
132
- codex_autorunner/static/autoRefresh.js,sha256=ZrWA1WI5Tb9OQa3SO8Dij2yskrB6HLSAKh28LwYygu8,5673
133
- codex_autorunner/static/bootstrap.js,sha256=UyQ88XpNaPRzaa711Wf1NlK5UkIkV8p65CNL2E0uRKE,4771
134
- codex_autorunner/static/bus.js,sha256=3f-q0N-BP4wrsKxO-xNAeyNtq9W2Hw7MqyBApEj0rnk,568
135
- codex_autorunner/static/cache.js,sha256=kDXoFRydjyYkbin3i95fH_s0k7rgLYqciSj_4DuauNU,973
136
- codex_autorunner/static/constants.js,sha256=PZmF1Pw3KmkS-bTMrnf9W0uDuOFyVcL_YmzCwSmhGxU,1528
137
- codex_autorunner/static/dashboard.js,sha256=0z8MC-PGfmfb_ddoG46rZe4eorwVlc3rV82k7y3P0hg,29776
138
- codex_autorunner/static/docChatActions.js,sha256=_l3KK-bdTqyAUcxxIswbRB99oz2Ac7k-GxOb-Dfbvqk,9458
139
- codex_autorunner/static/docChatEvents.js,sha256=jUowaw_1qMJ9WfIrw6itaNWHI1yOhilFy7mQVA1mfsA,10797
140
- codex_autorunner/static/docChatRender.js,sha256=1bWUp0QtTuyNBW-EiYRQXZSTm0y9hL-qMRwJJ8CApOc,8371
141
- codex_autorunner/static/docChatStream.js,sha256=vBi_L2tuob38AtkrtSjwuN5QznhllwHgWvKgUf7mf-Y,13173
142
- codex_autorunner/static/docs.js,sha256=i7UsRbddYURPLu4FDgj0Pfb8jYYr88WhlmUPU43ExQ8,664
143
- codex_autorunner/static/docsClipboard.js,sha256=XQPX6Vx40PsZAxzyRknuxC15ibGhDO0x6mL5k1dghJc,2069
144
- codex_autorunner/static/docsCrud.js,sha256=aCCiFezi_fJy0EuLUI90mX6_Nw4HxcuCVKfq-v-q4Rw,8771
145
- codex_autorunner/static/docsDocUpdates.js,sha256=8tf1JXQIUxMHn94rpgSqGulIAaF9e0jP-GL0_pOWXQM,2717
146
- codex_autorunner/static/docsDrafts.js,sha256=tkl0BiwX2oQc1QEHO2zQnSvjRcG5A8bqDyevs5ZHNG4,634
147
- codex_autorunner/static/docsElements.js,sha256=ZHuwnFWpzR-uDL_52OcXSZeEYvDHT2jrwczKrjHkCx8,3691
148
- codex_autorunner/static/docsInit.js,sha256=lX8gD0Ptk0mZqdx0t-dd_b_EqOHZD3PrZiDnTmzwOmo,11376
149
- codex_autorunner/static/docsParse.js,sha256=JqzIj9n6haHrGRq8MQhXpNHvOq1X3hruDbfUgojV7iY,5532
150
- codex_autorunner/static/docsSnapshot.js,sha256=WPnAKZ8IJLDTL6qdoijqKz3pAu4jmlX0BFVPLyzcRO8,2867
151
- codex_autorunner/static/docsSpecIngest.js,sha256=fELyNYD441WYqOlVAACNorPTiTAngLHs7QsdysCAUYU,9769
152
- codex_autorunner/static/docsState.js,sha256=vaX3n8I2WtNMgNJrBEAzEb_z1DWeVjyFarWRTBte7So,3848
153
- codex_autorunner/static/docsThreadRegistry.js,sha256=yDwLESOZ-_D5MYn7KEuDbnmGEoU2rRqOYj2gqOJ_TAI,1582
154
- codex_autorunner/static/docsUi.js,sha256=tXw32uxF7k04Udpmu4CeDTIibuTW4HNmTm1w0LxOuCo,6464
155
- codex_autorunner/static/docsVoice.js,sha256=FieEbLo-dRAy_bYWKXHPwEVJnqRGBZ1H5h6ullcN6K4,1982
156
- codex_autorunner/static/env.js,sha256=U9Ws86-OkZSQnX_BZvPUZjH_2BYYb-lAUk_91UcoV50,1751
157
- codex_autorunner/static/github.js,sha256=RIHpFq_ncIzzSCJIdU8P-cfyLyYdXJ4b1iNcm8xJ4Wo,17057
158
- codex_autorunner/static/hub.js,sha256=SpBNeLGUvkaa0Gp4x71EQw3VoeZm1ek8vYr7r07okZI,51977
159
- codex_autorunner/static/index.html,sha256=777mfuky5KCAUA5UH6PSvLc0LbiFWAEJ6v-fDqKk-eo,47572
160
- codex_autorunner/static/liveUpdates.js,sha256=-qoy8EAWLpoqDWf36lPT54bOk1676FuNFGvKWhupt74,1888
161
- codex_autorunner/static/loader.js,sha256=OtZmd2f8QcbfHaxJ4km0vwWMdz0_Wf3LaNpEtqROvsI,1003
162
- codex_autorunner/static/logs.js,sha256=tLbX-s_SANcWWGvPNmp3cI7r-W0A61K6Uklyy8zweHA,25077
163
- codex_autorunner/static/mobileCompact.js,sha256=vmms8vThV8i6qciea2NcBkh9vetSDQiHuN9ei7up3cc,9375
164
- codex_autorunner/static/review.js,sha256=BoIAE77yXOTSMcSi0lZ3tzzChQVuSD6PJ8h3kHhucFI,5147
165
- codex_autorunner/static/runs.js,sha256=q19kr37afHyI8mycCu3NldJ6hrr3LlhSW-iByatguuE,14758
166
- codex_autorunner/static/settings.js,sha256=iHcfBBKxIiD68BePMftKHpG17ryN8xIZ2WExs1Zp-P4,12331
167
- codex_autorunner/static/snapshot.js,sha256=v7RuWTcfiY2uhMYPd3a_ijqKRTv7e5d_WVHcVMrt548,3511
168
- codex_autorunner/static/state.js,sha256=-MvVoPI9P8C_EPnKkmA3UbtYOumgaswhsFvPkk4mO8M,3284
169
- codex_autorunner/static/styles.css,sha256=7jvCKsyfBtho1Jouh9p_Kz5HSAUa135bmk8SdtmW9DQ,118589
170
- codex_autorunner/static/tabs.js,sha256=rc0Fh7w6YMPr-3didXemzu95kLu82lOO-DUm3_mSVIc,1454
171
- codex_autorunner/static/terminal.js,sha256=U3PPFyrkM5XxdDpNt_A_ShZlTAcK9lrNtKI78k7fk6A,310
172
- codex_autorunner/static/terminalManager.js,sha256=IeS007SjDG7QI1ifPlnXDb0pJ8L8zjkgBtsdYrHe2i0,140594
173
- codex_autorunner/static/todoPreview.js,sha256=fScVElkvFsLJPWqA0rQjNOmoVlUHAPHiVMrhO1pLksg,962
174
- codex_autorunner/static/utils.js,sha256=sL3e2g0TGylXmd148FDy-Ll_mzpCnxGnEGjX6OAPF3M,21099
175
- codex_autorunner/static/voice.js,sha256=GYkTjSpvvhI_9JXXttFn4tDRzsX4th6p8TUV6PWJRgw,20147
176
- codex_autorunner/static/vendor/LICENSE.xterm,sha256=R1kKvILKKMOnUg07hzusejoAsCy8Mik-HxQdzNJpgIc,1186
177
- codex_autorunner/static/vendor/xterm-addon-fit.js,sha256=EPMZTF8XwXhvt9XbhlweyFObZzajGAY_04var3xGhI8,1503
178
- codex_autorunner/static/vendor/xterm.css,sha256=gy8_LGA7Q61DUf8ElwFQzHqHMBQnbbEmpgZcbdgeSHI,5383
179
- codex_autorunner/static/vendor/xterm.js,sha256=8K6g919IVZATrmZDwked1zfSbaQtVSTm0rcJFa5lI8c,283404
180
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-400-cyrillic-ext.woff2,sha256=k0PeLKXZVJ95LnliN1r477DzIMdkO_02yIS1ow5cOW8,1664
181
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-400-cyrillic.woff2,sha256=SZWppDrGWewy_Ni0Y3Vc1qB7Mabms4lKahU7Zhz0kOI,8892
182
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-400-greek.woff2,sha256=ScPabJorJ5sPH4YPXPsfXcONiKXHvpybGDe7xOPbYRE,6800
183
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-400-latin-ext.woff2,sha256=nDjLLQ0tk8HubiH6eNt28T6n4V4VzGQhTHyom2qqNcQ,11596
184
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-400-latin.woff2,sha256=LDK5s-41jBGeIQ9vUZX5vTSJTXinhf8uldYOcY5ACvQ,31340
185
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-400-vietnamese.woff2,sha256=1E6xk2BDpWA46wLdcLJD83m-9leD-U7BLyd1UHIEEfE,5872
186
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-500-cyrillic-ext.woff2,sha256=k0PeLKXZVJ95LnliN1r477DzIMdkO_02yIS1ow5cOW8,1664
187
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-500-cyrillic.woff2,sha256=SZWppDrGWewy_Ni0Y3Vc1qB7Mabms4lKahU7Zhz0kOI,8892
188
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-500-greek.woff2,sha256=ScPabJorJ5sPH4YPXPsfXcONiKXHvpybGDe7xOPbYRE,6800
189
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-500-latin-ext.woff2,sha256=nDjLLQ0tk8HubiH6eNt28T6n4V4VzGQhTHyom2qqNcQ,11596
190
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-500-latin.woff2,sha256=LDK5s-41jBGeIQ9vUZX5vTSJTXinhf8uldYOcY5ACvQ,31340
191
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-500-vietnamese.woff2,sha256=1E6xk2BDpWA46wLdcLJD83m-9leD-U7BLyd1UHIEEfE,5872
192
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-cyrillic-ext.woff2,sha256=k0PeLKXZVJ95LnliN1r477DzIMdkO_02yIS1ow5cOW8,1664
193
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-cyrillic.woff2,sha256=SZWppDrGWewy_Ni0Y3Vc1qB7Mabms4lKahU7Zhz0kOI,8892
194
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-greek.woff2,sha256=ScPabJorJ5sPH4YPXPsfXcONiKXHvpybGDe7xOPbYRE,6800
195
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-latin-ext.woff2,sha256=nDjLLQ0tk8HubiH6eNt28T6n4V4VzGQhTHyom2qqNcQ,11596
196
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-latin.woff2,sha256=LDK5s-41jBGeIQ9vUZX5vTSJTXinhf8uldYOcY5ACvQ,31340
197
- codex_autorunner/static/vendor/fonts/jetbrains-mono/JetBrainsMono-600-vietnamese.woff2,sha256=1E6xk2BDpWA46wLdcLJD83m-9leD-U7BLyd1UHIEEfE,5872
198
- codex_autorunner/static/vendor/fonts/jetbrains-mono/OFL.txt,sha256=p2q_ACxJCX0UboZ0CjEFpdAEULFZLoIKEQmoxWgM1pc,4399
199
- codex_autorunner/voice/__init__.py,sha256=Z2ziy5TP4NCgNi4xld1FfRIbSJL9hpgkggYhbEtGOgQ,991
200
- codex_autorunner/voice/capture.py,sha256=UzvQvu3KaKpL4RoyXT-mq24uohAXvHIZ8vi6wObEJgQ,11435
201
- codex_autorunner/voice/config.py,sha256=BZAq90KS6aLLFto653a-PYj8Aq6b5Ty_UBBFhcrzvw0,6285
202
- codex_autorunner/voice/provider.py,sha256=zvNVuvsrZfM4bj3N2xzEgTtQ78YGWcdjUW9fJK6Ziog,1750
203
- codex_autorunner/voice/resolver.py,sha256=EC1AtmIrwRQBQE_hwreLgKhUtvzZ9Tg5vu8_MNIXES4,1130
204
- codex_autorunner/voice/service.py,sha256=_kVyuB_3928BbGHrAqF28N_nCfKPLB6K9ilG79wyzl0,9052
205
- codex_autorunner/voice/providers/__init__.py,sha256=L37XCpAHluK83m62y0_I0KGkiCdu1Keml02gS_g2Brc,200
206
- codex_autorunner/voice/providers/openai_whisper.py,sha256=HCK_GMmYFoZ4EcneGsjr4_P9JzblRO8AOguVD5pOcLk,11973
207
- codex_autorunner/web/__init__.py,sha256=fDDDTYL26__wwaWd7xtI6axymkOgYntcrlHeHptDb8I,29
208
- codex_autorunner/web/app.py,sha256=_4e-bBlW_ml0TmlZ2Js5LtBhvsIi-64KdEUJKi6uY2I,68619
209
- codex_autorunner/web/hub_jobs.py,sha256=rx4r2qFOyEwzctnabRtU1hrOwp8ETPNjarryNTE1aFg,6057
210
- codex_autorunner/web/middleware.py,sha256=lyqluvLagVsBQduhDbNmDSajFx7Hs3MwRAFXB8aduck,21461
211
- codex_autorunner/web/pty_session.py,sha256=K1_hJFYy-xh90o1hDezmsC3euP7ifsgHMzAg1E9HZA8,12791
212
- codex_autorunner/web/runner_manager.py,sha256=QCaypoNH0445bcNggpdNP-RrM0KEyxpK-LSl3AdyS64,646
213
- codex_autorunner/web/schemas.py,sha256=kPE00cFzT5unPpWHLW_p6RqBCMn5ERZNibBGKW3wwQ0,9383
214
- codex_autorunner/web/static_assets.py,sha256=ozA-Z-upneJrxXLZXyDE_mt30wJzF3PuTPTZtQaHlGE,15150
215
- codex_autorunner/web/static_refresh.py,sha256=PdJHcTJGP0cHr1FffhbIbyL6GQe_cv3jzSy4gHuDQOw,3144
216
- codex_autorunner/web/terminal_sessions.py,sha256=JHS_YsWpdQSXKIrbbkPOgugj2EdpG4RP2jl2nLizTZc,2650
217
- codex_autorunner-0.1.2.dist-info/licenses/LICENSE,sha256=gfYghezUeimFKy0hTmkOiAAwBY_QdRSXDTypbMtZU0k,1068
218
- codex_autorunner-0.1.2.dist-info/METADATA,sha256=s0YpZVM4WETn4hsslUkbL04AgBew_jOu5-t49SCh6Bg,15225
219
- codex_autorunner-0.1.2.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
220
- codex_autorunner-0.1.2.dist-info/entry_points.txt,sha256=iPTzENG1MGBhxWF4x8W7VWk3iq4XurmGXMnIch7AVTs,93
221
- codex_autorunner-0.1.2.dist-info/top_level.txt,sha256=fc2h9rEENr-ZdyLemPJbMcWmsWlz4JuyD1UOkPLLVSQ,17
222
- codex_autorunner-0.1.2.dist-info/RECORD,,