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.
- oara_prometheus-0.9.0/.gitignore +80 -0
- oara_prometheus-0.9.0/LICENSE +21 -0
- oara_prometheus-0.9.0/NOTICE +15 -0
- oara_prometheus-0.9.0/PKG-INFO +727 -0
- oara_prometheus-0.9.0/README.md +658 -0
- oara_prometheus-0.9.0/config/model_registry.yaml +280 -0
- oara_prometheus-0.9.0/config/obsidian/graph.json +30 -0
- oara_prometheus-0.9.0/config/prometheus.yaml.default +1345 -0
- oara_prometheus-0.9.0/packaging/prometheus.service +30 -0
- oara_prometheus-0.9.0/pyproject.toml +247 -0
- oara_prometheus-0.9.0/src/prometheus/__init__.py +4 -0
- oara_prometheus-0.9.0/src/prometheus/__main__.py +1829 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/__init__.py +300 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/enforcer.py +342 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/formatter.py +349 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/markup_guard.py +115 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/retry.py +139 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/unwrap.py +110 -0
- oara_prometheus-0.9.0/src/prometheus/adapter/validator.py +391 -0
- oara_prometheus-0.9.0/src/prometheus/api/__init__.py +0 -0
- oara_prometheus-0.9.0/src/prometheus/api/tool_choice.py +69 -0
- oara_prometheus-0.9.0/src/prometheus/api/turn_errors.py +323 -0
- oara_prometheus-0.9.0/src/prometheus/benchmarks/__init__.py +19 -0
- oara_prometheus-0.9.0/src/prometheus/benchmarks/__main__.py +18 -0
- oara_prometheus-0.9.0/src/prometheus/benchmarks/runner.py +344 -0
- oara_prometheus-0.9.0/src/prometheus/benchmarks/suite.py +442 -0
- oara_prometheus-0.9.0/src/prometheus/checkpoints/__init__.py +7 -0
- oara_prometheus-0.9.0/src/prometheus/checkpoints/store.py +368 -0
- oara_prometheus-0.9.0/src/prometheus/cli/__init__.py +0 -0
- oara_prometheus-0.9.0/src/prometheus/cli/bakeoff.py +181 -0
- oara_prometheus-0.9.0/src/prometheus/cli/doctor.py +1069 -0
- oara_prometheus-0.9.0/src/prometheus/cli/generate_identity.py +296 -0
- oara_prometheus-0.9.0/src/prometheus/cli/ingest_video.py +97 -0
- oara_prometheus-0.9.0/src/prometheus/cli/init.py +884 -0
- oara_prometheus-0.9.0/src/prometheus/cli/migrate.py +708 -0
- oara_prometheus-0.9.0/src/prometheus/cli/retention.py +57 -0
- oara_prometheus-0.9.0/src/prometheus/cli/service.py +184 -0
- oara_prometheus-0.9.0/src/prometheus/cli/setup.py +126 -0
- oara_prometheus-0.9.0/src/prometheus/cli/token.py +77 -0
- oara_prometheus-0.9.0/src/prometheus/cli/voice.py +353 -0
- oara_prometheus-0.9.0/src/prometheus/coding/__init__.py +43 -0
- oara_prometheus-0.9.0/src/prometheus/coding/control.py +162 -0
- oara_prometheus-0.9.0/src/prometheus/coding/livestream.py +380 -0
- oara_prometheus-0.9.0/src/prometheus/coding/managed.py +116 -0
- oara_prometheus-0.9.0/src/prometheus/coding/policy.py +180 -0
- oara_prometheus-0.9.0/src/prometheus/coding/sandbox.py +1215 -0
- oara_prometheus-0.9.0/src/prometheus/coding/session.py +553 -0
- oara_prometheus-0.9.0/src/prometheus/coding/tools.py +490 -0
- oara_prometheus-0.9.0/src/prometheus/computer/__init__.py +28 -0
- oara_prometheus-0.9.0/src/prometheus/computer/actions.py +240 -0
- oara_prometheus-0.9.0/src/prometheus/computer/candidates.py +198 -0
- oara_prometheus-0.9.0/src/prometheus/computer/chooser.py +124 -0
- oara_prometheus-0.9.0/src/prometheus/computer/cua.py +473 -0
- oara_prometheus-0.9.0/src/prometheus/computer/driver.py +468 -0
- oara_prometheus-0.9.0/src/prometheus/computer/loop.py +282 -0
- oara_prometheus-0.9.0/src/prometheus/computer/status.py +207 -0
- oara_prometheus-0.9.0/src/prometheus/computer/targets.py +168 -0
- oara_prometheus-0.9.0/src/prometheus/computer/tools.py +186 -0
- oara_prometheus-0.9.0/src/prometheus/computer/types.py +149 -0
- oara_prometheus-0.9.0/src/prometheus/config/__init__.py +1 -0
- oara_prometheus-0.9.0/src/prometheus/config/api_token.py +319 -0
- oara_prometheus-0.9.0/src/prometheus/config/defaults.py +119 -0
- oara_prometheus-0.9.0/src/prometheus/config/device_store.py +306 -0
- oara_prometheus-0.9.0/src/prometheus/config/divergence.py +321 -0
- oara_prometheus-0.9.0/src/prometheus/config/env_file.py +122 -0
- oara_prometheus-0.9.0/src/prometheus/config/env_override.py +190 -0
- oara_prometheus-0.9.0/src/prometheus/config/ephemeral.py +153 -0
- oara_prometheus-0.9.0/src/prometheus/config/load.py +352 -0
- oara_prometheus-0.9.0/src/prometheus/config/node_identity.py +150 -0
- oara_prometheus-0.9.0/src/prometheus/config/paths.py +449 -0
- oara_prometheus-0.9.0/src/prometheus/config/profiles.py +276 -0
- oara_prometheus-0.9.0/src/prometheus/config/shipped_defaults.py +346 -0
- oara_prometheus-0.9.0/src/prometheus/config/template.py +84 -0
- oara_prometheus-0.9.0/src/prometheus/config/vault_marker.py +294 -0
- oara_prometheus-0.9.0/src/prometheus/context/__init__.py +33 -0
- oara_prometheus-0.9.0/src/prometheus/context/budget.py +323 -0
- oara_prometheus-0.9.0/src/prometheus/context/compactor.py +793 -0
- oara_prometheus-0.9.0/src/prometheus/context/compression.py +307 -0
- oara_prometheus-0.9.0/src/prometheus/context/dynamic_tools.py +323 -0
- oara_prometheus-0.9.0/src/prometheus/context/environment.py +471 -0
- oara_prometheus-0.9.0/src/prometheus/context/origin_fetch.py +301 -0
- oara_prometheus-0.9.0/src/prometheus/context/prometheusmd.py +207 -0
- oara_prometheus-0.9.0/src/prometheus/context/prompt_assembler.py +378 -0
- oara_prometheus-0.9.0/src/prometheus/context/system_prompt.py +287 -0
- oara_prometheus-0.9.0/src/prometheus/context/token_estimation.py +54 -0
- oara_prometheus-0.9.0/src/prometheus/context/truncation.py +166 -0
- oara_prometheus-0.9.0/src/prometheus/context/workspace.py +69 -0
- oara_prometheus-0.9.0/src/prometheus/coordinator/__init__.py +49 -0
- oara_prometheus-0.9.0/src/prometheus/coordinator/agent_definitions.py +83 -0
- oara_prometheus-0.9.0/src/prometheus/coordinator/coordinator_mode.py +104 -0
- oara_prometheus-0.9.0/src/prometheus/coordinator/divergence.py +832 -0
- oara_prometheus-0.9.0/src/prometheus/coordinator/health.py +321 -0
- oara_prometheus-0.9.0/src/prometheus/coordinator/subagent.py +167 -0
- oara_prometheus-0.9.0/src/prometheus/daemon.py +2839 -0
- oara_prometheus-0.9.0/src/prometheus/documents/__init__.py +25 -0
- oara_prometheus-0.9.0/src/prometheus/documents/ai.py +112 -0
- oara_prometheus-0.9.0/src/prometheus/documents/service.py +333 -0
- oara_prometheus-0.9.0/src/prometheus/engine/__init__.py +52 -0
- oara_prometheus-0.9.0/src/prometheus/engine/agent_loop.py +4965 -0
- oara_prometheus-0.9.0/src/prometheus/engine/cost_tracker.py +29 -0
- oara_prometheus-0.9.0/src/prometheus/engine/fallback.py +376 -0
- oara_prometheus-0.9.0/src/prometheus/engine/honesty.py +120 -0
- oara_prometheus-0.9.0/src/prometheus/engine/loop_watchdog.py +130 -0
- oara_prometheus-0.9.0/src/prometheus/engine/messages.py +499 -0
- oara_prometheus-0.9.0/src/prometheus/engine/session.py +910 -0
- oara_prometheus-0.9.0/src/prometheus/engine/session_titles.py +246 -0
- oara_prometheus-0.9.0/src/prometheus/engine/stream_events.py +80 -0
- oara_prometheus-0.9.0/src/prometheus/engine/usage.py +49 -0
- oara_prometheus-0.9.0/src/prometheus/escalation/__init__.py +19 -0
- oara_prometheus-0.9.0/src/prometheus/escalation/detector.py +219 -0
- oara_prometheus-0.9.0/src/prometheus/escalation/teacher.py +699 -0
- oara_prometheus-0.9.0/src/prometheus/evals/__init__.py +41 -0
- oara_prometheus-0.9.0/src/prometheus/evals/classifier.py +234 -0
- oara_prometheus-0.9.0/src/prometheus/evals/golden_dataset.py +316 -0
- oara_prometheus-0.9.0/src/prometheus/evals/judge.py +415 -0
- oara_prometheus-0.9.0/src/prometheus/evals/metrics.py +207 -0
- oara_prometheus-0.9.0/src/prometheus/evals/runner.py +451 -0
- oara_prometheus-0.9.0/src/prometheus/evals/trends.py +128 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/__init__.py +44 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/archive_writer.py +70 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/commands.py +4259 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/config.py +168 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/cron_scheduler.py +849 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/cron_service.py +191 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/discord.py +1768 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/guards.py +157 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/heartbeat.py +439 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/image_prep.py +151 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/media_cache.py +304 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/media_guard.py +316 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/media_services.py +176 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/paperclip.py +433 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/platform_base.py +181 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/rate_limit.py +161 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/slack.py +1646 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/status.py +109 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/sticker_cache.py +89 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/telegram.py +3482 -0
- oara_prometheus-0.9.0/src/prometheus/gateway/telegram_network.py +44 -0
- oara_prometheus-0.9.0/src/prometheus/gym/__init__.py +26 -0
- oara_prometheus-0.9.0/src/prometheus/gym/corpus.py +211 -0
- oara_prometheus-0.9.0/src/prometheus/gym/dictwrap_specialist.py +137 -0
- oara_prometheus-0.9.0/src/prometheus/gym/harvest.py +59 -0
- oara_prometheus-0.9.0/src/prometheus/gym/manifest.py +115 -0
- oara_prometheus-0.9.0/src/prometheus/gym/report.py +242 -0
- oara_prometheus-0.9.0/src/prometheus/gym/runner.py +573 -0
- oara_prometheus-0.9.0/src/prometheus/gym/scoring.py +285 -0
- oara_prometheus-0.9.0/src/prometheus/gym/store.py +116 -0
- oara_prometheus-0.9.0/src/prometheus/gym/tasks.py +123 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/__init__.py +29 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/events.py +19 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/executor.py +303 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/file_mutation_verifier.py +1372 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/hot_reload.py +103 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/loader.py +86 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/lsp_diagnostics.py +87 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/registry.py +34 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/schemas.py +63 -0
- oara_prometheus-0.9.0/src/prometheus/hooks/types.py +43 -0
- oara_prometheus-0.9.0/src/prometheus/infra/__init__.py +1 -0
- oara_prometheus-0.9.0/src/prometheus/infra/anatomy.py +705 -0
- oara_prometheus-0.9.0/src/prometheus/infra/anatomy_writer.py +332 -0
- oara_prometheus-0.9.0/src/prometheus/infra/doctor.py +511 -0
- oara_prometheus-0.9.0/src/prometheus/infra/project_configs.py +160 -0
- oara_prometheus-0.9.0/src/prometheus/jobs/__init__.py +6 -0
- oara_prometheus-0.9.0/src/prometheus/jobs/daily_briefing.py +235 -0
- oara_prometheus-0.9.0/src/prometheus/jobs/db_snapshot.py +535 -0
- oara_prometheus-0.9.0/src/prometheus/kanban/__init__.py +22 -0
- oara_prometheus-0.9.0/src/prometheus/kanban/store.py +320 -0
- oara_prometheus-0.9.0/src/prometheus/learning/__init__.py +15 -0
- oara_prometheus-0.9.0/src/prometheus/learning/curator.py +940 -0
- oara_prometheus-0.9.0/src/prometheus/learning/gepa.py +587 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/__init__.py +21 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/event_processor.py +203 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/event_to_actions.py +271 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/quality_gate.py +257 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/service.py +228 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/step_verifier.py +190 -0
- oara_prometheus-0.9.0/src/prometheus/learning/live_recorder/synthesizer.py +199 -0
- oara_prometheus-0.9.0/src/prometheus/learning/llm_envelope.py +635 -0
- oara_prometheus-0.9.0/src/prometheus/learning/nudge.py +122 -0
- oara_prometheus-0.9.0/src/prometheus/learning/pair_capture.py +320 -0
- oara_prometheus-0.9.0/src/prometheus/learning/skill_creator.py +555 -0
- oara_prometheus-0.9.0/src/prometheus/learning/skill_drafts.py +262 -0
- oara_prometheus-0.9.0/src/prometheus/learning/skill_refiner.py +315 -0
- oara_prometheus-0.9.0/src/prometheus/learning/skill_scoring.py +188 -0
- oara_prometheus-0.9.0/src/prometheus/learning/skill_state.py +289 -0
- oara_prometheus-0.9.0/src/prometheus/learning/transition_taxonomy.py +93 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/__init__.py +28 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/action_extractor.py +162 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/funnel.py +95 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/ingest.py +294 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/keyframes.py +272 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/pipeline.py +235 -0
- oara_prometheus-0.9.0/src/prometheus/learning/video_ingest/vision_digest.py +614 -0
- oara_prometheus-0.9.0/src/prometheus/lsp/__init__.py +17 -0
- oara_prometheus-0.9.0/src/prometheus/lsp/client.py +635 -0
- oara_prometheus-0.9.0/src/prometheus/lsp/languages.py +138 -0
- oara_prometheus-0.9.0/src/prometheus/lsp/orchestrator.py +246 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/__init__.py +38 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/adapter.py +168 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/bootstrap.py +135 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/names.py +64 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/runtime.py +405 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/store.py +318 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/transport.py +180 -0
- oara_prometheus-0.9.0/src/prometheus/mcp/types.py +119 -0
- oara_prometheus-0.9.0/src/prometheus/memory/__init__.py +45 -0
- oara_prometheus-0.9.0/src/prometheus/memory/entity_validation.py +162 -0
- oara_prometheus-0.9.0/src/prometheus/memory/extractor.py +679 -0
- oara_prometheus-0.9.0/src/prometheus/memory/hermes_memory_tool.py +398 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_assembler.py +165 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_compaction.py +217 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_conversation_store.py +1212 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_engine.py +457 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_fts5.py +58 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_summarize.py +228 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_summary_store.py +435 -0
- oara_prometheus-0.9.0/src/prometheus/memory/lcm_types.py +123 -0
- oara_prometheus-0.9.0/src/prometheus/memory/pointer.py +149 -0
- oara_prometheus-0.9.0/src/prometheus/memory/recall.py +199 -0
- oara_prometheus-0.9.0/src/prometheus/memory/retention.py +137 -0
- oara_prometheus-0.9.0/src/prometheus/memory/session_kind.py +35 -0
- oara_prometheus-0.9.0/src/prometheus/memory/store.py +825 -0
- oara_prometheus-0.9.0/src/prometheus/memory/wiki_compiler.py +439 -0
- oara_prometheus-0.9.0/src/prometheus/packs/__init__.py +5 -0
- oara_prometheus-0.9.0/src/prometheus/packs/loader.py +367 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/__init__.py +20 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/approval_queue.py +781 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/argument_view.py +146 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/audit.py +328 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/checker.py +1713 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/computer_extent.py +225 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/computer_schema.py +251 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/confinement.py +625 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/exfiltration.py +171 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/modes.py +28 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/path_schema.py +149 -0
- oara_prometheus-0.9.0/src/prometheus/permissions/tool_paths.py +278 -0
- oara_prometheus-0.9.0/src/prometheus/providers/__init__.py +17 -0
- oara_prometheus-0.9.0/src/prometheus/providers/anthropic.py +506 -0
- oara_prometheus-0.9.0/src/prometheus/providers/backends.py +623 -0
- oara_prometheus-0.9.0/src/prometheus/providers/base.py +92 -0
- oara_prometheus-0.9.0/src/prometheus/providers/credential_pool.py +125 -0
- oara_prometheus-0.9.0/src/prometheus/providers/credentials.py +78 -0
- oara_prometheus-0.9.0/src/prometheus/providers/key_catalog.py +141 -0
- oara_prometheus-0.9.0/src/prometheus/providers/llama_cpp.py +935 -0
- oara_prometheus-0.9.0/src/prometheus/providers/ollama.py +204 -0
- oara_prometheus-0.9.0/src/prometheus/providers/openai_compat.py +402 -0
- oara_prometheus-0.9.0/src/prometheus/providers/registry.py +478 -0
- oara_prometheus-0.9.0/src/prometheus/providers/retry.py +95 -0
- oara_prometheus-0.9.0/src/prometheus/providers/stub.py +433 -0
- oara_prometheus-0.9.0/src/prometheus/providers/xai_oauth.py +276 -0
- oara_prometheus-0.9.0/src/prometheus/push/__init__.py +1 -0
- oara_prometheus-0.9.0/src/prometheus/push/apns.py +155 -0
- oara_prometheus-0.9.0/src/prometheus/push/dispatcher.py +266 -0
- oara_prometheus-0.9.0/src/prometheus/router/__init__.py +29 -0
- oara_prometheus-0.9.0/src/prometheus/router/model_router.py +1252 -0
- oara_prometheus-0.9.0/src/prometheus/security/__init__.py +60 -0
- oara_prometheus-0.9.0/src/prometheus/security/code_scanner.py +305 -0
- oara_prometheus-0.9.0/src/prometheus/security/env_scrub.py +135 -0
- oara_prometheus-0.9.0/src/prometheus/security/log_redaction.py +216 -0
- oara_prometheus-0.9.0/src/prometheus/security/path_guard.py +169 -0
- oara_prometheus-0.9.0/src/prometheus/security/url_guard.py +474 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/__init__.py +13 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/autodream.py +295 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/gepa_engine.py +146 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/golden_trace_exporter.py +321 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/knowledge_synth.py +322 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/memory_consolidator.py +143 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/observer.py +178 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/signals.py +255 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/telemetry_digest.py +201 -0
- oara_prometheus-0.9.0/src/prometheus/sentinel/wiki_lint.py +440 -0
- oara_prometheus-0.9.0/src/prometheus/setup_wizard.py +1465 -0
- oara_prometheus-0.9.0/src/prometheus/skills/__init__.py +19 -0
- oara_prometheus-0.9.0/src/prometheus/skills/builtin/__init__.py +1 -0
- oara_prometheus-0.9.0/src/prometheus/skills/builtin/commit.md +30 -0
- oara_prometheus-0.9.0/src/prometheus/skills/builtin/debug.md +40 -0
- oara_prometheus-0.9.0/src/prometheus/skills/builtin/plan.md +43 -0
- oara_prometheus-0.9.0/src/prometheus/skills/loader.py +231 -0
- oara_prometheus-0.9.0/src/prometheus/skills/registry.py +64 -0
- oara_prometheus-0.9.0/src/prometheus/skills/types.py +17 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/__init__.py +53 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/backup_vault.py +746 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/code_scanner.py +24 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/coordinator.py +676 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/github_search.py +384 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/graft.py +432 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/harvest.py +786 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/license_gate.py +342 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/morph.py +830 -0
- oara_prometheus-0.9.0/src/prometheus/symbiote/scout.py +418 -0
- oara_prometheus-0.9.0/src/prometheus/tasks/__init__.py +24 -0
- oara_prometheus-0.9.0/src/prometheus/tasks/completion_handler.py +128 -0
- oara_prometheus-0.9.0/src/prometheus/tasks/manager.py +984 -0
- oara_prometheus-0.9.0/src/prometheus/tasks/store.py +206 -0
- oara_prometheus-0.9.0/src/prometheus/tasks/types.py +78 -0
- oara_prometheus-0.9.0/src/prometheus/tasks/watchers.py +156 -0
- oara_prometheus-0.9.0/src/prometheus/telemetry/__init__.py +6 -0
- oara_prometheus-0.9.0/src/prometheus/telemetry/cost.py +488 -0
- oara_prometheus-0.9.0/src/prometheus/telemetry/dashboard.py +241 -0
- oara_prometheus-0.9.0/src/prometheus/telemetry/db.py +71 -0
- oara_prometheus-0.9.0/src/prometheus/telemetry/latency.py +112 -0
- oara_prometheus-0.9.0/src/prometheus/telemetry/tracker.py +2183 -0
- oara_prometheus-0.9.0/src/prometheus/tools/__init__.py +24 -0
- oara_prometheus-0.9.0/src/prometheus/tools/base.py +139 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/__init__.py +79 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/agent.py +68 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/anatomy.py +141 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/ask_user.py +40 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/audit_query.py +75 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/bash.py +349 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/browser.py +315 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_create.py +119 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_delete.py +40 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_list.py +67 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/cron_nl.py +269 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/dashboard.py +216 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/download_file.py +299 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/file_edit.py +89 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/file_read.py +119 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/file_write.py +63 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/glob.py +93 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/grep.py +160 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/image_generate.py +991 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_describe.py +176 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_expand.py +124 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_expand_query.py +164 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/lcm_grep.py +155 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/lsp.py +215 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/mcp_status.py +77 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/message.py +228 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/notebook_edit.py +118 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/sentinel_status.py +116 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/sessions_list.py +48 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/sessions_send.py +40 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/sessions_spawn.py +56 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/skill.py +37 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_graft.py +78 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_harvest.py +80 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_scout.py +72 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/symbiote_status.py +62 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_create.py +215 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_get.py +47 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_list.py +40 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_output.py +37 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_stop.py +30 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/task_update.py +45 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/todo_write.py +66 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/tts.py +116 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/vault.py +752 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/video_generate.py +474 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/vision.py +156 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/web_fetch.py +333 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/web_search.py +132 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/whisper_stt.py +243 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/wiki_compile.py +80 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/wiki_lint_tool.py +79 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/wiki_query.py +196 -0
- oara_prometheus-0.9.0/src/prometheus/tools/builtin/youtube_transcript.py +304 -0
- oara_prometheus-0.9.0/src/prometheus/tools/denied_prune.py +119 -0
- oara_prometheus-0.9.0/src/prometheus/tools/printing_press.py +502 -0
- oara_prometheus-0.9.0/src/prometheus/tools/registration.py +139 -0
- oara_prometheus-0.9.0/src/prometheus/tools/tool_search.py +243 -0
- oara_prometheus-0.9.0/src/prometheus/tracing/__init__.py +18 -0
- oara_prometheus-0.9.0/src/prometheus/tracing/phoenix.py +120 -0
- oara_prometheus-0.9.0/src/prometheus/tracing/spans.py +56 -0
- oara_prometheus-0.9.0/src/prometheus/utils/__init__.py +0 -0
- oara_prometheus-0.9.0/src/prometheus/utils/file_extract.py +188 -0
- oara_prometheus-0.9.0/src/prometheus/utils/user_files.py +101 -0
- oara_prometheus-0.9.0/src/prometheus/web/__init__.py +1 -0
- oara_prometheus-0.9.0/src/prometheus/web/artifacts.py +108 -0
- oara_prometheus-0.9.0/src/prometheus/web/launcher.py +205 -0
- oara_prometheus-0.9.0/src/prometheus/web/openai_api.py +302 -0
- oara_prometheus-0.9.0/src/prometheus/web/references.py +343 -0
- oara_prometheus-0.9.0/src/prometheus/web/server.py +5587 -0
- oara_prometheus-0.9.0/src/prometheus/web/setup_server.py +922 -0
- oara_prometheus-0.9.0/src/prometheus/web/slash_router.py +182 -0
- oara_prometheus-0.9.0/src/prometheus/web/static/app.css +200 -0
- oara_prometheus-0.9.0/src/prometheus/web/static/app.js +491 -0
- oara_prometheus-0.9.0/src/prometheus/web/static/index.html +78 -0
- oara_prometheus-0.9.0/src/prometheus/web/strict_query.py +80 -0
- oara_prometheus-0.9.0/src/prometheus/web/ws_server.py +1782 -0
- oara_prometheus-0.9.0/templates/AGENTS.md.template +46 -0
- oara_prometheus-0.9.0/templates/SOUL.md.template +43 -0
- oara_prometheus-0.9.0/tests/__init__.py +0 -0
- oara_prometheus-0.9.0/tests/conftest.py +416 -0
- oara_prometheus-0.9.0/tests/fixtures/__init__.py +0 -0
- oara_prometheus-0.9.0/tests/fixtures/divergence_traces.py +118 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/neg_ambiguous_clarification.json +6 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/neg_error_with_retry_plan.json +8 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/neg_no_output_grep.json +8 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/neg_two_repeats.json +9 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/neg_unable_to_find.json +8 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/pos_breaker_terminal.json +10 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/pos_capability_denial.json +7 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/pos_clarification_stall.json +7 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/pos_empty_reply.json +9 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/pos_repetition.json +11 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/pos_unrecovered_error.json +9 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/teacher_reply_good.md +25 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/teacher_reply_missing_skill.md +5 -0
- oara_prometheus-0.9.0/tests/fixtures/escalation/teacher_reply_stalled.md +18 -0
- oara_prometheus-0.9.0/tests/fixtures/loop_envelope_prewrap_request.json +4 -0
- oara_prometheus-0.9.0/tests/support/__init__.py +1 -0
- oara_prometheus-0.9.0/tests/support/advertisement.py +154 -0
- oara_prometheus-0.9.0/tests/support/cloud_http.py +68 -0
- oara_prometheus-0.9.0/tests/support/config_defaults.py +299 -0
- oara_prometheus-0.9.0/tests/support/doubles.py +139 -0
- oara_prometheus-0.9.0/tests/support/gate_manifest.py +517 -0
- oara_prometheus-0.9.0/tests/support/plumbing_allowlist.py +20 -0
- oara_prometheus-0.9.0/tests/support/real_app.py +257 -0
- oara_prometheus-0.9.0/tests/test_a11y_bus_address.py +226 -0
- oara_prometheus-0.9.0/tests/test_absence_hostile_keys.py +458 -0
- oara_prometheus-0.9.0/tests/test_acceptance_real_path.py +171 -0
- oara_prometheus-0.9.0/tests/test_acceptance_repeat_detector.py +383 -0
- oara_prometheus-0.9.0/tests/test_adapter.py +479 -0
- oara_prometheus-0.9.0/tests/test_adapter_tiers.py +242 -0
- oara_prometheus-0.9.0/tests/test_adaptive_strictness.py +126 -0
- oara_prometheus-0.9.0/tests/test_advertisement_after_routing.py +225 -0
- oara_prometheus-0.9.0/tests/test_agent_loop_high_risk_swallows.py +274 -0
- oara_prometheus-0.9.0/tests/test_agent_loop_route_audit.py +158 -0
- oara_prometheus-0.9.0/tests/test_agent_loop_route_warning.py +163 -0
- oara_prometheus-0.9.0/tests/test_anatomy.py +934 -0
- oara_prometheus-0.9.0/tests/test_anatomy_tool_registered.py +142 -0
- oara_prometheus-0.9.0/tests/test_anthropic_stream_error.py +218 -0
- oara_prometheus-0.9.0/tests/test_api_approvals_expiry.py +162 -0
- oara_prometheus-0.9.0/tests/test_api_approve_reports_what_it_did.py +248 -0
- oara_prometheus-0.9.0/tests/test_api_artifacts.py +97 -0
- oara_prometheus-0.9.0/tests/test_api_backends.py +174 -0
- oara_prometheus-0.9.0/tests/test_api_chat_reaches_the_model.py +173 -0
- oara_prometheus-0.9.0/tests/test_api_chat_send.py +166 -0
- oara_prometheus-0.9.0/tests/test_api_code.py +760 -0
- oara_prometheus-0.9.0/tests/test_api_cron.py +91 -0
- oara_prometheus-0.9.0/tests/test_api_devices.py +302 -0
- oara_prometheus-0.9.0/tests/test_api_documents.py +162 -0
- oara_prometheus-0.9.0/tests/test_api_files.py +120 -0
- oara_prometheus-0.9.0/tests/test_api_files_security.py +103 -0
- oara_prometheus-0.9.0/tests/test_api_kanban.py +158 -0
- oara_prometheus-0.9.0/tests/test_api_kanban_security.py +89 -0
- oara_prometheus-0.9.0/tests/test_api_live_upload.py +171 -0
- oara_prometheus-0.9.0/tests/test_api_mcp_servers.py +497 -0
- oara_prometheus-0.9.0/tests/test_api_memory_write.py +93 -0
- oara_prometheus-0.9.0/tests/test_api_model_rest.py +161 -0
- oara_prometheus-0.9.0/tests/test_api_paperclip_wake.py +111 -0
- oara_prometheus-0.9.0/tests/test_api_profiles.py +52 -0
- oara_prometheus-0.9.0/tests/test_api_project_file.py +83 -0
- oara_prometheus-0.9.0/tests/test_api_provider_keys.py +284 -0
- oara_prometheus-0.9.0/tests/test_api_search.py +258 -0
- oara_prometheus-0.9.0/tests/test_api_session_delete.py +90 -0
- oara_prometheus-0.9.0/tests/test_api_session_fork.py +142 -0
- oara_prometheus-0.9.0/tests/test_api_session_gateway_stamp.py +134 -0
- oara_prometheus-0.9.0/tests/test_api_session_profile.py +120 -0
- oara_prometheus-0.9.0/tests/test_api_session_purge.py +104 -0
- oara_prometheus-0.9.0/tests/test_api_sessions_durable.py +188 -0
- oara_prometheus-0.9.0/tests/test_api_sessions_meta.py +95 -0
- oara_prometheus-0.9.0/tests/test_api_skill_drafts.py +244 -0
- oara_prometheus-0.9.0/tests/test_api_status_store_health.py +74 -0
- oara_prometheus-0.9.0/tests/test_api_tasks.py +274 -0
- oara_prometheus-0.9.0/tests/test_api_tools_deferred.py +198 -0
- oara_prometheus-0.9.0/tests/test_api_tools_recent.py +208 -0
- oara_prometheus-0.9.0/tests/test_api_usage.py +151 -0
- oara_prometheus-0.9.0/tests/test_api_video_ingest.py +115 -0
- oara_prometheus-0.9.0/tests/test_api_wiki_read.py +216 -0
- oara_prometheus-0.9.0/tests/test_apns_sender.py +124 -0
- oara_prometheus-0.9.0/tests/test_approval_grants.py +310 -0
- oara_prometheus-0.9.0/tests/test_approval_prompt_trim.py +192 -0
- oara_prometheus-0.9.0/tests/test_approval_push.py +189 -0
- oara_prometheus-0.9.0/tests/test_approval_push_fanout.py +215 -0
- oara_prometheus-0.9.0/tests/test_approval_queue.py +138 -0
- oara_prometheus-0.9.0/tests/test_approval_shows_arguments.py +186 -0
- oara_prometheus-0.9.0/tests/test_approve_reaches_the_operator.py +176 -0
- oara_prometheus-0.9.0/tests/test_at_references.py +528 -0
- oara_prometheus-0.9.0/tests/test_audit.py +202 -0
- oara_prometheus-0.9.0/tests/test_audit_reason_is_scrubbed.py +285 -0
- oara_prometheus-0.9.0/tests/test_autodream_does_not_stall_the_loop.py +115 -0
- oara_prometheus-0.9.0/tests/test_backend_consumers.py +140 -0
- oara_prometheus-0.9.0/tests/test_backend_registry.py +383 -0
- oara_prometheus-0.9.0/tests/test_backend_switching.py +386 -0
- oara_prometheus-0.9.0/tests/test_backfill_billing_mode_reporting.py +161 -0
- oara_prometheus-0.9.0/tests/test_backfill_titles.py +145 -0
- oara_prometheus-0.9.0/tests/test_backup_vault.py +324 -0
- oara_prometheus-0.9.0/tests/test_bash_confinement.py +519 -0
- oara_prometheus-0.9.0/tests/test_bash_env_scrub.py +204 -0
- oara_prometheus-0.9.0/tests/test_bash_floor_reporting.py +285 -0
- oara_prometheus-0.9.0/tests/test_bash_killpg_and_repeat_guard.py +151 -0
- oara_prometheus-0.9.0/tests/test_bash_write_floor.py +533 -0
- oara_prometheus-0.9.0/tests/test_beacon_api.py +460 -0
- oara_prometheus-0.9.0/tests/test_beacon_live_turn.py +180 -0
- oara_prometheus-0.9.0/tests/test_beacon_vision_upload.py +263 -0
- oara_prometheus-0.9.0/tests/test_benchmarks.py +462 -0
- oara_prometheus-0.9.0/tests/test_billing_mode_is_recorded.py +624 -0
- oara_prometheus-0.9.0/tests/test_boot_sha_staleness.py +140 -0
- oara_prometheus-0.9.0/tests/test_bootstrap.py +234 -0
- oara_prometheus-0.9.0/tests/test_boundary_escape_ends_the_turn.py +318 -0
- oara_prometheus-0.9.0/tests/test_browser_scheme_and_context.py +362 -0
- oara_prometheus-0.9.0/tests/test_bundled_frontend.py +335 -0
- oara_prometheus-0.9.0/tests/test_bwrap_sandbox.py +465 -0
- oara_prometheus-0.9.0/tests/test_capture_redaction.py +207 -0
- oara_prometheus-0.9.0/tests/test_chat_done_row_id.py +118 -0
- oara_prometheus-0.9.0/tests/test_classify_streamed_response.py +68 -0
- oara_prometheus-0.9.0/tests/test_clean_slate.py +120 -0
- oara_prometheus-0.9.0/tests/test_cli_init.py +318 -0
- oara_prometheus-0.9.0/tests/test_cli_logging.py +243 -0
- oara_prometheus-0.9.0/tests/test_cli_provider_registry.py +93 -0
- oara_prometheus-0.9.0/tests/test_client_msg_id_correlation.py +252 -0
- oara_prometheus-0.9.0/tests/test_cloud_expansion.py +594 -0
- oara_prometheus-0.9.0/tests/test_cloud_providers.py +931 -0
- oara_prometheus-0.9.0/tests/test_cloud_tool_choice_acceptance.py +113 -0
- oara_prometheus-0.9.0/tests/test_code_scanner.py +226 -0
- oara_prometheus-0.9.0/tests/test_coding_control.py +143 -0
- oara_prometheus-0.9.0/tests/test_coding_livestream.py +384 -0
- oara_prometheus-0.9.0/tests/test_coding_policy.py +103 -0
- oara_prometheus-0.9.0/tests/test_coding_restart_survival.py +157 -0
- oara_prometheus-0.9.0/tests/test_coding_sandbox.py +415 -0
- oara_prometheus-0.9.0/tests/test_coding_sandbox_lifecycle.py +228 -0
- oara_prometheus-0.9.0/tests/test_coding_session.py +410 -0
- oara_prometheus-0.9.0/tests/test_coding_supervise.py +320 -0
- oara_prometheus-0.9.0/tests/test_coding_thinking_control.py +105 -0
- oara_prometheus-0.9.0/tests/test_coding_tools.py +279 -0
- oara_prometheus-0.9.0/tests/test_compactor_anchor_is_per_session.py +199 -0
- oara_prometheus-0.9.0/tests/test_compactor_shared_session_key.py +179 -0
- oara_prometheus-0.9.0/tests/test_compression_upgrade.py +137 -0
- oara_prometheus-0.9.0/tests/test_computer_status_block.py +450 -0
- oara_prometheus-0.9.0/tests/test_computer_use_candidate_loop.py +319 -0
- oara_prometheus-0.9.0/tests/test_computer_use_consent_unit.py +276 -0
- oara_prometheus-0.9.0/tests/test_computer_use_gate_path.py +367 -0
- oara_prometheus-0.9.0/tests/test_computer_use_targets.py +143 -0
- oara_prometheus-0.9.0/tests/test_config_absence_rulings.py +289 -0
- oara_prometheus-0.9.0/tests/test_config_defaults_equality.py +296 -0
- oara_prometheus-0.9.0/tests/test_config_divergence.py +355 -0
- oara_prometheus-0.9.0/tests/test_config_drift.py +335 -0
- oara_prometheus-0.9.0/tests/test_config_env.py +183 -0
- oara_prometheus-0.9.0/tests/test_config_fallback_callers.py +472 -0
- oara_prometheus-0.9.0/tests/test_config_load_states.py +166 -0
- oara_prometheus-0.9.0/tests/test_config_path_resolution.py +239 -0
- oara_prometheus-0.9.0/tests/test_config_pins_no_disk_write.py +157 -0
- oara_prometheus-0.9.0/tests/test_config_pins_surfaces.py +231 -0
- oara_prometheus-0.9.0/tests/test_config_read_honesty_invariant.py +322 -0
- oara_prometheus-0.9.0/tests/test_connect_block.py +163 -0
- oara_prometheus-0.9.0/tests/test_consent_audit_timeout.py +264 -0
- oara_prometheus-0.9.0/tests/test_consent_grants.py +415 -0
- oara_prometheus-0.9.0/tests/test_console_script_name.py +74 -0
- oara_prometheus-0.9.0/tests/test_context.py +472 -0
- oara_prometheus-0.9.0/tests/test_context_compactor.py +524 -0
- oara_prometheus-0.9.0/tests/test_context_file_discovery_7s.py +197 -0
- oara_prometheus-0.9.0/tests/test_context_limit_invariant.py +412 -0
- oara_prometheus-0.9.0/tests/test_context_meter_truth.py +195 -0
- oara_prometheus-0.9.0/tests/test_context_preflight_refusal.py +176 -0
- oara_prometheus-0.9.0/tests/test_context_surface_agreement.py +213 -0
- oara_prometheus-0.9.0/tests/test_control_plane_dispatch.py +176 -0
- oara_prometheus-0.9.0/tests/test_coordinator.py +389 -0
- oara_prometheus-0.9.0/tests/test_cost.py +232 -0
- oara_prometheus-0.9.0/tests/test_cost_wiring.py +82 -0
- oara_prometheus-0.9.0/tests/test_credential_pool.py +82 -0
- oara_prometheus-0.9.0/tests/test_cron_cwd_gated.py +332 -0
- oara_prometheus-0.9.0/tests/test_cron_durability.py +69 -0
- oara_prometheus-0.9.0/tests/test_cron_failure_notify.py +126 -0
- oara_prometheus-0.9.0/tests/test_cron_gate_unconditional.py +225 -0
- oara_prometheus-0.9.0/tests/test_cron_nl.py +293 -0
- oara_prometheus-0.9.0/tests/test_cron_notify_delivery.py +268 -0
- oara_prometheus-0.9.0/tests/test_cron_occurrence_memory.py +216 -0
- oara_prometheus-0.9.0/tests/test_cron_security.py +96 -0
- oara_prometheus-0.9.0/tests/test_cron_service.py +62 -0
- oara_prometheus-0.9.0/tests/test_cron_tick_survives_persist_failure.py +165 -0
- oara_prometheus-0.9.0/tests/test_cross_result_budget.py +88 -0
- oara_prometheus-0.9.0/tests/test_cross_surface_turn_lock.py +253 -0
- oara_prometheus-0.9.0/tests/test_cua_adapter.py +394 -0
- oara_prometheus-0.9.0/tests/test_curator_escalation.py +372 -0
- oara_prometheus-0.9.0/tests/test_daemon_cloud_iteration_cap.py +119 -0
- oara_prometheus-0.9.0/tests/test_daemon_config_resolution.py +246 -0
- oara_prometheus-0.9.0/tests/test_daemon_shutdown.py +152 -0
- oara_prometheus-0.9.0/tests/test_daily_briefing.py +202 -0
- oara_prometheus-0.9.0/tests/test_dashboard_bind_is_operator_chosen.py +337 -0
- oara_prometheus-0.9.0/tests/test_db_snapshot.py +399 -0
- oara_prometheus-0.9.0/tests/test_deferred_loading.py +100 -0
- oara_prometheus-0.9.0/tests/test_deferred_put_keeps_comments.py +198 -0
- oara_prometheus-0.9.0/tests/test_deferred_tier_aware.py +305 -0
- oara_prometheus-0.9.0/tests/test_degrade_notice_in_history.py +292 -0
- oara_prometheus-0.9.0/tests/test_denied_paths_absence.py +266 -0
- oara_prometheus-0.9.0/tests/test_denied_paths_absolute.py +292 -0
- oara_prometheus-0.9.0/tests/test_denied_prune.py +269 -0
- oara_prometheus-0.9.0/tests/test_deploy_guard.py +419 -0
- oara_prometheus-0.9.0/tests/test_deployment_freshness.py +271 -0
- oara_prometheus-0.9.0/tests/test_dictwrap_specialist.py +75 -0
- oara_prometheus-0.9.0/tests/test_discord.py +935 -0
- oara_prometheus-0.9.0/tests/test_divergence.py +565 -0
- oara_prometheus-0.9.0/tests/test_divergence_aggregation.py +215 -0
- oara_prometheus-0.9.0/tests/test_dns_rebinding_pin.py +347 -0
- oara_prometheus-0.9.0/tests/test_doctor.py +817 -0
- oara_prometheus-0.9.0/tests/test_doctor_cli.py +562 -0
- oara_prometheus-0.9.0/tests/test_documents_ai.py +37 -0
- oara_prometheus-0.9.0/tests/test_documents_service.py +236 -0
- oara_prometheus-0.9.0/tests/test_download_file_traversal.py +258 -0
- oara_prometheus-0.9.0/tests/test_drift_alert_policy.py +193 -0
- oara_prometheus-0.9.0/tests/test_durable_message_id.py +96 -0
- oara_prometheus-0.9.0/tests/test_edit_file_uniqueness.py +73 -0
- oara_prometheus-0.9.0/tests/test_empty_response_guard.py +214 -0
- oara_prometheus-0.9.0/tests/test_engine.py +316 -0
- oara_prometheus-0.9.0/tests/test_entity_validation.py +123 -0
- oara_prometheus-0.9.0/tests/test_entry_points_do_not_run_on_import.py +91 -0
- oara_prometheus-0.9.0/tests/test_env_file.py +347 -0
- oara_prometheus-0.9.0/tests/test_envelope_model_label.py +175 -0
- oara_prometheus-0.9.0/tests/test_ephemeral_mode.py +761 -0
- oara_prometheus-0.9.0/tests/test_escalation_detector.py +218 -0
- oara_prometheus-0.9.0/tests/test_escalation_phase3.py +236 -0
- oara_prometheus-0.9.0/tests/test_escalation_teacher.py +313 -0
- oara_prometheus-0.9.0/tests/test_eval_judge_provenance.py +163 -0
- oara_prometheus-0.9.0/tests/test_evals.py +1105 -0
- oara_prometheus-0.9.0/tests/test_event_loop_not_blocked.py +128 -0
- oara_prometheus-0.9.0/tests/test_every_parameter_is_described.py +108 -0
- oara_prometheus-0.9.0/tests/test_exfiltration.py +158 -0
- oara_prometheus-0.9.0/tests/test_extractor_cursor.py +390 -0
- oara_prometheus-0.9.0/tests/test_extractor_hygiene.py +281 -0
- oara_prometheus-0.9.0/tests/test_extractor_provenance.py +90 -0
- oara_prometheus-0.9.0/tests/test_fallback_is_actually_wired.py +127 -0
- oara_prometheus-0.9.0/tests/test_file_checkpoints.py +224 -0
- oara_prometheus-0.9.0/tests/test_file_mutation_verifier.py +1617 -0
- oara_prometheus-0.9.0/tests/test_first_run_path.py +306 -0
- oara_prometheus-0.9.0/tests/test_floor_claim_honesty.py +235 -0
- oara_prometheus-0.9.0/tests/test_force_search_provider.py +147 -0
- oara_prometheus-0.9.0/tests/test_forcing_first_round.py +120 -0
- oara_prometheus-0.9.0/tests/test_gate_manifest.py +603 -0
- oara_prometheus-0.9.0/tests/test_gate_sees_the_path.py +502 -0
- oara_prometheus-0.9.0/tests/test_gate_toggle.py +102 -0
- oara_prometheus-0.9.0/tests/test_gateway.py +779 -0
- oara_prometheus-0.9.0/tests/test_gateway_absence_is_not_permission.py +298 -0
- oara_prometheus-0.9.0/tests/test_gateway_command_authz.py +585 -0
- oara_prometheus-0.9.0/tests/test_gateway_command_pins.py +495 -0
- oara_prometheus-0.9.0/tests/test_gateway_g1.py +483 -0
- oara_prometheus-0.9.0/tests/test_gateway_liveness.py +312 -0
- oara_prometheus-0.9.0/tests/test_gateway_media_pins.py +284 -0
- oara_prometheus-0.9.0/tests/test_gateway_parity.py +586 -0
- oara_prometheus-0.9.0/tests/test_generated_reference.py +280 -0
- oara_prometheus-0.9.0/tests/test_gepa.py +510 -0
- oara_prometheus-0.9.0/tests/test_github_search.py +111 -0
- oara_prometheus-0.9.0/tests/test_glob_tool.py +56 -0
- oara_prometheus-0.9.0/tests/test_golden_trace_namespace_guard.py +98 -0
- oara_prometheus-0.9.0/tests/test_graft.py +184 -0
- oara_prometheus-0.9.0/tests/test_grant_describe_intent.py +391 -0
- oara_prometheus-0.9.0/tests/test_grant_floor_invariant.py +224 -0
- oara_prometheus-0.9.0/tests/test_grep_tool.py +82 -0
- oara_prometheus-0.9.0/tests/test_gym.py +637 -0
- oara_prometheus-0.9.0/tests/test_gym_corpus.py +67 -0
- oara_prometheus-0.9.0/tests/test_gym_harvest.py +105 -0
- oara_prometheus-0.9.0/tests/test_harvest.py +207 -0
- oara_prometheus-0.9.0/tests/test_harvest_clone_allowlist.py +200 -0
- oara_prometheus-0.9.0/tests/test_health_command.py +206 -0
- oara_prometheus-0.9.0/tests/test_health_tool_registration_section.py +138 -0
- oara_prometheus-0.9.0/tests/test_heartbeat_notify.py +121 -0
- oara_prometheus-0.9.0/tests/test_history_append_only.py +253 -0
- oara_prometheus-0.9.0/tests/test_honest_async_promises.py +143 -0
- oara_prometheus-0.9.0/tests/test_honest_status_notes.py +607 -0
- oara_prometheus-0.9.0/tests/test_hook_command_injection.py +317 -0
- oara_prometheus-0.9.0/tests/test_hook_hot_reload.py +138 -0
- oara_prometheus-0.9.0/tests/test_hooks.py +235 -0
- oara_prometheus-0.9.0/tests/test_image_blocks_phase1.py +159 -0
- oara_prometheus-0.9.0/tests/test_image_blocks_phase1b.py +368 -0
- oara_prometheus-0.9.0/tests/test_image_blocks_phase2.py +269 -0
- oara_prometheus-0.9.0/tests/test_image_blocks_phase3a.py +93 -0
- oara_prometheus-0.9.0/tests/test_image_dashscope.py +341 -0
- oara_prometheus-0.9.0/tests/test_image_generate.py +132 -0
- oara_prometheus-0.9.0/tests/test_image_output_cannot_reach_daemon_state.py +129 -0
- oara_prometheus-0.9.0/tests/test_injected_turn_provenance_on_rest.py +114 -0
- oara_prometheus-0.9.0/tests/test_install_service.py +135 -0
- oara_prometheus-0.9.0/tests/test_judge_outage_is_not_a_pass.py +190 -0
- oara_prometheus-0.9.0/tests/test_knowledge_synth_dedup.py +124 -0
- oara_prometheus-0.9.0/tests/test_knowledge_synth_envelope.py +150 -0
- oara_prometheus-0.9.0/tests/test_kv_cache_provenance.py +241 -0
- oara_prometheus-0.9.0/tests/test_latency_average_excludes_unmeasured.py +105 -0
- oara_prometheus-0.9.0/tests/test_latency_says_unmeasured.py +730 -0
- oara_prometheus-0.9.0/tests/test_lcm.py +986 -0
- oara_prometheus-0.9.0/tests/test_lcm_db_path_resolution.py +527 -0
- oara_prometheus-0.9.0/tests/test_lcm_engine.py +46 -0
- oara_prometheus-0.9.0/tests/test_lcm_fts5_helpers.py +49 -0
- oara_prometheus-0.9.0/tests/test_lcm_purge_session.py +150 -0
- oara_prometheus-0.9.0/tests/test_lcm_segment_tokens.py +215 -0
- oara_prometheus-0.9.0/tests/test_lcm_structured_content.py +248 -0
- oara_prometheus-0.9.0/tests/test_lcm_tools_store_contract.py +205 -0
- oara_prometheus-0.9.0/tests/test_lcm_trust_tag.py +96 -0
- oara_prometheus-0.9.0/tests/test_lcm_wired_before_gateway_start.py +155 -0
- oara_prometheus-0.9.0/tests/test_learning.py +207 -0
- oara_prometheus-0.9.0/tests/test_license_gate.py +173 -0
- oara_prometheus-0.9.0/tests/test_live_recorder.py +267 -0
- oara_prometheus-0.9.0/tests/test_llama_cpp_suppress_thinking.py +176 -0
- oara_prometheus-0.9.0/tests/test_llm_envelope.py +301 -0
- oara_prometheus-0.9.0/tests/test_local_vision_wiring.py +217 -0
- oara_prometheus-0.9.0/tests/test_log_redaction.py +272 -0
- oara_prometheus-0.9.0/tests/test_log_rotation.py +86 -0
- oara_prometheus-0.9.0/tests/test_loop_context_is_not_shared.py +393 -0
- oara_prometheus-0.9.0/tests/test_loop_envelope.py +409 -0
- oara_prometheus-0.9.0/tests/test_loop_hardening_2.py +250 -0
- oara_prometheus-0.9.0/tests/test_loop_hardening_3.py +255 -0
- oara_prometheus-0.9.0/tests/test_loop_watchdog.py +175 -0
- oara_prometheus-0.9.0/tests/test_lsp_client.py +558 -0
- oara_prometheus-0.9.0/tests/test_lsp_diagnostics_hook.py +208 -0
- oara_prometheus-0.9.0/tests/test_lsp_orchestrator.py +266 -0
- oara_prometheus-0.9.0/tests/test_lsp_tool.py +307 -0
- oara_prometheus-0.9.0/tests/test_malformed_empty_guard.py +270 -0
- oara_prometheus-0.9.0/tests/test_managed_tasks.py +516 -0
- oara_prometheus-0.9.0/tests/test_manual_layer.py +174 -0
- oara_prometheus-0.9.0/tests/test_markup_guard.py +266 -0
- oara_prometheus-0.9.0/tests/test_max_tool_iterations_source.py +146 -0
- oara_prometheus-0.9.0/tests/test_mcp_adapter.py +218 -0
- oara_prometheus-0.9.0/tests/test_mcp_allowlist.py +253 -0
- oara_prometheus-0.9.0/tests/test_mcp_dependency_pin.py +180 -0
- oara_prometheus-0.9.0/tests/test_mcp_doc_claims.py +264 -0
- oara_prometheus-0.9.0/tests/test_mcp_gating.py +303 -0
- oara_prometheus-0.9.0/tests/test_mcp_names.py +79 -0
- oara_prometheus-0.9.0/tests/test_mcp_rest_spawn_perimeter.py +497 -0
- oara_prometheus-0.9.0/tests/test_mcp_status_tool.py +102 -0
- oara_prometheus-0.9.0/tests/test_mcp_transport.py +128 -0
- oara_prometheus-0.9.0/tests/test_media_admission.py +257 -0
- oara_prometheus-0.9.0/tests/test_media_cache.py +73 -0
- oara_prometheus-0.9.0/tests/test_media_cache_no_fabricated_path.py +121 -0
- oara_prometheus-0.9.0/tests/test_media_endpoint.py +136 -0
- oara_prometheus-0.9.0/tests/test_memory.py +365 -0
- oara_prometheus-0.9.0/tests/test_memory_concurrency.py +197 -0
- oara_prometheus-0.9.0/tests/test_memory_recall.py +423 -0
- oara_prometheus-0.9.0/tests/test_memory_tool_registered.py +184 -0
- oara_prometheus-0.9.0/tests/test_message_destination_origin.py +231 -0
- oara_prometheus-0.9.0/tests/test_messages_pagination.py +131 -0
- oara_prometheus-0.9.0/tests/test_microcompact.py +251 -0
- oara_prometheus-0.9.0/tests/test_migrate.py +399 -0
- oara_prometheus-0.9.0/tests/test_model_catalog_consistency.py +411 -0
- oara_prometheus-0.9.0/tests/test_model_detect_retry.py +52 -0
- oara_prometheus-0.9.0/tests/test_model_identity_from_backend.py +197 -0
- oara_prometheus-0.9.0/tests/test_model_router.py +765 -0
- oara_prometheus-0.9.0/tests/test_morph.py +370 -0
- oara_prometheus-0.9.0/tests/test_no_adjacent_assistant_messages.py +196 -0
- oara_prometheus-0.9.0/tests/test_no_leaked_task_managers.py +220 -0
- oara_prometheus-0.9.0/tests/test_no_replay_after_partial_stream.py +128 -0
- oara_prometheus-0.9.0/tests/test_node_identity.py +194 -0
- oara_prometheus-0.9.0/tests/test_obsidian_view.py +82 -0
- oara_prometheus-0.9.0/tests/test_one_config_loader.py +171 -0
- oara_prometheus-0.9.0/tests/test_openai_compat_api.py +222 -0
- oara_prometheus-0.9.0/tests/test_openai_compat_reads_error_body.py +170 -0
- oara_prometheus-0.9.0/tests/test_origin_fetch.py +430 -0
- oara_prometheus-0.9.0/tests/test_pack_loader.py +354 -0
- oara_prometheus-0.9.0/tests/test_pair_quality_gate.py +196 -0
- oara_prometheus-0.9.0/tests/test_paperclip_gateway.py +432 -0
- oara_prometheus-0.9.0/tests/test_parallel_dispatch.py +496 -0
- oara_prometheus-0.9.0/tests/test_path_guard.py +69 -0
- oara_prometheus-0.9.0/tests/test_per_message_mode.py +202 -0
- oara_prometheus-0.9.0/tests/test_permissions.py +628 -0
- oara_prometheus-0.9.0/tests/test_plan_filename_convention.py +207 -0
- oara_prometheus-0.9.0/tests/test_precommit_fails_closed.py +252 -0
- oara_prometheus-0.9.0/tests/test_printing_press.py +647 -0
- oara_prometheus-0.9.0/tests/test_profile_wiring.py +322 -0
- oara_prometheus-0.9.0/tests/test_profiles.py +264 -0
- oara_prometheus-0.9.0/tests/test_project_files.py +277 -0
- oara_prometheus-0.9.0/tests/test_prompt_assembly.py +364 -0
- oara_prometheus-0.9.0/tests/test_prompt_cache_telemetry.py +165 -0
- oara_prometheus-0.9.0/tests/test_prompt_etiquette_and_tool_description.py +145 -0
- oara_prometheus-0.9.0/tests/test_provider_fallback_decision.py +136 -0
- oara_prometheus-0.9.0/tests/test_provider_fallback_stream.py +179 -0
- oara_prometheus-0.9.0/tests/test_push_dispatch.py +252 -0
- oara_prometheus-0.9.0/tests/test_push_records_success.py +138 -0
- oara_prometheus-0.9.0/tests/test_push_routes.py +115 -0
- oara_prometheus-0.9.0/tests/test_quota_capture_harness.py +168 -0
- oara_prometheus-0.9.0/tests/test_reasoning_budget_marker.py +252 -0
- oara_prometheus-0.9.0/tests/test_redundant_except_hotfix.py +271 -0
- oara_prometheus-0.9.0/tests/test_relative_read_paths.py +91 -0
- oara_prometheus-0.9.0/tests/test_retry_budget_reset.py +116 -0
- oara_prometheus-0.9.0/tests/test_run_agent_loud_failure.py +64 -0
- oara_prometheus-0.9.0/tests/test_run_async_tool_choice_lever.py +167 -0
- oara_prometheus-0.9.0/tests/test_run_async_web_parity.py +408 -0
- oara_prometheus-0.9.0/tests/test_run_model_ab_eval.py +305 -0
- oara_prometheus-0.9.0/tests/test_scoped_lock.py +66 -0
- oara_prometheus-0.9.0/tests/test_scout.py +186 -0
- oara_prometheus-0.9.0/tests/test_sdist_contents.py +403 -0
- oara_prometheus-0.9.0/tests/test_self_halt.py +256 -0
- oara_prometheus-0.9.0/tests/test_sentinel.py +937 -0
- oara_prometheus-0.9.0/tests/test_served_model_telemetry.py +410 -0
- oara_prometheus-0.9.0/tests/test_session_compaction_hook.py +96 -0
- oara_prometheus-0.9.0/tests/test_session_id_descriptive_only.py +186 -0
- oara_prometheus-0.9.0/tests/test_session_kind.py +66 -0
- oara_prometheus-0.9.0/tests/test_session_persist_exact_once.py +233 -0
- oara_prometheus-0.9.0/tests/test_session_pins.py +257 -0
- oara_prometheus-0.9.0/tests/test_session_rehydrate.py +230 -0
- oara_prometheus-0.9.0/tests/test_session_retention.py +121 -0
- oara_prometheus-0.9.0/tests/test_session_titles.py +418 -0
- oara_prometheus-0.9.0/tests/test_session_turn_lock.py +112 -0
- oara_prometheus-0.9.0/tests/test_session_workspace.py +396 -0
- oara_prometheus-0.9.0/tests/test_sessions.py +438 -0
- oara_prometheus-0.9.0/tests/test_setup_advertised_defaults.py +107 -0
- oara_prometheus-0.9.0/tests/test_setup_api_cloud.py +162 -0
- oara_prometheus-0.9.0/tests/test_setup_api_phase2.py +770 -0
- oara_prometheus-0.9.0/tests/test_setup_cloud_noninteractive.py +180 -0
- oara_prometheus-0.9.0/tests/test_setup_command.py +144 -0
- oara_prometheus-0.9.0/tests/test_setup_deadends.py +265 -0
- oara_prometheus-0.9.0/tests/test_setup_probe_url.py +112 -0
- oara_prometheus-0.9.0/tests/test_setup_server.py +336 -0
- oara_prometheus-0.9.0/tests/test_setup_wizard.py +448 -0
- oara_prometheus-0.9.0/tests/test_setup_wizard_refuses_unreadable_config.py +177 -0
- oara_prometheus-0.9.0/tests/test_shared_retry_loop.py +139 -0
- oara_prometheus-0.9.0/tests/test_signal_bus_persistence.py +529 -0
- oara_prometheus-0.9.0/tests/test_silent_failure_response_body.py +133 -0
- oara_prometheus-0.9.0/tests/test_skill_creator.py +585 -0
- oara_prometheus-0.9.0/tests/test_skill_creator_config_gate.py +182 -0
- oara_prometheus-0.9.0/tests/test_skill_drafts.py +173 -0
- oara_prometheus-0.9.0/tests/test_skill_scoring.py +137 -0
- oara_prometheus-0.9.0/tests/test_skill_search.py +166 -0
- oara_prometheus-0.9.0/tests/test_skills.py +301 -0
- oara_prometheus-0.9.0/tests/test_slack.py +955 -0
- oara_prometheus-0.9.0/tests/test_slash_command_handlers.py +285 -0
- oara_prometheus-0.9.0/tests/test_smoke_declares_its_tree.py +173 -0
- oara_prometheus-0.9.0/tests/test_smoke_import_does_not_exit.py +135 -0
- oara_prometheus-0.9.0/tests/test_smoke_runner_retry.py +120 -0
- oara_prometheus-0.9.0/tests/test_spawn_key_not_persisted.py +348 -0
- oara_prometheus-0.9.0/tests/test_static_mount_websocket.py +112 -0
- oara_prometheus-0.9.0/tests/test_status_identity.py +56 -0
- oara_prometheus-0.9.0/tests/test_status_iteration_ceilings.py +148 -0
- oara_prometheus-0.9.0/tests/test_status_live_state.py +53 -0
- oara_prometheus-0.9.0/tests/test_status_reports_the_checkout.py +86 -0
- oara_prometheus-0.9.0/tests/test_steer_and_queue.py +395 -0
- oara_prometheus-0.9.0/tests/test_sticker_cache.py +45 -0
- oara_prometheus-0.9.0/tests/test_stream_markup_filter.py +269 -0
- oara_prometheus-0.9.0/tests/test_stream_usage_accounting.py +46 -0
- oara_prometheus-0.9.0/tests/test_strict_query_params.py +129 -0
- oara_prometheus-0.9.0/tests/test_strip_disagreement_is_counted.py +216 -0
- oara_prometheus-0.9.0/tests/test_structured_errors.py +63 -0
- oara_prometheus-0.9.0/tests/test_suite_collects_without_the_web_extra.py +216 -0
- oara_prometheus-0.9.0/tests/test_suppress_thinking_config.py +86 -0
- oara_prometheus-0.9.0/tests/test_symbiote_coordinator.py +337 -0
- oara_prometheus-0.9.0/tests/test_system_prompt_tool_names.py +129 -0
- oara_prometheus-0.9.0/tests/test_tailnet_hop_asymmetry.py +237 -0
- oara_prometheus-0.9.0/tests/test_tasks.py +249 -0
- oara_prometheus-0.9.0/tests/test_telegram_command_auth.py +149 -0
- oara_prometheus-0.9.0/tests/test_telegram_network_timeouts.py +55 -0
- oara_prometheus-0.9.0/tests/test_telegram_surface_hardening.py +400 -0
- oara_prometheus-0.9.0/tests/test_telegram_typing.py +102 -0
- oara_prometheus-0.9.0/tests/test_telemetry.py +167 -0
- oara_prometheus-0.9.0/tests/test_telemetry_dashboard.py +341 -0
- oara_prometheus-0.9.0/tests/test_telemetry_schema_meta.py +144 -0
- oara_prometheus-0.9.0/tests/test_telemetry_wal.py +215 -0
- oara_prometheus-0.9.0/tests/test_telemetry_wiring.py +305 -0
- oara_prometheus-0.9.0/tests/test_template_key_placement.py +104 -0
- oara_prometheus-0.9.0/tests/test_template_packaging.py +290 -0
- oara_prometheus-0.9.0/tests/test_thinking_blocks.py +214 -0
- oara_prometheus-0.9.0/tests/test_thinking_suppression_probe.py +180 -0
- oara_prometheus-0.9.0/tests/test_token_rotation_auth_path.py +172 -0
- oara_prometheus-0.9.0/tests/test_tool_advertisement.py +272 -0
- oara_prometheus-0.9.0/tests/test_tool_calls_join_to_lcm.py +175 -0
- oara_prometheus-0.9.0/tests/test_tool_choice_unit.py +69 -0
- oara_prometheus-0.9.0/tests/test_tool_error_detail.py +80 -0
- oara_prometheus-0.9.0/tests/test_tool_name_convention.py +101 -0
- oara_prometheus-0.9.0/tests/test_tool_registration.py +300 -0
- oara_prometheus-0.9.0/tests/test_tool_search.py +259 -0
- oara_prometheus-0.9.0/tests/test_tools.py +406 -0
- oara_prometheus-0.9.0/tests/test_training_pairs.py +392 -0
- oara_prometheus-0.9.0/tests/test_transition_taxonomy.py +108 -0
- oara_prometheus-0.9.0/tests/test_trim_advances_turn_offset.py +235 -0
- oara_prometheus-0.9.0/tests/test_tripwire.py +245 -0
- oara_prometheus-0.9.0/tests/test_truncation_contract.py +179 -0
- oara_prometheus-0.9.0/tests/test_turn_completed_every_origin.py +160 -0
- oara_prometheus-0.9.0/tests/test_turn_errors.py +198 -0
- oara_prometheus-0.9.0/tests/test_turn_exit_tool_result_invariant.py +237 -0
- oara_prometheus-0.9.0/tests/test_typo_answers_immediately.py +124 -0
- oara_prometheus-0.9.0/tests/test_unbuildable_override_is_not_active.py +174 -0
- oara_prometheus-0.9.0/tests/test_unwrap.py +246 -0
- oara_prometheus-0.9.0/tests/test_url_guard.py +429 -0
- oara_prometheus-0.9.0/tests/test_vault_marker.py +281 -0
- oara_prometheus-0.9.0/tests/test_vault_tools.py +937 -0
- oara_prometheus-0.9.0/tests/test_vibe_check.py +470 -0
- oara_prometheus-0.9.0/tests/test_video_generate.py +509 -0
- oara_prometheus-0.9.0/tests/test_video_ingest.py +615 -0
- oara_prometheus-0.9.0/tests/test_vision.py +56 -0
- oara_prometheus-0.9.0/tests/test_vision_detect.py +124 -0
- oara_prometheus-0.9.0/tests/test_watch_dir_gated.py +266 -0
- oara_prometheus-0.9.0/tests/test_web_audit.py +246 -0
- oara_prometheus-0.9.0/tests/test_web_bridge_loop_parity.py +481 -0
- oara_prometheus-0.9.0/tests/test_web_command_parity.py +213 -0
- oara_prometheus-0.9.0/tests/test_web_context_limit_resolution.py +220 -0
- oara_prometheus-0.9.0/tests/test_web_health.py +32 -0
- oara_prometheus-0.9.0/tests/test_web_refused_gates_launch.py +92 -0
- oara_prometheus-0.9.0/tests/test_web_slash_router.py +326 -0
- oara_prometheus-0.9.0/tests/test_web_tools.py +523 -0
- oara_prometheus-0.9.0/tests/test_web_turn_discard_on_failure.py +230 -0
- oara_prometheus-0.9.0/tests/test_whisper_stt.py +68 -0
- oara_prometheus-0.9.0/tests/test_wiki.py +730 -0
- oara_prometheus-0.9.0/tests/test_wiki_root_resolution.py +319 -0
- oara_prometheus-0.9.0/tests/test_wiki_tools_registered.py +70 -0
- oara_prometheus-0.9.0/tests/test_wire_contract.py +280 -0
- oara_prometheus-0.9.0/tests/test_wiring.py +8065 -0
- oara_prometheus-0.9.0/tests/test_write_boundary_is_a_property.py +475 -0
- oara_prometheus-0.9.0/tests/test_ws_auth.py +184 -0
- oara_prometheus-0.9.0/tests/test_ws_broadcast_drop_visibility.py +144 -0
- oara_prometheus-0.9.0/tests/test_ws_broadcast_snapshot.py +208 -0
- oara_prometheus-0.9.0/tests/test_ws_frame_size.py +116 -0
- oara_prometheus-0.9.0/tests/test_ws_interrupt.py +276 -0
- oara_prometheus-0.9.0/tests/test_ws_progress_frames.py +337 -0
- oara_prometheus-0.9.0/tests/test_ws_send_client_msg_id.py +115 -0
- oara_prometheus-0.9.0/tests/test_ws_session_filter.py +149 -0
- oara_prometheus-0.9.0/tests/test_ws_turn_lock.py +160 -0
- 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.
|