oara-prometheus 0.9.0__tar.gz

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 (897) hide show
  1. oara_prometheus-0.9.0/.gitignore +80 -0
  2. oara_prometheus-0.9.0/LICENSE +21 -0
  3. oara_prometheus-0.9.0/NOTICE +15 -0
  4. oara_prometheus-0.9.0/PKG-INFO +727 -0
  5. oara_prometheus-0.9.0/README.md +658 -0
  6. oara_prometheus-0.9.0/config/model_registry.yaml +280 -0
  7. oara_prometheus-0.9.0/config/obsidian/graph.json +30 -0
  8. oara_prometheus-0.9.0/config/prometheus.yaml.default +1345 -0
  9. oara_prometheus-0.9.0/packaging/prometheus.service +30 -0
  10. oara_prometheus-0.9.0/pyproject.toml +247 -0
  11. oara_prometheus-0.9.0/src/prometheus/__init__.py +4 -0
  12. oara_prometheus-0.9.0/src/prometheus/__main__.py +1829 -0
  13. oara_prometheus-0.9.0/src/prometheus/adapter/__init__.py +300 -0
  14. oara_prometheus-0.9.0/src/prometheus/adapter/enforcer.py +342 -0
  15. oara_prometheus-0.9.0/src/prometheus/adapter/formatter.py +349 -0
  16. oara_prometheus-0.9.0/src/prometheus/adapter/markup_guard.py +115 -0
  17. oara_prometheus-0.9.0/src/prometheus/adapter/retry.py +139 -0
  18. oara_prometheus-0.9.0/src/prometheus/adapter/unwrap.py +110 -0
  19. oara_prometheus-0.9.0/src/prometheus/adapter/validator.py +391 -0
  20. oara_prometheus-0.9.0/src/prometheus/api/__init__.py +0 -0
  21. oara_prometheus-0.9.0/src/prometheus/api/tool_choice.py +69 -0
  22. oara_prometheus-0.9.0/src/prometheus/api/turn_errors.py +323 -0
  23. oara_prometheus-0.9.0/src/prometheus/benchmarks/__init__.py +19 -0
  24. oara_prometheus-0.9.0/src/prometheus/benchmarks/__main__.py +18 -0
  25. oara_prometheus-0.9.0/src/prometheus/benchmarks/runner.py +344 -0
  26. oara_prometheus-0.9.0/src/prometheus/benchmarks/suite.py +442 -0
  27. oara_prometheus-0.9.0/src/prometheus/checkpoints/__init__.py +7 -0
  28. oara_prometheus-0.9.0/src/prometheus/checkpoints/store.py +368 -0
  29. oara_prometheus-0.9.0/src/prometheus/cli/__init__.py +0 -0
  30. oara_prometheus-0.9.0/src/prometheus/cli/bakeoff.py +181 -0
  31. oara_prometheus-0.9.0/src/prometheus/cli/doctor.py +1069 -0
  32. oara_prometheus-0.9.0/src/prometheus/cli/generate_identity.py +296 -0
  33. oara_prometheus-0.9.0/src/prometheus/cli/ingest_video.py +97 -0
  34. oara_prometheus-0.9.0/src/prometheus/cli/init.py +884 -0
  35. oara_prometheus-0.9.0/src/prometheus/cli/migrate.py +708 -0
  36. oara_prometheus-0.9.0/src/prometheus/cli/retention.py +57 -0
  37. oara_prometheus-0.9.0/src/prometheus/cli/service.py +184 -0
  38. oara_prometheus-0.9.0/src/prometheus/cli/setup.py +126 -0
  39. oara_prometheus-0.9.0/src/prometheus/cli/token.py +77 -0
  40. oara_prometheus-0.9.0/src/prometheus/cli/voice.py +353 -0
  41. oara_prometheus-0.9.0/src/prometheus/coding/__init__.py +43 -0
  42. oara_prometheus-0.9.0/src/prometheus/coding/control.py +162 -0
  43. oara_prometheus-0.9.0/src/prometheus/coding/livestream.py +380 -0
  44. oara_prometheus-0.9.0/src/prometheus/coding/managed.py +116 -0
  45. oara_prometheus-0.9.0/src/prometheus/coding/policy.py +180 -0
  46. oara_prometheus-0.9.0/src/prometheus/coding/sandbox.py +1215 -0
  47. oara_prometheus-0.9.0/src/prometheus/coding/session.py +553 -0
  48. oara_prometheus-0.9.0/src/prometheus/coding/tools.py +490 -0
  49. oara_prometheus-0.9.0/src/prometheus/computer/__init__.py +28 -0
  50. oara_prometheus-0.9.0/src/prometheus/computer/actions.py +240 -0
  51. oara_prometheus-0.9.0/src/prometheus/computer/candidates.py +198 -0
  52. oara_prometheus-0.9.0/src/prometheus/computer/chooser.py +124 -0
  53. oara_prometheus-0.9.0/src/prometheus/computer/cua.py +473 -0
  54. oara_prometheus-0.9.0/src/prometheus/computer/driver.py +468 -0
  55. oara_prometheus-0.9.0/src/prometheus/computer/loop.py +282 -0
  56. oara_prometheus-0.9.0/src/prometheus/computer/status.py +207 -0
  57. oara_prometheus-0.9.0/src/prometheus/computer/targets.py +168 -0
  58. oara_prometheus-0.9.0/src/prometheus/computer/tools.py +186 -0
  59. oara_prometheus-0.9.0/src/prometheus/computer/types.py +149 -0
  60. oara_prometheus-0.9.0/src/prometheus/config/__init__.py +1 -0
  61. oara_prometheus-0.9.0/src/prometheus/config/api_token.py +319 -0
  62. oara_prometheus-0.9.0/src/prometheus/config/defaults.py +119 -0
  63. oara_prometheus-0.9.0/src/prometheus/config/device_store.py +306 -0
  64. oara_prometheus-0.9.0/src/prometheus/config/divergence.py +321 -0
  65. oara_prometheus-0.9.0/src/prometheus/config/env_file.py +122 -0
  66. oara_prometheus-0.9.0/src/prometheus/config/env_override.py +190 -0
  67. oara_prometheus-0.9.0/src/prometheus/config/ephemeral.py +153 -0
  68. oara_prometheus-0.9.0/src/prometheus/config/load.py +352 -0
  69. oara_prometheus-0.9.0/src/prometheus/config/node_identity.py +150 -0
  70. oara_prometheus-0.9.0/src/prometheus/config/paths.py +449 -0
  71. oara_prometheus-0.9.0/src/prometheus/config/profiles.py +276 -0
  72. oara_prometheus-0.9.0/src/prometheus/config/shipped_defaults.py +346 -0
  73. oara_prometheus-0.9.0/src/prometheus/config/template.py +84 -0
  74. oara_prometheus-0.9.0/src/prometheus/config/vault_marker.py +294 -0
  75. oara_prometheus-0.9.0/src/prometheus/context/__init__.py +33 -0
  76. oara_prometheus-0.9.0/src/prometheus/context/budget.py +323 -0
  77. oara_prometheus-0.9.0/src/prometheus/context/compactor.py +793 -0
  78. oara_prometheus-0.9.0/src/prometheus/context/compression.py +307 -0
  79. oara_prometheus-0.9.0/src/prometheus/context/dynamic_tools.py +323 -0
  80. oara_prometheus-0.9.0/src/prometheus/context/environment.py +471 -0
  81. oara_prometheus-0.9.0/src/prometheus/context/origin_fetch.py +301 -0
  82. oara_prometheus-0.9.0/src/prometheus/context/prometheusmd.py +207 -0
  83. oara_prometheus-0.9.0/src/prometheus/context/prompt_assembler.py +378 -0
  84. oara_prometheus-0.9.0/src/prometheus/context/system_prompt.py +287 -0
  85. oara_prometheus-0.9.0/src/prometheus/context/token_estimation.py +54 -0
  86. oara_prometheus-0.9.0/src/prometheus/context/truncation.py +166 -0
  87. oara_prometheus-0.9.0/src/prometheus/context/workspace.py +69 -0
  88. oara_prometheus-0.9.0/src/prometheus/coordinator/__init__.py +49 -0
  89. oara_prometheus-0.9.0/src/prometheus/coordinator/agent_definitions.py +83 -0
  90. oara_prometheus-0.9.0/src/prometheus/coordinator/coordinator_mode.py +104 -0
  91. oara_prometheus-0.9.0/src/prometheus/coordinator/divergence.py +832 -0
  92. oara_prometheus-0.9.0/src/prometheus/coordinator/health.py +321 -0
  93. oara_prometheus-0.9.0/src/prometheus/coordinator/subagent.py +167 -0
  94. oara_prometheus-0.9.0/src/prometheus/daemon.py +2839 -0
  95. oara_prometheus-0.9.0/src/prometheus/documents/__init__.py +25 -0
  96. oara_prometheus-0.9.0/src/prometheus/documents/ai.py +112 -0
  97. oara_prometheus-0.9.0/src/prometheus/documents/service.py +333 -0
  98. oara_prometheus-0.9.0/src/prometheus/engine/__init__.py +52 -0
  99. oara_prometheus-0.9.0/src/prometheus/engine/agent_loop.py +4965 -0
  100. oara_prometheus-0.9.0/src/prometheus/engine/cost_tracker.py +29 -0
  101. oara_prometheus-0.9.0/src/prometheus/engine/fallback.py +376 -0
  102. oara_prometheus-0.9.0/src/prometheus/engine/honesty.py +120 -0
  103. oara_prometheus-0.9.0/src/prometheus/engine/loop_watchdog.py +130 -0
  104. oara_prometheus-0.9.0/src/prometheus/engine/messages.py +499 -0
  105. oara_prometheus-0.9.0/src/prometheus/engine/session.py +910 -0
  106. oara_prometheus-0.9.0/src/prometheus/engine/session_titles.py +246 -0
  107. oara_prometheus-0.9.0/src/prometheus/engine/stream_events.py +80 -0
  108. oara_prometheus-0.9.0/src/prometheus/engine/usage.py +49 -0
  109. oara_prometheus-0.9.0/src/prometheus/escalation/__init__.py +19 -0
  110. oara_prometheus-0.9.0/src/prometheus/escalation/detector.py +219 -0
  111. oara_prometheus-0.9.0/src/prometheus/escalation/teacher.py +699 -0
  112. oara_prometheus-0.9.0/src/prometheus/evals/__init__.py +41 -0
  113. oara_prometheus-0.9.0/src/prometheus/evals/classifier.py +234 -0
  114. oara_prometheus-0.9.0/src/prometheus/evals/golden_dataset.py +316 -0
  115. oara_prometheus-0.9.0/src/prometheus/evals/judge.py +415 -0
  116. oara_prometheus-0.9.0/src/prometheus/evals/metrics.py +207 -0
  117. oara_prometheus-0.9.0/src/prometheus/evals/runner.py +451 -0
  118. oara_prometheus-0.9.0/src/prometheus/evals/trends.py +128 -0
  119. oara_prometheus-0.9.0/src/prometheus/gateway/__init__.py +44 -0
  120. oara_prometheus-0.9.0/src/prometheus/gateway/archive_writer.py +70 -0
  121. oara_prometheus-0.9.0/src/prometheus/gateway/commands.py +4259 -0
  122. oara_prometheus-0.9.0/src/prometheus/gateway/config.py +168 -0
  123. oara_prometheus-0.9.0/src/prometheus/gateway/cron_scheduler.py +849 -0
  124. oara_prometheus-0.9.0/src/prometheus/gateway/cron_service.py +191 -0
  125. oara_prometheus-0.9.0/src/prometheus/gateway/discord.py +1768 -0
  126. oara_prometheus-0.9.0/src/prometheus/gateway/guards.py +157 -0
  127. oara_prometheus-0.9.0/src/prometheus/gateway/heartbeat.py +439 -0
  128. oara_prometheus-0.9.0/src/prometheus/gateway/image_prep.py +151 -0
  129. oara_prometheus-0.9.0/src/prometheus/gateway/media_cache.py +304 -0
  130. oara_prometheus-0.9.0/src/prometheus/gateway/media_guard.py +316 -0
  131. oara_prometheus-0.9.0/src/prometheus/gateway/media_services.py +176 -0
  132. oara_prometheus-0.9.0/src/prometheus/gateway/paperclip.py +433 -0
  133. oara_prometheus-0.9.0/src/prometheus/gateway/platform_base.py +181 -0
  134. oara_prometheus-0.9.0/src/prometheus/gateway/rate_limit.py +161 -0
  135. oara_prometheus-0.9.0/src/prometheus/gateway/slack.py +1646 -0
  136. oara_prometheus-0.9.0/src/prometheus/gateway/status.py +109 -0
  137. oara_prometheus-0.9.0/src/prometheus/gateway/sticker_cache.py +89 -0
  138. oara_prometheus-0.9.0/src/prometheus/gateway/telegram.py +3482 -0
  139. oara_prometheus-0.9.0/src/prometheus/gateway/telegram_network.py +44 -0
  140. oara_prometheus-0.9.0/src/prometheus/gym/__init__.py +26 -0
  141. oara_prometheus-0.9.0/src/prometheus/gym/corpus.py +211 -0
  142. oara_prometheus-0.9.0/src/prometheus/gym/dictwrap_specialist.py +137 -0
  143. oara_prometheus-0.9.0/src/prometheus/gym/harvest.py +59 -0
  144. oara_prometheus-0.9.0/src/prometheus/gym/manifest.py +115 -0
  145. oara_prometheus-0.9.0/src/prometheus/gym/report.py +242 -0
  146. oara_prometheus-0.9.0/src/prometheus/gym/runner.py +573 -0
  147. oara_prometheus-0.9.0/src/prometheus/gym/scoring.py +285 -0
  148. oara_prometheus-0.9.0/src/prometheus/gym/store.py +116 -0
  149. oara_prometheus-0.9.0/src/prometheus/gym/tasks.py +123 -0
  150. oara_prometheus-0.9.0/src/prometheus/hooks/__init__.py +29 -0
  151. oara_prometheus-0.9.0/src/prometheus/hooks/events.py +19 -0
  152. oara_prometheus-0.9.0/src/prometheus/hooks/executor.py +303 -0
  153. oara_prometheus-0.9.0/src/prometheus/hooks/file_mutation_verifier.py +1372 -0
  154. oara_prometheus-0.9.0/src/prometheus/hooks/hot_reload.py +103 -0
  155. oara_prometheus-0.9.0/src/prometheus/hooks/loader.py +86 -0
  156. oara_prometheus-0.9.0/src/prometheus/hooks/lsp_diagnostics.py +87 -0
  157. oara_prometheus-0.9.0/src/prometheus/hooks/registry.py +34 -0
  158. oara_prometheus-0.9.0/src/prometheus/hooks/schemas.py +63 -0
  159. oara_prometheus-0.9.0/src/prometheus/hooks/types.py +43 -0
  160. oara_prometheus-0.9.0/src/prometheus/infra/__init__.py +1 -0
  161. oara_prometheus-0.9.0/src/prometheus/infra/anatomy.py +705 -0
  162. oara_prometheus-0.9.0/src/prometheus/infra/anatomy_writer.py +332 -0
  163. oara_prometheus-0.9.0/src/prometheus/infra/doctor.py +511 -0
  164. oara_prometheus-0.9.0/src/prometheus/infra/project_configs.py +160 -0
  165. oara_prometheus-0.9.0/src/prometheus/jobs/__init__.py +6 -0
  166. oara_prometheus-0.9.0/src/prometheus/jobs/daily_briefing.py +235 -0
  167. oara_prometheus-0.9.0/src/prometheus/jobs/db_snapshot.py +535 -0
  168. oara_prometheus-0.9.0/src/prometheus/kanban/__init__.py +22 -0
  169. oara_prometheus-0.9.0/src/prometheus/kanban/store.py +320 -0
  170. oara_prometheus-0.9.0/src/prometheus/learning/__init__.py +15 -0
  171. oara_prometheus-0.9.0/src/prometheus/learning/curator.py +940 -0
  172. oara_prometheus-0.9.0/src/prometheus/learning/gepa.py +587 -0
  173. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/__init__.py +21 -0
  174. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/event_processor.py +203 -0
  175. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/event_to_actions.py +271 -0
  176. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/quality_gate.py +257 -0
  177. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/service.py +228 -0
  178. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/step_verifier.py +190 -0
  179. oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/synthesizer.py +199 -0
  180. oara_prometheus-0.9.0/src/prometheus/learning/llm_envelope.py +635 -0
  181. oara_prometheus-0.9.0/src/prometheus/learning/nudge.py +122 -0
  182. oara_prometheus-0.9.0/src/prometheus/learning/pair_capture.py +320 -0
  183. oara_prometheus-0.9.0/src/prometheus/learning/skill_creator.py +555 -0
  184. oara_prometheus-0.9.0/src/prometheus/learning/skill_drafts.py +262 -0
  185. oara_prometheus-0.9.0/src/prometheus/learning/skill_refiner.py +315 -0
  186. oara_prometheus-0.9.0/src/prometheus/learning/skill_scoring.py +188 -0
  187. oara_prometheus-0.9.0/src/prometheus/learning/skill_state.py +289 -0
  188. oara_prometheus-0.9.0/src/prometheus/learning/transition_taxonomy.py +93 -0
  189. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/__init__.py +28 -0
  190. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/action_extractor.py +162 -0
  191. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/funnel.py +95 -0
  192. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/ingest.py +294 -0
  193. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/keyframes.py +272 -0
  194. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/pipeline.py +235 -0
  195. oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/vision_digest.py +614 -0
  196. oara_prometheus-0.9.0/src/prometheus/lsp/__init__.py +17 -0
  197. oara_prometheus-0.9.0/src/prometheus/lsp/client.py +635 -0
  198. oara_prometheus-0.9.0/src/prometheus/lsp/languages.py +138 -0
  199. oara_prometheus-0.9.0/src/prometheus/lsp/orchestrator.py +246 -0
  200. oara_prometheus-0.9.0/src/prometheus/mcp/__init__.py +38 -0
  201. oara_prometheus-0.9.0/src/prometheus/mcp/adapter.py +168 -0
  202. oara_prometheus-0.9.0/src/prometheus/mcp/bootstrap.py +135 -0
  203. oara_prometheus-0.9.0/src/prometheus/mcp/names.py +64 -0
  204. oara_prometheus-0.9.0/src/prometheus/mcp/runtime.py +405 -0
  205. oara_prometheus-0.9.0/src/prometheus/mcp/store.py +318 -0
  206. oara_prometheus-0.9.0/src/prometheus/mcp/transport.py +180 -0
  207. oara_prometheus-0.9.0/src/prometheus/mcp/types.py +119 -0
  208. oara_prometheus-0.9.0/src/prometheus/memory/__init__.py +45 -0
  209. oara_prometheus-0.9.0/src/prometheus/memory/entity_validation.py +162 -0
  210. oara_prometheus-0.9.0/src/prometheus/memory/extractor.py +679 -0
  211. oara_prometheus-0.9.0/src/prometheus/memory/hermes_memory_tool.py +398 -0
  212. oara_prometheus-0.9.0/src/prometheus/memory/lcm_assembler.py +165 -0
  213. oara_prometheus-0.9.0/src/prometheus/memory/lcm_compaction.py +217 -0
  214. oara_prometheus-0.9.0/src/prometheus/memory/lcm_conversation_store.py +1212 -0
  215. oara_prometheus-0.9.0/src/prometheus/memory/lcm_engine.py +457 -0
  216. oara_prometheus-0.9.0/src/prometheus/memory/lcm_fts5.py +58 -0
  217. oara_prometheus-0.9.0/src/prometheus/memory/lcm_summarize.py +228 -0
  218. oara_prometheus-0.9.0/src/prometheus/memory/lcm_summary_store.py +435 -0
  219. oara_prometheus-0.9.0/src/prometheus/memory/lcm_types.py +123 -0
  220. oara_prometheus-0.9.0/src/prometheus/memory/pointer.py +149 -0
  221. oara_prometheus-0.9.0/src/prometheus/memory/recall.py +199 -0
  222. oara_prometheus-0.9.0/src/prometheus/memory/retention.py +137 -0
  223. oara_prometheus-0.9.0/src/prometheus/memory/session_kind.py +35 -0
  224. oara_prometheus-0.9.0/src/prometheus/memory/store.py +825 -0
  225. oara_prometheus-0.9.0/src/prometheus/memory/wiki_compiler.py +439 -0
  226. oara_prometheus-0.9.0/src/prometheus/packs/__init__.py +5 -0
  227. oara_prometheus-0.9.0/src/prometheus/packs/loader.py +367 -0
  228. oara_prometheus-0.9.0/src/prometheus/permissions/__init__.py +20 -0
  229. oara_prometheus-0.9.0/src/prometheus/permissions/approval_queue.py +781 -0
  230. oara_prometheus-0.9.0/src/prometheus/permissions/argument_view.py +146 -0
  231. oara_prometheus-0.9.0/src/prometheus/permissions/audit.py +328 -0
  232. oara_prometheus-0.9.0/src/prometheus/permissions/checker.py +1713 -0
  233. oara_prometheus-0.9.0/src/prometheus/permissions/computer_extent.py +225 -0
  234. oara_prometheus-0.9.0/src/prometheus/permissions/computer_schema.py +251 -0
  235. oara_prometheus-0.9.0/src/prometheus/permissions/confinement.py +625 -0
  236. oara_prometheus-0.9.0/src/prometheus/permissions/exfiltration.py +171 -0
  237. oara_prometheus-0.9.0/src/prometheus/permissions/modes.py +28 -0
  238. oara_prometheus-0.9.0/src/prometheus/permissions/path_schema.py +149 -0
  239. oara_prometheus-0.9.0/src/prometheus/permissions/tool_paths.py +278 -0
  240. oara_prometheus-0.9.0/src/prometheus/providers/__init__.py +17 -0
  241. oara_prometheus-0.9.0/src/prometheus/providers/anthropic.py +506 -0
  242. oara_prometheus-0.9.0/src/prometheus/providers/backends.py +623 -0
  243. oara_prometheus-0.9.0/src/prometheus/providers/base.py +92 -0
  244. oara_prometheus-0.9.0/src/prometheus/providers/credential_pool.py +125 -0
  245. oara_prometheus-0.9.0/src/prometheus/providers/credentials.py +78 -0
  246. oara_prometheus-0.9.0/src/prometheus/providers/key_catalog.py +141 -0
  247. oara_prometheus-0.9.0/src/prometheus/providers/llama_cpp.py +935 -0
  248. oara_prometheus-0.9.0/src/prometheus/providers/ollama.py +204 -0
  249. oara_prometheus-0.9.0/src/prometheus/providers/openai_compat.py +402 -0
  250. oara_prometheus-0.9.0/src/prometheus/providers/registry.py +478 -0
  251. oara_prometheus-0.9.0/src/prometheus/providers/retry.py +95 -0
  252. oara_prometheus-0.9.0/src/prometheus/providers/stub.py +433 -0
  253. oara_prometheus-0.9.0/src/prometheus/providers/xai_oauth.py +276 -0
  254. oara_prometheus-0.9.0/src/prometheus/push/__init__.py +1 -0
  255. oara_prometheus-0.9.0/src/prometheus/push/apns.py +155 -0
  256. oara_prometheus-0.9.0/src/prometheus/push/dispatcher.py +266 -0
  257. oara_prometheus-0.9.0/src/prometheus/router/__init__.py +29 -0
  258. oara_prometheus-0.9.0/src/prometheus/router/model_router.py +1252 -0
  259. oara_prometheus-0.9.0/src/prometheus/security/__init__.py +60 -0
  260. oara_prometheus-0.9.0/src/prometheus/security/code_scanner.py +305 -0
  261. oara_prometheus-0.9.0/src/prometheus/security/env_scrub.py +135 -0
  262. oara_prometheus-0.9.0/src/prometheus/security/log_redaction.py +216 -0
  263. oara_prometheus-0.9.0/src/prometheus/security/path_guard.py +169 -0
  264. oara_prometheus-0.9.0/src/prometheus/security/url_guard.py +474 -0
  265. oara_prometheus-0.9.0/src/prometheus/sentinel/__init__.py +13 -0
  266. oara_prometheus-0.9.0/src/prometheus/sentinel/autodream.py +295 -0
  267. oara_prometheus-0.9.0/src/prometheus/sentinel/gepa_engine.py +146 -0
  268. oara_prometheus-0.9.0/src/prometheus/sentinel/golden_trace_exporter.py +321 -0
  269. oara_prometheus-0.9.0/src/prometheus/sentinel/knowledge_synth.py +322 -0
  270. oara_prometheus-0.9.0/src/prometheus/sentinel/memory_consolidator.py +143 -0
  271. oara_prometheus-0.9.0/src/prometheus/sentinel/observer.py +178 -0
  272. oara_prometheus-0.9.0/src/prometheus/sentinel/signals.py +255 -0
  273. oara_prometheus-0.9.0/src/prometheus/sentinel/telemetry_digest.py +201 -0
  274. oara_prometheus-0.9.0/src/prometheus/sentinel/wiki_lint.py +440 -0
  275. oara_prometheus-0.9.0/src/prometheus/setup_wizard.py +1465 -0
  276. oara_prometheus-0.9.0/src/prometheus/skills/__init__.py +19 -0
  277. oara_prometheus-0.9.0/src/prometheus/skills/builtin/__init__.py +1 -0
  278. oara_prometheus-0.9.0/src/prometheus/skills/builtin/commit.md +30 -0
  279. oara_prometheus-0.9.0/src/prometheus/skills/builtin/debug.md +40 -0
  280. oara_prometheus-0.9.0/src/prometheus/skills/builtin/plan.md +43 -0
  281. oara_prometheus-0.9.0/src/prometheus/skills/loader.py +231 -0
  282. oara_prometheus-0.9.0/src/prometheus/skills/registry.py +64 -0
  283. oara_prometheus-0.9.0/src/prometheus/skills/types.py +17 -0
  284. oara_prometheus-0.9.0/src/prometheus/symbiote/__init__.py +53 -0
  285. oara_prometheus-0.9.0/src/prometheus/symbiote/backup_vault.py +746 -0
  286. oara_prometheus-0.9.0/src/prometheus/symbiote/code_scanner.py +24 -0
  287. oara_prometheus-0.9.0/src/prometheus/symbiote/coordinator.py +676 -0
  288. oara_prometheus-0.9.0/src/prometheus/symbiote/github_search.py +384 -0
  289. oara_prometheus-0.9.0/src/prometheus/symbiote/graft.py +432 -0
  290. oara_prometheus-0.9.0/src/prometheus/symbiote/harvest.py +786 -0
  291. oara_prometheus-0.9.0/src/prometheus/symbiote/license_gate.py +342 -0
  292. oara_prometheus-0.9.0/src/prometheus/symbiote/morph.py +830 -0
  293. oara_prometheus-0.9.0/src/prometheus/symbiote/scout.py +418 -0
  294. oara_prometheus-0.9.0/src/prometheus/tasks/__init__.py +24 -0
  295. oara_prometheus-0.9.0/src/prometheus/tasks/completion_handler.py +128 -0
  296. oara_prometheus-0.9.0/src/prometheus/tasks/manager.py +984 -0
  297. oara_prometheus-0.9.0/src/prometheus/tasks/store.py +206 -0
  298. oara_prometheus-0.9.0/src/prometheus/tasks/types.py +78 -0
  299. oara_prometheus-0.9.0/src/prometheus/tasks/watchers.py +156 -0
  300. oara_prometheus-0.9.0/src/prometheus/telemetry/__init__.py +6 -0
  301. oara_prometheus-0.9.0/src/prometheus/telemetry/cost.py +488 -0
  302. oara_prometheus-0.9.0/src/prometheus/telemetry/dashboard.py +241 -0
  303. oara_prometheus-0.9.0/src/prometheus/telemetry/db.py +71 -0
  304. oara_prometheus-0.9.0/src/prometheus/telemetry/latency.py +112 -0
  305. oara_prometheus-0.9.0/src/prometheus/telemetry/tracker.py +2183 -0
  306. oara_prometheus-0.9.0/src/prometheus/tools/__init__.py +24 -0
  307. oara_prometheus-0.9.0/src/prometheus/tools/base.py +139 -0
  308. oara_prometheus-0.9.0/src/prometheus/tools/builtin/__init__.py +79 -0
  309. oara_prometheus-0.9.0/src/prometheus/tools/builtin/agent.py +68 -0
  310. oara_prometheus-0.9.0/src/prometheus/tools/builtin/anatomy.py +141 -0
  311. oara_prometheus-0.9.0/src/prometheus/tools/builtin/ask_user.py +40 -0
  312. oara_prometheus-0.9.0/src/prometheus/tools/builtin/audit_query.py +75 -0
  313. oara_prometheus-0.9.0/src/prometheus/tools/builtin/bash.py +349 -0
  314. oara_prometheus-0.9.0/src/prometheus/tools/builtin/browser.py +315 -0
  315. oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_create.py +119 -0
  316. oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_delete.py +40 -0
  317. oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_list.py +67 -0
  318. oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_nl.py +269 -0
  319. oara_prometheus-0.9.0/src/prometheus/tools/builtin/dashboard.py +216 -0
  320. oara_prometheus-0.9.0/src/prometheus/tools/builtin/download_file.py +299 -0
  321. oara_prometheus-0.9.0/src/prometheus/tools/builtin/file_edit.py +89 -0
  322. oara_prometheus-0.9.0/src/prometheus/tools/builtin/file_read.py +119 -0
  323. oara_prometheus-0.9.0/src/prometheus/tools/builtin/file_write.py +63 -0
  324. oara_prometheus-0.9.0/src/prometheus/tools/builtin/glob.py +93 -0
  325. oara_prometheus-0.9.0/src/prometheus/tools/builtin/grep.py +160 -0
  326. oara_prometheus-0.9.0/src/prometheus/tools/builtin/image_generate.py +991 -0
  327. oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_describe.py +176 -0
  328. oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_expand.py +124 -0
  329. oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_expand_query.py +164 -0
  330. oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_grep.py +155 -0
  331. oara_prometheus-0.9.0/src/prometheus/tools/builtin/lsp.py +215 -0
  332. oara_prometheus-0.9.0/src/prometheus/tools/builtin/mcp_status.py +77 -0
  333. oara_prometheus-0.9.0/src/prometheus/tools/builtin/message.py +228 -0
  334. oara_prometheus-0.9.0/src/prometheus/tools/builtin/notebook_edit.py +118 -0
  335. oara_prometheus-0.9.0/src/prometheus/tools/builtin/sentinel_status.py +116 -0
  336. oara_prometheus-0.9.0/src/prometheus/tools/builtin/sessions_list.py +48 -0
  337. oara_prometheus-0.9.0/src/prometheus/tools/builtin/sessions_send.py +40 -0
  338. oara_prometheus-0.9.0/src/prometheus/tools/builtin/sessions_spawn.py +56 -0
  339. oara_prometheus-0.9.0/src/prometheus/tools/builtin/skill.py +37 -0
  340. oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_graft.py +78 -0
  341. oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_harvest.py +80 -0
  342. oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_scout.py +72 -0
  343. oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_status.py +62 -0
  344. oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_create.py +215 -0
  345. oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_get.py +47 -0
  346. oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_list.py +40 -0
  347. oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_output.py +37 -0
  348. oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_stop.py +30 -0
  349. oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_update.py +45 -0
  350. oara_prometheus-0.9.0/src/prometheus/tools/builtin/todo_write.py +66 -0
  351. oara_prometheus-0.9.0/src/prometheus/tools/builtin/tts.py +116 -0
  352. oara_prometheus-0.9.0/src/prometheus/tools/builtin/vault.py +752 -0
  353. oara_prometheus-0.9.0/src/prometheus/tools/builtin/video_generate.py +474 -0
  354. oara_prometheus-0.9.0/src/prometheus/tools/builtin/vision.py +156 -0
  355. oara_prometheus-0.9.0/src/prometheus/tools/builtin/web_fetch.py +333 -0
  356. oara_prometheus-0.9.0/src/prometheus/tools/builtin/web_search.py +132 -0
  357. oara_prometheus-0.9.0/src/prometheus/tools/builtin/whisper_stt.py +243 -0
  358. oara_prometheus-0.9.0/src/prometheus/tools/builtin/wiki_compile.py +80 -0
  359. oara_prometheus-0.9.0/src/prometheus/tools/builtin/wiki_lint_tool.py +79 -0
  360. oara_prometheus-0.9.0/src/prometheus/tools/builtin/wiki_query.py +196 -0
  361. oara_prometheus-0.9.0/src/prometheus/tools/builtin/youtube_transcript.py +304 -0
  362. oara_prometheus-0.9.0/src/prometheus/tools/denied_prune.py +119 -0
  363. oara_prometheus-0.9.0/src/prometheus/tools/printing_press.py +502 -0
  364. oara_prometheus-0.9.0/src/prometheus/tools/registration.py +139 -0
  365. oara_prometheus-0.9.0/src/prometheus/tools/tool_search.py +243 -0
  366. oara_prometheus-0.9.0/src/prometheus/tracing/__init__.py +18 -0
  367. oara_prometheus-0.9.0/src/prometheus/tracing/phoenix.py +120 -0
  368. oara_prometheus-0.9.0/src/prometheus/tracing/spans.py +56 -0
  369. oara_prometheus-0.9.0/src/prometheus/utils/__init__.py +0 -0
  370. oara_prometheus-0.9.0/src/prometheus/utils/file_extract.py +188 -0
  371. oara_prometheus-0.9.0/src/prometheus/utils/user_files.py +101 -0
  372. oara_prometheus-0.9.0/src/prometheus/web/__init__.py +1 -0
  373. oara_prometheus-0.9.0/src/prometheus/web/artifacts.py +108 -0
  374. oara_prometheus-0.9.0/src/prometheus/web/launcher.py +205 -0
  375. oara_prometheus-0.9.0/src/prometheus/web/openai_api.py +302 -0
  376. oara_prometheus-0.9.0/src/prometheus/web/references.py +343 -0
  377. oara_prometheus-0.9.0/src/prometheus/web/server.py +5587 -0
  378. oara_prometheus-0.9.0/src/prometheus/web/setup_server.py +922 -0
  379. oara_prometheus-0.9.0/src/prometheus/web/slash_router.py +182 -0
  380. oara_prometheus-0.9.0/src/prometheus/web/static/app.css +200 -0
  381. oara_prometheus-0.9.0/src/prometheus/web/static/app.js +491 -0
  382. oara_prometheus-0.9.0/src/prometheus/web/static/index.html +78 -0
  383. oara_prometheus-0.9.0/src/prometheus/web/strict_query.py +80 -0
  384. oara_prometheus-0.9.0/src/prometheus/web/ws_server.py +1782 -0
  385. oara_prometheus-0.9.0/templates/AGENTS.md.template +46 -0
  386. oara_prometheus-0.9.0/templates/SOUL.md.template +43 -0
  387. oara_prometheus-0.9.0/tests/__init__.py +0 -0
  388. oara_prometheus-0.9.0/tests/conftest.py +416 -0
  389. oara_prometheus-0.9.0/tests/fixtures/__init__.py +0 -0
  390. oara_prometheus-0.9.0/tests/fixtures/divergence_traces.py +118 -0
  391. oara_prometheus-0.9.0/tests/fixtures/escalation/neg_ambiguous_clarification.json +6 -0
  392. oara_prometheus-0.9.0/tests/fixtures/escalation/neg_error_with_retry_plan.json +8 -0
  393. oara_prometheus-0.9.0/tests/fixtures/escalation/neg_no_output_grep.json +8 -0
  394. oara_prometheus-0.9.0/tests/fixtures/escalation/neg_two_repeats.json +9 -0
  395. oara_prometheus-0.9.0/tests/fixtures/escalation/neg_unable_to_find.json +8 -0
  396. oara_prometheus-0.9.0/tests/fixtures/escalation/pos_breaker_terminal.json +10 -0
  397. oara_prometheus-0.9.0/tests/fixtures/escalation/pos_capability_denial.json +7 -0
  398. oara_prometheus-0.9.0/tests/fixtures/escalation/pos_clarification_stall.json +7 -0
  399. oara_prometheus-0.9.0/tests/fixtures/escalation/pos_empty_reply.json +9 -0
  400. oara_prometheus-0.9.0/tests/fixtures/escalation/pos_repetition.json +11 -0
  401. oara_prometheus-0.9.0/tests/fixtures/escalation/pos_unrecovered_error.json +9 -0
  402. oara_prometheus-0.9.0/tests/fixtures/escalation/teacher_reply_good.md +25 -0
  403. oara_prometheus-0.9.0/tests/fixtures/escalation/teacher_reply_missing_skill.md +5 -0
  404. oara_prometheus-0.9.0/tests/fixtures/escalation/teacher_reply_stalled.md +18 -0
  405. oara_prometheus-0.9.0/tests/fixtures/loop_envelope_prewrap_request.json +4 -0
  406. oara_prometheus-0.9.0/tests/support/__init__.py +1 -0
  407. oara_prometheus-0.9.0/tests/support/advertisement.py +154 -0
  408. oara_prometheus-0.9.0/tests/support/cloud_http.py +68 -0
  409. oara_prometheus-0.9.0/tests/support/config_defaults.py +299 -0
  410. oara_prometheus-0.9.0/tests/support/doubles.py +139 -0
  411. oara_prometheus-0.9.0/tests/support/gate_manifest.py +517 -0
  412. oara_prometheus-0.9.0/tests/support/plumbing_allowlist.py +20 -0
  413. oara_prometheus-0.9.0/tests/support/real_app.py +257 -0
  414. oara_prometheus-0.9.0/tests/test_a11y_bus_address.py +226 -0
  415. oara_prometheus-0.9.0/tests/test_absence_hostile_keys.py +458 -0
  416. oara_prometheus-0.9.0/tests/test_acceptance_real_path.py +171 -0
  417. oara_prometheus-0.9.0/tests/test_acceptance_repeat_detector.py +383 -0
  418. oara_prometheus-0.9.0/tests/test_adapter.py +479 -0
  419. oara_prometheus-0.9.0/tests/test_adapter_tiers.py +242 -0
  420. oara_prometheus-0.9.0/tests/test_adaptive_strictness.py +126 -0
  421. oara_prometheus-0.9.0/tests/test_advertisement_after_routing.py +225 -0
  422. oara_prometheus-0.9.0/tests/test_agent_loop_high_risk_swallows.py +274 -0
  423. oara_prometheus-0.9.0/tests/test_agent_loop_route_audit.py +158 -0
  424. oara_prometheus-0.9.0/tests/test_agent_loop_route_warning.py +163 -0
  425. oara_prometheus-0.9.0/tests/test_anatomy.py +934 -0
  426. oara_prometheus-0.9.0/tests/test_anatomy_tool_registered.py +142 -0
  427. oara_prometheus-0.9.0/tests/test_anthropic_stream_error.py +218 -0
  428. oara_prometheus-0.9.0/tests/test_api_approvals_expiry.py +162 -0
  429. oara_prometheus-0.9.0/tests/test_api_approve_reports_what_it_did.py +248 -0
  430. oara_prometheus-0.9.0/tests/test_api_artifacts.py +97 -0
  431. oara_prometheus-0.9.0/tests/test_api_backends.py +174 -0
  432. oara_prometheus-0.9.0/tests/test_api_chat_reaches_the_model.py +173 -0
  433. oara_prometheus-0.9.0/tests/test_api_chat_send.py +166 -0
  434. oara_prometheus-0.9.0/tests/test_api_code.py +760 -0
  435. oara_prometheus-0.9.0/tests/test_api_cron.py +91 -0
  436. oara_prometheus-0.9.0/tests/test_api_devices.py +302 -0
  437. oara_prometheus-0.9.0/tests/test_api_documents.py +162 -0
  438. oara_prometheus-0.9.0/tests/test_api_files.py +120 -0
  439. oara_prometheus-0.9.0/tests/test_api_files_security.py +103 -0
  440. oara_prometheus-0.9.0/tests/test_api_kanban.py +158 -0
  441. oara_prometheus-0.9.0/tests/test_api_kanban_security.py +89 -0
  442. oara_prometheus-0.9.0/tests/test_api_live_upload.py +171 -0
  443. oara_prometheus-0.9.0/tests/test_api_mcp_servers.py +497 -0
  444. oara_prometheus-0.9.0/tests/test_api_memory_write.py +93 -0
  445. oara_prometheus-0.9.0/tests/test_api_model_rest.py +161 -0
  446. oara_prometheus-0.9.0/tests/test_api_paperclip_wake.py +111 -0
  447. oara_prometheus-0.9.0/tests/test_api_profiles.py +52 -0
  448. oara_prometheus-0.9.0/tests/test_api_project_file.py +83 -0
  449. oara_prometheus-0.9.0/tests/test_api_provider_keys.py +284 -0
  450. oara_prometheus-0.9.0/tests/test_api_search.py +258 -0
  451. oara_prometheus-0.9.0/tests/test_api_session_delete.py +90 -0
  452. oara_prometheus-0.9.0/tests/test_api_session_fork.py +142 -0
  453. oara_prometheus-0.9.0/tests/test_api_session_gateway_stamp.py +134 -0
  454. oara_prometheus-0.9.0/tests/test_api_session_profile.py +120 -0
  455. oara_prometheus-0.9.0/tests/test_api_session_purge.py +104 -0
  456. oara_prometheus-0.9.0/tests/test_api_sessions_durable.py +188 -0
  457. oara_prometheus-0.9.0/tests/test_api_sessions_meta.py +95 -0
  458. oara_prometheus-0.9.0/tests/test_api_skill_drafts.py +244 -0
  459. oara_prometheus-0.9.0/tests/test_api_status_store_health.py +74 -0
  460. oara_prometheus-0.9.0/tests/test_api_tasks.py +274 -0
  461. oara_prometheus-0.9.0/tests/test_api_tools_deferred.py +198 -0
  462. oara_prometheus-0.9.0/tests/test_api_tools_recent.py +208 -0
  463. oara_prometheus-0.9.0/tests/test_api_usage.py +151 -0
  464. oara_prometheus-0.9.0/tests/test_api_video_ingest.py +115 -0
  465. oara_prometheus-0.9.0/tests/test_api_wiki_read.py +216 -0
  466. oara_prometheus-0.9.0/tests/test_apns_sender.py +124 -0
  467. oara_prometheus-0.9.0/tests/test_approval_grants.py +310 -0
  468. oara_prometheus-0.9.0/tests/test_approval_prompt_trim.py +192 -0
  469. oara_prometheus-0.9.0/tests/test_approval_push.py +189 -0
  470. oara_prometheus-0.9.0/tests/test_approval_push_fanout.py +215 -0
  471. oara_prometheus-0.9.0/tests/test_approval_queue.py +138 -0
  472. oara_prometheus-0.9.0/tests/test_approval_shows_arguments.py +186 -0
  473. oara_prometheus-0.9.0/tests/test_approve_reaches_the_operator.py +176 -0
  474. oara_prometheus-0.9.0/tests/test_at_references.py +528 -0
  475. oara_prometheus-0.9.0/tests/test_audit.py +202 -0
  476. oara_prometheus-0.9.0/tests/test_audit_reason_is_scrubbed.py +285 -0
  477. oara_prometheus-0.9.0/tests/test_autodream_does_not_stall_the_loop.py +115 -0
  478. oara_prometheus-0.9.0/tests/test_backend_consumers.py +140 -0
  479. oara_prometheus-0.9.0/tests/test_backend_registry.py +383 -0
  480. oara_prometheus-0.9.0/tests/test_backend_switching.py +386 -0
  481. oara_prometheus-0.9.0/tests/test_backfill_billing_mode_reporting.py +161 -0
  482. oara_prometheus-0.9.0/tests/test_backfill_titles.py +145 -0
  483. oara_prometheus-0.9.0/tests/test_backup_vault.py +324 -0
  484. oara_prometheus-0.9.0/tests/test_bash_confinement.py +519 -0
  485. oara_prometheus-0.9.0/tests/test_bash_env_scrub.py +204 -0
  486. oara_prometheus-0.9.0/tests/test_bash_floor_reporting.py +285 -0
  487. oara_prometheus-0.9.0/tests/test_bash_killpg_and_repeat_guard.py +151 -0
  488. oara_prometheus-0.9.0/tests/test_bash_write_floor.py +533 -0
  489. oara_prometheus-0.9.0/tests/test_beacon_api.py +460 -0
  490. oara_prometheus-0.9.0/tests/test_beacon_live_turn.py +180 -0
  491. oara_prometheus-0.9.0/tests/test_beacon_vision_upload.py +263 -0
  492. oara_prometheus-0.9.0/tests/test_benchmarks.py +462 -0
  493. oara_prometheus-0.9.0/tests/test_billing_mode_is_recorded.py +624 -0
  494. oara_prometheus-0.9.0/tests/test_boot_sha_staleness.py +140 -0
  495. oara_prometheus-0.9.0/tests/test_bootstrap.py +234 -0
  496. oara_prometheus-0.9.0/tests/test_boundary_escape_ends_the_turn.py +318 -0
  497. oara_prometheus-0.9.0/tests/test_browser_scheme_and_context.py +362 -0
  498. oara_prometheus-0.9.0/tests/test_bundled_frontend.py +335 -0
  499. oara_prometheus-0.9.0/tests/test_bwrap_sandbox.py +465 -0
  500. oara_prometheus-0.9.0/tests/test_capture_redaction.py +207 -0
  501. oara_prometheus-0.9.0/tests/test_chat_done_row_id.py +118 -0
  502. oara_prometheus-0.9.0/tests/test_classify_streamed_response.py +68 -0
  503. oara_prometheus-0.9.0/tests/test_clean_slate.py +120 -0
  504. oara_prometheus-0.9.0/tests/test_cli_init.py +318 -0
  505. oara_prometheus-0.9.0/tests/test_cli_logging.py +243 -0
  506. oara_prometheus-0.9.0/tests/test_cli_provider_registry.py +93 -0
  507. oara_prometheus-0.9.0/tests/test_client_msg_id_correlation.py +252 -0
  508. oara_prometheus-0.9.0/tests/test_cloud_expansion.py +594 -0
  509. oara_prometheus-0.9.0/tests/test_cloud_providers.py +931 -0
  510. oara_prometheus-0.9.0/tests/test_cloud_tool_choice_acceptance.py +113 -0
  511. oara_prometheus-0.9.0/tests/test_code_scanner.py +226 -0
  512. oara_prometheus-0.9.0/tests/test_coding_control.py +143 -0
  513. oara_prometheus-0.9.0/tests/test_coding_livestream.py +384 -0
  514. oara_prometheus-0.9.0/tests/test_coding_policy.py +103 -0
  515. oara_prometheus-0.9.0/tests/test_coding_restart_survival.py +157 -0
  516. oara_prometheus-0.9.0/tests/test_coding_sandbox.py +415 -0
  517. oara_prometheus-0.9.0/tests/test_coding_sandbox_lifecycle.py +228 -0
  518. oara_prometheus-0.9.0/tests/test_coding_session.py +410 -0
  519. oara_prometheus-0.9.0/tests/test_coding_supervise.py +320 -0
  520. oara_prometheus-0.9.0/tests/test_coding_thinking_control.py +105 -0
  521. oara_prometheus-0.9.0/tests/test_coding_tools.py +279 -0
  522. oara_prometheus-0.9.0/tests/test_compactor_anchor_is_per_session.py +199 -0
  523. oara_prometheus-0.9.0/tests/test_compactor_shared_session_key.py +179 -0
  524. oara_prometheus-0.9.0/tests/test_compression_upgrade.py +137 -0
  525. oara_prometheus-0.9.0/tests/test_computer_status_block.py +450 -0
  526. oara_prometheus-0.9.0/tests/test_computer_use_candidate_loop.py +319 -0
  527. oara_prometheus-0.9.0/tests/test_computer_use_consent_unit.py +276 -0
  528. oara_prometheus-0.9.0/tests/test_computer_use_gate_path.py +367 -0
  529. oara_prometheus-0.9.0/tests/test_computer_use_targets.py +143 -0
  530. oara_prometheus-0.9.0/tests/test_config_absence_rulings.py +289 -0
  531. oara_prometheus-0.9.0/tests/test_config_defaults_equality.py +296 -0
  532. oara_prometheus-0.9.0/tests/test_config_divergence.py +355 -0
  533. oara_prometheus-0.9.0/tests/test_config_drift.py +335 -0
  534. oara_prometheus-0.9.0/tests/test_config_env.py +183 -0
  535. oara_prometheus-0.9.0/tests/test_config_fallback_callers.py +472 -0
  536. oara_prometheus-0.9.0/tests/test_config_load_states.py +166 -0
  537. oara_prometheus-0.9.0/tests/test_config_path_resolution.py +239 -0
  538. oara_prometheus-0.9.0/tests/test_config_pins_no_disk_write.py +157 -0
  539. oara_prometheus-0.9.0/tests/test_config_pins_surfaces.py +231 -0
  540. oara_prometheus-0.9.0/tests/test_config_read_honesty_invariant.py +322 -0
  541. oara_prometheus-0.9.0/tests/test_connect_block.py +163 -0
  542. oara_prometheus-0.9.0/tests/test_consent_audit_timeout.py +264 -0
  543. oara_prometheus-0.9.0/tests/test_consent_grants.py +415 -0
  544. oara_prometheus-0.9.0/tests/test_console_script_name.py +74 -0
  545. oara_prometheus-0.9.0/tests/test_context.py +472 -0
  546. oara_prometheus-0.9.0/tests/test_context_compactor.py +524 -0
  547. oara_prometheus-0.9.0/tests/test_context_file_discovery_7s.py +197 -0
  548. oara_prometheus-0.9.0/tests/test_context_limit_invariant.py +412 -0
  549. oara_prometheus-0.9.0/tests/test_context_meter_truth.py +195 -0
  550. oara_prometheus-0.9.0/tests/test_context_preflight_refusal.py +176 -0
  551. oara_prometheus-0.9.0/tests/test_context_surface_agreement.py +213 -0
  552. oara_prometheus-0.9.0/tests/test_control_plane_dispatch.py +176 -0
  553. oara_prometheus-0.9.0/tests/test_coordinator.py +389 -0
  554. oara_prometheus-0.9.0/tests/test_cost.py +232 -0
  555. oara_prometheus-0.9.0/tests/test_cost_wiring.py +82 -0
  556. oara_prometheus-0.9.0/tests/test_credential_pool.py +82 -0
  557. oara_prometheus-0.9.0/tests/test_cron_cwd_gated.py +332 -0
  558. oara_prometheus-0.9.0/tests/test_cron_durability.py +69 -0
  559. oara_prometheus-0.9.0/tests/test_cron_failure_notify.py +126 -0
  560. oara_prometheus-0.9.0/tests/test_cron_gate_unconditional.py +225 -0
  561. oara_prometheus-0.9.0/tests/test_cron_nl.py +293 -0
  562. oara_prometheus-0.9.0/tests/test_cron_notify_delivery.py +268 -0
  563. oara_prometheus-0.9.0/tests/test_cron_occurrence_memory.py +216 -0
  564. oara_prometheus-0.9.0/tests/test_cron_security.py +96 -0
  565. oara_prometheus-0.9.0/tests/test_cron_service.py +62 -0
  566. oara_prometheus-0.9.0/tests/test_cron_tick_survives_persist_failure.py +165 -0
  567. oara_prometheus-0.9.0/tests/test_cross_result_budget.py +88 -0
  568. oara_prometheus-0.9.0/tests/test_cross_surface_turn_lock.py +253 -0
  569. oara_prometheus-0.9.0/tests/test_cua_adapter.py +394 -0
  570. oara_prometheus-0.9.0/tests/test_curator_escalation.py +372 -0
  571. oara_prometheus-0.9.0/tests/test_daemon_cloud_iteration_cap.py +119 -0
  572. oara_prometheus-0.9.0/tests/test_daemon_config_resolution.py +246 -0
  573. oara_prometheus-0.9.0/tests/test_daemon_shutdown.py +152 -0
  574. oara_prometheus-0.9.0/tests/test_daily_briefing.py +202 -0
  575. oara_prometheus-0.9.0/tests/test_dashboard_bind_is_operator_chosen.py +337 -0
  576. oara_prometheus-0.9.0/tests/test_db_snapshot.py +399 -0
  577. oara_prometheus-0.9.0/tests/test_deferred_loading.py +100 -0
  578. oara_prometheus-0.9.0/tests/test_deferred_put_keeps_comments.py +198 -0
  579. oara_prometheus-0.9.0/tests/test_deferred_tier_aware.py +305 -0
  580. oara_prometheus-0.9.0/tests/test_degrade_notice_in_history.py +292 -0
  581. oara_prometheus-0.9.0/tests/test_denied_paths_absence.py +266 -0
  582. oara_prometheus-0.9.0/tests/test_denied_paths_absolute.py +292 -0
  583. oara_prometheus-0.9.0/tests/test_denied_prune.py +269 -0
  584. oara_prometheus-0.9.0/tests/test_deploy_guard.py +419 -0
  585. oara_prometheus-0.9.0/tests/test_deployment_freshness.py +271 -0
  586. oara_prometheus-0.9.0/tests/test_dictwrap_specialist.py +75 -0
  587. oara_prometheus-0.9.0/tests/test_discord.py +935 -0
  588. oara_prometheus-0.9.0/tests/test_divergence.py +565 -0
  589. oara_prometheus-0.9.0/tests/test_divergence_aggregation.py +215 -0
  590. oara_prometheus-0.9.0/tests/test_dns_rebinding_pin.py +347 -0
  591. oara_prometheus-0.9.0/tests/test_doctor.py +817 -0
  592. oara_prometheus-0.9.0/tests/test_doctor_cli.py +562 -0
  593. oara_prometheus-0.9.0/tests/test_documents_ai.py +37 -0
  594. oara_prometheus-0.9.0/tests/test_documents_service.py +236 -0
  595. oara_prometheus-0.9.0/tests/test_download_file_traversal.py +258 -0
  596. oara_prometheus-0.9.0/tests/test_drift_alert_policy.py +193 -0
  597. oara_prometheus-0.9.0/tests/test_durable_message_id.py +96 -0
  598. oara_prometheus-0.9.0/tests/test_edit_file_uniqueness.py +73 -0
  599. oara_prometheus-0.9.0/tests/test_empty_response_guard.py +214 -0
  600. oara_prometheus-0.9.0/tests/test_engine.py +316 -0
  601. oara_prometheus-0.9.0/tests/test_entity_validation.py +123 -0
  602. oara_prometheus-0.9.0/tests/test_entry_points_do_not_run_on_import.py +91 -0
  603. oara_prometheus-0.9.0/tests/test_env_file.py +347 -0
  604. oara_prometheus-0.9.0/tests/test_envelope_model_label.py +175 -0
  605. oara_prometheus-0.9.0/tests/test_ephemeral_mode.py +761 -0
  606. oara_prometheus-0.9.0/tests/test_escalation_detector.py +218 -0
  607. oara_prometheus-0.9.0/tests/test_escalation_phase3.py +236 -0
  608. oara_prometheus-0.9.0/tests/test_escalation_teacher.py +313 -0
  609. oara_prometheus-0.9.0/tests/test_eval_judge_provenance.py +163 -0
  610. oara_prometheus-0.9.0/tests/test_evals.py +1105 -0
  611. oara_prometheus-0.9.0/tests/test_event_loop_not_blocked.py +128 -0
  612. oara_prometheus-0.9.0/tests/test_every_parameter_is_described.py +108 -0
  613. oara_prometheus-0.9.0/tests/test_exfiltration.py +158 -0
  614. oara_prometheus-0.9.0/tests/test_extractor_cursor.py +390 -0
  615. oara_prometheus-0.9.0/tests/test_extractor_hygiene.py +281 -0
  616. oara_prometheus-0.9.0/tests/test_extractor_provenance.py +90 -0
  617. oara_prometheus-0.9.0/tests/test_fallback_is_actually_wired.py +127 -0
  618. oara_prometheus-0.9.0/tests/test_file_checkpoints.py +224 -0
  619. oara_prometheus-0.9.0/tests/test_file_mutation_verifier.py +1617 -0
  620. oara_prometheus-0.9.0/tests/test_first_run_path.py +306 -0
  621. oara_prometheus-0.9.0/tests/test_floor_claim_honesty.py +235 -0
  622. oara_prometheus-0.9.0/tests/test_force_search_provider.py +147 -0
  623. oara_prometheus-0.9.0/tests/test_forcing_first_round.py +120 -0
  624. oara_prometheus-0.9.0/tests/test_gate_manifest.py +603 -0
  625. oara_prometheus-0.9.0/tests/test_gate_sees_the_path.py +502 -0
  626. oara_prometheus-0.9.0/tests/test_gate_toggle.py +102 -0
  627. oara_prometheus-0.9.0/tests/test_gateway.py +779 -0
  628. oara_prometheus-0.9.0/tests/test_gateway_absence_is_not_permission.py +298 -0
  629. oara_prometheus-0.9.0/tests/test_gateway_command_authz.py +585 -0
  630. oara_prometheus-0.9.0/tests/test_gateway_command_pins.py +495 -0
  631. oara_prometheus-0.9.0/tests/test_gateway_g1.py +483 -0
  632. oara_prometheus-0.9.0/tests/test_gateway_liveness.py +312 -0
  633. oara_prometheus-0.9.0/tests/test_gateway_media_pins.py +284 -0
  634. oara_prometheus-0.9.0/tests/test_gateway_parity.py +586 -0
  635. oara_prometheus-0.9.0/tests/test_generated_reference.py +280 -0
  636. oara_prometheus-0.9.0/tests/test_gepa.py +510 -0
  637. oara_prometheus-0.9.0/tests/test_github_search.py +111 -0
  638. oara_prometheus-0.9.0/tests/test_glob_tool.py +56 -0
  639. oara_prometheus-0.9.0/tests/test_golden_trace_namespace_guard.py +98 -0
  640. oara_prometheus-0.9.0/tests/test_graft.py +184 -0
  641. oara_prometheus-0.9.0/tests/test_grant_describe_intent.py +391 -0
  642. oara_prometheus-0.9.0/tests/test_grant_floor_invariant.py +224 -0
  643. oara_prometheus-0.9.0/tests/test_grep_tool.py +82 -0
  644. oara_prometheus-0.9.0/tests/test_gym.py +637 -0
  645. oara_prometheus-0.9.0/tests/test_gym_corpus.py +67 -0
  646. oara_prometheus-0.9.0/tests/test_gym_harvest.py +105 -0
  647. oara_prometheus-0.9.0/tests/test_harvest.py +207 -0
  648. oara_prometheus-0.9.0/tests/test_harvest_clone_allowlist.py +200 -0
  649. oara_prometheus-0.9.0/tests/test_health_command.py +206 -0
  650. oara_prometheus-0.9.0/tests/test_health_tool_registration_section.py +138 -0
  651. oara_prometheus-0.9.0/tests/test_heartbeat_notify.py +121 -0
  652. oara_prometheus-0.9.0/tests/test_history_append_only.py +253 -0
  653. oara_prometheus-0.9.0/tests/test_honest_async_promises.py +143 -0
  654. oara_prometheus-0.9.0/tests/test_honest_status_notes.py +607 -0
  655. oara_prometheus-0.9.0/tests/test_hook_command_injection.py +317 -0
  656. oara_prometheus-0.9.0/tests/test_hook_hot_reload.py +138 -0
  657. oara_prometheus-0.9.0/tests/test_hooks.py +235 -0
  658. oara_prometheus-0.9.0/tests/test_image_blocks_phase1.py +159 -0
  659. oara_prometheus-0.9.0/tests/test_image_blocks_phase1b.py +368 -0
  660. oara_prometheus-0.9.0/tests/test_image_blocks_phase2.py +269 -0
  661. oara_prometheus-0.9.0/tests/test_image_blocks_phase3a.py +93 -0
  662. oara_prometheus-0.9.0/tests/test_image_dashscope.py +341 -0
  663. oara_prometheus-0.9.0/tests/test_image_generate.py +132 -0
  664. oara_prometheus-0.9.0/tests/test_image_output_cannot_reach_daemon_state.py +129 -0
  665. oara_prometheus-0.9.0/tests/test_injected_turn_provenance_on_rest.py +114 -0
  666. oara_prometheus-0.9.0/tests/test_install_service.py +135 -0
  667. oara_prometheus-0.9.0/tests/test_judge_outage_is_not_a_pass.py +190 -0
  668. oara_prometheus-0.9.0/tests/test_knowledge_synth_dedup.py +124 -0
  669. oara_prometheus-0.9.0/tests/test_knowledge_synth_envelope.py +150 -0
  670. oara_prometheus-0.9.0/tests/test_kv_cache_provenance.py +241 -0
  671. oara_prometheus-0.9.0/tests/test_latency_average_excludes_unmeasured.py +105 -0
  672. oara_prometheus-0.9.0/tests/test_latency_says_unmeasured.py +730 -0
  673. oara_prometheus-0.9.0/tests/test_lcm.py +986 -0
  674. oara_prometheus-0.9.0/tests/test_lcm_db_path_resolution.py +527 -0
  675. oara_prometheus-0.9.0/tests/test_lcm_engine.py +46 -0
  676. oara_prometheus-0.9.0/tests/test_lcm_fts5_helpers.py +49 -0
  677. oara_prometheus-0.9.0/tests/test_lcm_purge_session.py +150 -0
  678. oara_prometheus-0.9.0/tests/test_lcm_segment_tokens.py +215 -0
  679. oara_prometheus-0.9.0/tests/test_lcm_structured_content.py +248 -0
  680. oara_prometheus-0.9.0/tests/test_lcm_tools_store_contract.py +205 -0
  681. oara_prometheus-0.9.0/tests/test_lcm_trust_tag.py +96 -0
  682. oara_prometheus-0.9.0/tests/test_lcm_wired_before_gateway_start.py +155 -0
  683. oara_prometheus-0.9.0/tests/test_learning.py +207 -0
  684. oara_prometheus-0.9.0/tests/test_license_gate.py +173 -0
  685. oara_prometheus-0.9.0/tests/test_live_recorder.py +267 -0
  686. oara_prometheus-0.9.0/tests/test_llama_cpp_suppress_thinking.py +176 -0
  687. oara_prometheus-0.9.0/tests/test_llm_envelope.py +301 -0
  688. oara_prometheus-0.9.0/tests/test_local_vision_wiring.py +217 -0
  689. oara_prometheus-0.9.0/tests/test_log_redaction.py +272 -0
  690. oara_prometheus-0.9.0/tests/test_log_rotation.py +86 -0
  691. oara_prometheus-0.9.0/tests/test_loop_context_is_not_shared.py +393 -0
  692. oara_prometheus-0.9.0/tests/test_loop_envelope.py +409 -0
  693. oara_prometheus-0.9.0/tests/test_loop_hardening_2.py +250 -0
  694. oara_prometheus-0.9.0/tests/test_loop_hardening_3.py +255 -0
  695. oara_prometheus-0.9.0/tests/test_loop_watchdog.py +175 -0
  696. oara_prometheus-0.9.0/tests/test_lsp_client.py +558 -0
  697. oara_prometheus-0.9.0/tests/test_lsp_diagnostics_hook.py +208 -0
  698. oara_prometheus-0.9.0/tests/test_lsp_orchestrator.py +266 -0
  699. oara_prometheus-0.9.0/tests/test_lsp_tool.py +307 -0
  700. oara_prometheus-0.9.0/tests/test_malformed_empty_guard.py +270 -0
  701. oara_prometheus-0.9.0/tests/test_managed_tasks.py +516 -0
  702. oara_prometheus-0.9.0/tests/test_manual_layer.py +174 -0
  703. oara_prometheus-0.9.0/tests/test_markup_guard.py +266 -0
  704. oara_prometheus-0.9.0/tests/test_max_tool_iterations_source.py +146 -0
  705. oara_prometheus-0.9.0/tests/test_mcp_adapter.py +218 -0
  706. oara_prometheus-0.9.0/tests/test_mcp_allowlist.py +253 -0
  707. oara_prometheus-0.9.0/tests/test_mcp_dependency_pin.py +180 -0
  708. oara_prometheus-0.9.0/tests/test_mcp_doc_claims.py +264 -0
  709. oara_prometheus-0.9.0/tests/test_mcp_gating.py +303 -0
  710. oara_prometheus-0.9.0/tests/test_mcp_names.py +79 -0
  711. oara_prometheus-0.9.0/tests/test_mcp_rest_spawn_perimeter.py +497 -0
  712. oara_prometheus-0.9.0/tests/test_mcp_status_tool.py +102 -0
  713. oara_prometheus-0.9.0/tests/test_mcp_transport.py +128 -0
  714. oara_prometheus-0.9.0/tests/test_media_admission.py +257 -0
  715. oara_prometheus-0.9.0/tests/test_media_cache.py +73 -0
  716. oara_prometheus-0.9.0/tests/test_media_cache_no_fabricated_path.py +121 -0
  717. oara_prometheus-0.9.0/tests/test_media_endpoint.py +136 -0
  718. oara_prometheus-0.9.0/tests/test_memory.py +365 -0
  719. oara_prometheus-0.9.0/tests/test_memory_concurrency.py +197 -0
  720. oara_prometheus-0.9.0/tests/test_memory_recall.py +423 -0
  721. oara_prometheus-0.9.0/tests/test_memory_tool_registered.py +184 -0
  722. oara_prometheus-0.9.0/tests/test_message_destination_origin.py +231 -0
  723. oara_prometheus-0.9.0/tests/test_messages_pagination.py +131 -0
  724. oara_prometheus-0.9.0/tests/test_microcompact.py +251 -0
  725. oara_prometheus-0.9.0/tests/test_migrate.py +399 -0
  726. oara_prometheus-0.9.0/tests/test_model_catalog_consistency.py +411 -0
  727. oara_prometheus-0.9.0/tests/test_model_detect_retry.py +52 -0
  728. oara_prometheus-0.9.0/tests/test_model_identity_from_backend.py +197 -0
  729. oara_prometheus-0.9.0/tests/test_model_router.py +765 -0
  730. oara_prometheus-0.9.0/tests/test_morph.py +370 -0
  731. oara_prometheus-0.9.0/tests/test_no_adjacent_assistant_messages.py +196 -0
  732. oara_prometheus-0.9.0/tests/test_no_leaked_task_managers.py +220 -0
  733. oara_prometheus-0.9.0/tests/test_no_replay_after_partial_stream.py +128 -0
  734. oara_prometheus-0.9.0/tests/test_node_identity.py +194 -0
  735. oara_prometheus-0.9.0/tests/test_obsidian_view.py +82 -0
  736. oara_prometheus-0.9.0/tests/test_one_config_loader.py +171 -0
  737. oara_prometheus-0.9.0/tests/test_openai_compat_api.py +222 -0
  738. oara_prometheus-0.9.0/tests/test_openai_compat_reads_error_body.py +170 -0
  739. oara_prometheus-0.9.0/tests/test_origin_fetch.py +430 -0
  740. oara_prometheus-0.9.0/tests/test_pack_loader.py +354 -0
  741. oara_prometheus-0.9.0/tests/test_pair_quality_gate.py +196 -0
  742. oara_prometheus-0.9.0/tests/test_paperclip_gateway.py +432 -0
  743. oara_prometheus-0.9.0/tests/test_parallel_dispatch.py +496 -0
  744. oara_prometheus-0.9.0/tests/test_path_guard.py +69 -0
  745. oara_prometheus-0.9.0/tests/test_per_message_mode.py +202 -0
  746. oara_prometheus-0.9.0/tests/test_permissions.py +628 -0
  747. oara_prometheus-0.9.0/tests/test_plan_filename_convention.py +207 -0
  748. oara_prometheus-0.9.0/tests/test_precommit_fails_closed.py +252 -0
  749. oara_prometheus-0.9.0/tests/test_printing_press.py +647 -0
  750. oara_prometheus-0.9.0/tests/test_profile_wiring.py +322 -0
  751. oara_prometheus-0.9.0/tests/test_profiles.py +264 -0
  752. oara_prometheus-0.9.0/tests/test_project_files.py +277 -0
  753. oara_prometheus-0.9.0/tests/test_prompt_assembly.py +364 -0
  754. oara_prometheus-0.9.0/tests/test_prompt_cache_telemetry.py +165 -0
  755. oara_prometheus-0.9.0/tests/test_prompt_etiquette_and_tool_description.py +145 -0
  756. oara_prometheus-0.9.0/tests/test_provider_fallback_decision.py +136 -0
  757. oara_prometheus-0.9.0/tests/test_provider_fallback_stream.py +179 -0
  758. oara_prometheus-0.9.0/tests/test_push_dispatch.py +252 -0
  759. oara_prometheus-0.9.0/tests/test_push_records_success.py +138 -0
  760. oara_prometheus-0.9.0/tests/test_push_routes.py +115 -0
  761. oara_prometheus-0.9.0/tests/test_quota_capture_harness.py +168 -0
  762. oara_prometheus-0.9.0/tests/test_reasoning_budget_marker.py +252 -0
  763. oara_prometheus-0.9.0/tests/test_redundant_except_hotfix.py +271 -0
  764. oara_prometheus-0.9.0/tests/test_relative_read_paths.py +91 -0
  765. oara_prometheus-0.9.0/tests/test_retry_budget_reset.py +116 -0
  766. oara_prometheus-0.9.0/tests/test_run_agent_loud_failure.py +64 -0
  767. oara_prometheus-0.9.0/tests/test_run_async_tool_choice_lever.py +167 -0
  768. oara_prometheus-0.9.0/tests/test_run_async_web_parity.py +408 -0
  769. oara_prometheus-0.9.0/tests/test_run_model_ab_eval.py +305 -0
  770. oara_prometheus-0.9.0/tests/test_scoped_lock.py +66 -0
  771. oara_prometheus-0.9.0/tests/test_scout.py +186 -0
  772. oara_prometheus-0.9.0/tests/test_sdist_contents.py +403 -0
  773. oara_prometheus-0.9.0/tests/test_self_halt.py +256 -0
  774. oara_prometheus-0.9.0/tests/test_sentinel.py +937 -0
  775. oara_prometheus-0.9.0/tests/test_served_model_telemetry.py +410 -0
  776. oara_prometheus-0.9.0/tests/test_session_compaction_hook.py +96 -0
  777. oara_prometheus-0.9.0/tests/test_session_id_descriptive_only.py +186 -0
  778. oara_prometheus-0.9.0/tests/test_session_kind.py +66 -0
  779. oara_prometheus-0.9.0/tests/test_session_persist_exact_once.py +233 -0
  780. oara_prometheus-0.9.0/tests/test_session_pins.py +257 -0
  781. oara_prometheus-0.9.0/tests/test_session_rehydrate.py +230 -0
  782. oara_prometheus-0.9.0/tests/test_session_retention.py +121 -0
  783. oara_prometheus-0.9.0/tests/test_session_titles.py +418 -0
  784. oara_prometheus-0.9.0/tests/test_session_turn_lock.py +112 -0
  785. oara_prometheus-0.9.0/tests/test_session_workspace.py +396 -0
  786. oara_prometheus-0.9.0/tests/test_sessions.py +438 -0
  787. oara_prometheus-0.9.0/tests/test_setup_advertised_defaults.py +107 -0
  788. oara_prometheus-0.9.0/tests/test_setup_api_cloud.py +162 -0
  789. oara_prometheus-0.9.0/tests/test_setup_api_phase2.py +770 -0
  790. oara_prometheus-0.9.0/tests/test_setup_cloud_noninteractive.py +180 -0
  791. oara_prometheus-0.9.0/tests/test_setup_command.py +144 -0
  792. oara_prometheus-0.9.0/tests/test_setup_deadends.py +265 -0
  793. oara_prometheus-0.9.0/tests/test_setup_probe_url.py +112 -0
  794. oara_prometheus-0.9.0/tests/test_setup_server.py +336 -0
  795. oara_prometheus-0.9.0/tests/test_setup_wizard.py +448 -0
  796. oara_prometheus-0.9.0/tests/test_setup_wizard_refuses_unreadable_config.py +177 -0
  797. oara_prometheus-0.9.0/tests/test_shared_retry_loop.py +139 -0
  798. oara_prometheus-0.9.0/tests/test_signal_bus_persistence.py +529 -0
  799. oara_prometheus-0.9.0/tests/test_silent_failure_response_body.py +133 -0
  800. oara_prometheus-0.9.0/tests/test_skill_creator.py +585 -0
  801. oara_prometheus-0.9.0/tests/test_skill_creator_config_gate.py +182 -0
  802. oara_prometheus-0.9.0/tests/test_skill_drafts.py +173 -0
  803. oara_prometheus-0.9.0/tests/test_skill_scoring.py +137 -0
  804. oara_prometheus-0.9.0/tests/test_skill_search.py +166 -0
  805. oara_prometheus-0.9.0/tests/test_skills.py +301 -0
  806. oara_prometheus-0.9.0/tests/test_slack.py +955 -0
  807. oara_prometheus-0.9.0/tests/test_slash_command_handlers.py +285 -0
  808. oara_prometheus-0.9.0/tests/test_smoke_declares_its_tree.py +173 -0
  809. oara_prometheus-0.9.0/tests/test_smoke_import_does_not_exit.py +135 -0
  810. oara_prometheus-0.9.0/tests/test_smoke_runner_retry.py +120 -0
  811. oara_prometheus-0.9.0/tests/test_spawn_key_not_persisted.py +348 -0
  812. oara_prometheus-0.9.0/tests/test_static_mount_websocket.py +112 -0
  813. oara_prometheus-0.9.0/tests/test_status_identity.py +56 -0
  814. oara_prometheus-0.9.0/tests/test_status_iteration_ceilings.py +148 -0
  815. oara_prometheus-0.9.0/tests/test_status_live_state.py +53 -0
  816. oara_prometheus-0.9.0/tests/test_status_reports_the_checkout.py +86 -0
  817. oara_prometheus-0.9.0/tests/test_steer_and_queue.py +395 -0
  818. oara_prometheus-0.9.0/tests/test_sticker_cache.py +45 -0
  819. oara_prometheus-0.9.0/tests/test_stream_markup_filter.py +269 -0
  820. oara_prometheus-0.9.0/tests/test_stream_usage_accounting.py +46 -0
  821. oara_prometheus-0.9.0/tests/test_strict_query_params.py +129 -0
  822. oara_prometheus-0.9.0/tests/test_strip_disagreement_is_counted.py +216 -0
  823. oara_prometheus-0.9.0/tests/test_structured_errors.py +63 -0
  824. oara_prometheus-0.9.0/tests/test_suite_collects_without_the_web_extra.py +216 -0
  825. oara_prometheus-0.9.0/tests/test_suppress_thinking_config.py +86 -0
  826. oara_prometheus-0.9.0/tests/test_symbiote_coordinator.py +337 -0
  827. oara_prometheus-0.9.0/tests/test_system_prompt_tool_names.py +129 -0
  828. oara_prometheus-0.9.0/tests/test_tailnet_hop_asymmetry.py +237 -0
  829. oara_prometheus-0.9.0/tests/test_tasks.py +249 -0
  830. oara_prometheus-0.9.0/tests/test_telegram_command_auth.py +149 -0
  831. oara_prometheus-0.9.0/tests/test_telegram_network_timeouts.py +55 -0
  832. oara_prometheus-0.9.0/tests/test_telegram_surface_hardening.py +400 -0
  833. oara_prometheus-0.9.0/tests/test_telegram_typing.py +102 -0
  834. oara_prometheus-0.9.0/tests/test_telemetry.py +167 -0
  835. oara_prometheus-0.9.0/tests/test_telemetry_dashboard.py +341 -0
  836. oara_prometheus-0.9.0/tests/test_telemetry_schema_meta.py +144 -0
  837. oara_prometheus-0.9.0/tests/test_telemetry_wal.py +215 -0
  838. oara_prometheus-0.9.0/tests/test_telemetry_wiring.py +305 -0
  839. oara_prometheus-0.9.0/tests/test_template_key_placement.py +104 -0
  840. oara_prometheus-0.9.0/tests/test_template_packaging.py +290 -0
  841. oara_prometheus-0.9.0/tests/test_thinking_blocks.py +214 -0
  842. oara_prometheus-0.9.0/tests/test_thinking_suppression_probe.py +180 -0
  843. oara_prometheus-0.9.0/tests/test_token_rotation_auth_path.py +172 -0
  844. oara_prometheus-0.9.0/tests/test_tool_advertisement.py +272 -0
  845. oara_prometheus-0.9.0/tests/test_tool_calls_join_to_lcm.py +175 -0
  846. oara_prometheus-0.9.0/tests/test_tool_choice_unit.py +69 -0
  847. oara_prometheus-0.9.0/tests/test_tool_error_detail.py +80 -0
  848. oara_prometheus-0.9.0/tests/test_tool_name_convention.py +101 -0
  849. oara_prometheus-0.9.0/tests/test_tool_registration.py +300 -0
  850. oara_prometheus-0.9.0/tests/test_tool_search.py +259 -0
  851. oara_prometheus-0.9.0/tests/test_tools.py +406 -0
  852. oara_prometheus-0.9.0/tests/test_training_pairs.py +392 -0
  853. oara_prometheus-0.9.0/tests/test_transition_taxonomy.py +108 -0
  854. oara_prometheus-0.9.0/tests/test_trim_advances_turn_offset.py +235 -0
  855. oara_prometheus-0.9.0/tests/test_tripwire.py +245 -0
  856. oara_prometheus-0.9.0/tests/test_truncation_contract.py +179 -0
  857. oara_prometheus-0.9.0/tests/test_turn_completed_every_origin.py +160 -0
  858. oara_prometheus-0.9.0/tests/test_turn_errors.py +198 -0
  859. oara_prometheus-0.9.0/tests/test_turn_exit_tool_result_invariant.py +237 -0
  860. oara_prometheus-0.9.0/tests/test_typo_answers_immediately.py +124 -0
  861. oara_prometheus-0.9.0/tests/test_unbuildable_override_is_not_active.py +174 -0
  862. oara_prometheus-0.9.0/tests/test_unwrap.py +246 -0
  863. oara_prometheus-0.9.0/tests/test_url_guard.py +429 -0
  864. oara_prometheus-0.9.0/tests/test_vault_marker.py +281 -0
  865. oara_prometheus-0.9.0/tests/test_vault_tools.py +937 -0
  866. oara_prometheus-0.9.0/tests/test_vibe_check.py +470 -0
  867. oara_prometheus-0.9.0/tests/test_video_generate.py +509 -0
  868. oara_prometheus-0.9.0/tests/test_video_ingest.py +615 -0
  869. oara_prometheus-0.9.0/tests/test_vision.py +56 -0
  870. oara_prometheus-0.9.0/tests/test_vision_detect.py +124 -0
  871. oara_prometheus-0.9.0/tests/test_watch_dir_gated.py +266 -0
  872. oara_prometheus-0.9.0/tests/test_web_audit.py +246 -0
  873. oara_prometheus-0.9.0/tests/test_web_bridge_loop_parity.py +481 -0
  874. oara_prometheus-0.9.0/tests/test_web_command_parity.py +213 -0
  875. oara_prometheus-0.9.0/tests/test_web_context_limit_resolution.py +220 -0
  876. oara_prometheus-0.9.0/tests/test_web_health.py +32 -0
  877. oara_prometheus-0.9.0/tests/test_web_refused_gates_launch.py +92 -0
  878. oara_prometheus-0.9.0/tests/test_web_slash_router.py +326 -0
  879. oara_prometheus-0.9.0/tests/test_web_tools.py +523 -0
  880. oara_prometheus-0.9.0/tests/test_web_turn_discard_on_failure.py +230 -0
  881. oara_prometheus-0.9.0/tests/test_whisper_stt.py +68 -0
  882. oara_prometheus-0.9.0/tests/test_wiki.py +730 -0
  883. oara_prometheus-0.9.0/tests/test_wiki_root_resolution.py +319 -0
  884. oara_prometheus-0.9.0/tests/test_wiki_tools_registered.py +70 -0
  885. oara_prometheus-0.9.0/tests/test_wire_contract.py +280 -0
  886. oara_prometheus-0.9.0/tests/test_wiring.py +8065 -0
  887. oara_prometheus-0.9.0/tests/test_write_boundary_is_a_property.py +475 -0
  888. oara_prometheus-0.9.0/tests/test_ws_auth.py +184 -0
  889. oara_prometheus-0.9.0/tests/test_ws_broadcast_drop_visibility.py +144 -0
  890. oara_prometheus-0.9.0/tests/test_ws_broadcast_snapshot.py +208 -0
  891. oara_prometheus-0.9.0/tests/test_ws_frame_size.py +116 -0
  892. oara_prometheus-0.9.0/tests/test_ws_interrupt.py +276 -0
  893. oara_prometheus-0.9.0/tests/test_ws_progress_frames.py +337 -0
  894. oara_prometheus-0.9.0/tests/test_ws_send_client_msg_id.py +115 -0
  895. oara_prometheus-0.9.0/tests/test_ws_session_filter.py +149 -0
  896. oara_prometheus-0.9.0/tests/test_ws_turn_lock.py +160 -0
  897. oara_prometheus-0.9.0/tests/test_xai_oauth.py +450 -0
@@ -0,0 +1,80 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+ *.so
6
+ *.egg
7
+ *.egg-info/
8
+ dist/
9
+ build/
10
+ .eggs/
11
+ *.whl
12
+
13
+ # uv / venv
14
+ .venv/
15
+ venv/
16
+ .uv/
17
+
18
+ # Testing
19
+ .pytest_cache/
20
+ .coverage
21
+ htmlcov/
22
+ .tox/
23
+
24
+ # IDEs
25
+ .vscode/
26
+ .idea/
27
+ *.swp
28
+ *.swo
29
+
30
+ # OS
31
+ .DS_Store
32
+ Thumbs.db
33
+
34
+ # Prometheus runtime
35
+ .prometheus/
36
+ *.log
37
+ *.sqlite
38
+ *.db
39
+
40
+ # Secrets
41
+ .env
42
+ .env.*
43
+ !.env.example
44
+ config/secrets.yaml
45
+ config/prometheus.yaml
46
+
47
+ # Benchmarks output
48
+ benchmarks/results/
49
+
50
+ # Personal config backups and local overrides
51
+ *.bak
52
+ *.bak.*
53
+ config/*.local.yaml
54
+ # Secret-bearing config backups (e.g. prometheus.yaml.backup-*) — never commit.
55
+ config/*.backup*
56
+
57
+ # Local data / scratch at repo root (never commit — PII + large artifacts).
58
+ # The pre-commit hook only blocks IPs/hostnames, so a blanket `git add -A`
59
+ # could otherwise leak these. No CSV/SRT is tracked anywhere in the repo, so
60
+ # these globs shadow nothing in the tree; a genuinely-needed data file can
61
+ # still be force-added with `git add -f`.
62
+ *.csv
63
+ *.srt
64
+ /Creatrix/
65
+ /wiki/
66
+
67
+ # Loose audit / findings / sprint reports dropped at the repo root.
68
+ # Root-anchored so they never shadow tracked docs or source elsewhere.
69
+ /AUDIT-*.md
70
+ /FINDINGS-*.md
71
+ /MEMORY-AUDIT-*.md
72
+ /SPRINT-CLOSEOUT-*.md
73
+
74
+ # Per-session git worktrees (PROMETHEUS.md "Three trees"). This rule lived in
75
+ # `.git/info/exclude` until 2026-08-15, which is per-clone and untracked — git
76
+ # honoured it, `hatchling` did not, and no other clone had it, so eleven full
77
+ # repo copies rode into the sdist. Anything that decides what a release
78
+ # artifact contains belongs in version control, where every clone and every
79
+ # tool sees the same answer.
80
+ .claude/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 OAra Labs
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,15 @@
1
+ Prometheus — Copyright (c) 2026 OAra Labs. MIT License.
2
+
3
+ This project includes code adapted from other MIT-licensed projects. The
4
+ attribution travels with the code rather than being restated here: every
5
+ adapted file carries a provenance header naming its upstream source, the
6
+ original path, the license, and what was changed.
7
+
8
+
9
+ ================================================================================
10
+ Design influences (no code copied)
11
+ ================================================================================
12
+
13
+ OpenCode and Claude Code (LSP integration patterns), Odysseus (teacher-
14
+ escalation design), anthropics/skills (dashboard patterns), and Andrej
15
+ Karpathy's LLM Wiki concept.