agent-runtime-cockpit 0.1.0a0__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.
- agent_runtime_cockpit-0.1.0a0/.gitignore +5 -0
- agent_runtime_cockpit-0.1.0a0/.importlinter +43 -0
- agent_runtime_cockpit-0.1.0a0/LICENSE +134 -0
- agent_runtime_cockpit-0.1.0a0/PKG-INFO +63 -0
- agent_runtime_cockpit-0.1.0a0/README.md +1 -0
- agent_runtime_cockpit-0.1.0a0/benchmarks/README.md +202 -0
- agent_runtime_cockpit-0.1.0a0/benchmarks/__init__.py +8 -0
- agent_runtime_cockpit-0.1.0a0/benchmarks/pytest.ini +13 -0
- agent_runtime_cockpit-0.1.0a0/benchmarks/test_adapter_detection.py +305 -0
- agent_runtime_cockpit-0.1.0a0/benchmarks/test_adapter_registry.py +269 -0
- agent_runtime_cockpit-0.1.0a0/benchmarks/test_adapter_workflows.py +297 -0
- agent_runtime_cockpit-0.1.0a0/build_hook_license.py +27 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/01_basic_detection.py +143 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/02_multi_adapter_detection.py +211 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/03_workflow_inspection.py +264 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/04_custom_adapter.py +313 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/05_registry_usage.py +253 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/README.md +44 -0
- agent_runtime_cockpit-0.1.0a0/examples/adapters/_adapter_loader.py +37 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/README.md +74 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/pyproject.toml +36 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/__init__.py +35 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/client.py +65 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/errors.py +35 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/server.py +46 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/tests/test_skeleton_contract.py +120 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-sdk/api_snapshot/v0.1.0rc4.json +2158 -0
- agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-sdk/scripts/dump_api_snapshot.py +136 -0
- agent_runtime_cockpit-0.1.0a0/pyproject.toml +271 -0
- agent_runtime_cockpit-0.1.0a0/scripts/build-daemon.sh +50 -0
- agent_runtime_cockpit-0.1.0a0/src/__init__.py +7 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/__daemon_main__.py +52 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/__init__.py +6 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/_legacy_cli.py +60 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/__init__.py +23 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/client.py +127 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/generator.py +98 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/models.py +69 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/__init__.py +21 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/_compat.py +19 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/_shared.py +78 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/_static.py +91 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/detect.py +23 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/mapping.py +37 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/runner.py +63 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2_adapter.py +80 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/agno.py +179 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/agno_mapping.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/arc_runtime_sdk.py +278 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/arc_runtime_sdk_pack.py +141 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/arc_runtime_sdk_protocol.py +125 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/base.py +232 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/browser_use.py +211 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/browser_use_mapping.py +48 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/conformance.py +218 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/__init__.py +5 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/detect.py +28 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/listener.py +92 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/mapping.py +60 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/runner.py +68 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai.py +348 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/__init__.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/capabilities.py +33 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/detect.py +223 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/export.py +598 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/runner.py +207 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/__init__.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/capabilities.py +35 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/detect.py +192 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/export.py +286 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/__init__.py +176 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/capabilities.py +33 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/detect.py +227 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/export.py +460 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/runner.py +203 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/__init__.py +219 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/capabilities.py +34 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/detect.py +204 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/export.py +256 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/runner.py +374 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/__init__.py +5 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/loader.py +27 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/mapping.py +38 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/replay_detector.py +224 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/runner.py +56 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph.py +649 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/letta.py +243 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/letta_mapping.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/llamaindex.py +118 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/lmarena.py +172 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/__init__.py +97 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/capabilities.py +40 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/detect.py +243 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/export.py +427 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/metagpt.py +270 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/__init__.py +15 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/mapping/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/mapping/openai_agents.py +46 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/streaming.py +91 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents.py +586 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/praisonai.py +248 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/__init__.py +18 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/detect.py +177 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/export.py +239 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/runner.py +192 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai_adapter.py +180 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai_mapping.py +65 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/registry.py +164 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/__init__.py +86 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/capabilities.py +29 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/detect.py +152 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/export.py +382 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/__init__.py +160 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/capabilities.py +25 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/detect.py +150 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/export.py +210 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/runner.py +173 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/strands.py +219 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/strands_mapping.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/__init__.py +14 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/gateway_client.py +54 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/local_executor.py +56 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/mapping.py +54 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/runner.py +120 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph.py +945 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/__init__.py +33 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/ag2_runner.py +139 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/crewai_runner.py +118 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/langgraph_runner.py +686 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/llamaindex_runner.py +111 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/openai_agents_runner.py +107 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/protocol.py +125 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/registry.py +123 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/advisor/__init__.py +369 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/ag_ui/__init__.py +81 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/ag_ui/validator.py +94 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/__init__.py +56 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/client.py +214 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/models.py +114 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/service.py +868 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/__init__.py +83 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/chain.py +70 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hitl.py +54 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hitl_sqlite_store.py +378 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hitl_store.py +132 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hmac_chain.py +333 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/key_manager.py +195 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/permissions.py +46 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/run_keyed_audit.py +51 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/runner_integration.py +55 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/schema.py +340 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/session.py +310 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/storage.py +134 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/streaming_verifier.py +549 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/auth/__init__.py +22 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/auth/manager.py +509 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/auth/oauth.py +322 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/__init__.py +37 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/models.py +222 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/runner.py +702 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/store.py +565 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/__init__.py +62 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/legacy_vector.py +115 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/runtime_context.py +38 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/schema.py +277 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/storage.py +333 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/wallet.py +94 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/__init__.py +216 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/enforcement.py +261 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_adapters.py +247 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_ir.py +666 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_mcp.py +458 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_workspace.py +103 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/hashing.py +130 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/models.py +433 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/policy.py +541 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/redaction.py +216 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/registry.py +230 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/signing.py +412 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/validation.py +304 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/ci_orchestration.py +378 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/__init__.py +18 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_app.py +280 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_helpers.py +374 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_loader.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_subapps.py +206 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/a2a.py +172 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/advisor.py +336 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/agents_md.py +155 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/arena.py +201 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/audit.py +586 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/batch.py +71 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/battle.py +476 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/capabilities.py +865 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/capabilities_policy.py +282 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/ci.py +519 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/codegraph.py +338 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/composer.py +162 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/context_cmd.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/continuum.py +99 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/debug.py +117 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/diff_cmd.py +142 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/discover.py +163 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/edit.py +319 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/events.py +320 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/exec.py +216 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/flight.py +226 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/git_native.py +293 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/hitl.py +123 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/hub.py +184 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/index_cmd.py +130 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/info.py +229 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/integrations_cli.py +30 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/ir.py +334 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mcp.py +1049 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/memory.py +167 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/memory_cmd.py +252 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/methodology.py +203 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt.py +17 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_config.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_doctor.py +667 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_eval.py +685 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_hitl.py +118 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_isolation.py +319 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_storage.py +116 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/migrate.py +214 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mobile.py +1319 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/notebook.py +224 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/obs.py +410 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/plan.py +417 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/predict_cmd.py +94 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/profiles.py +139 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/prompt.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/providers.py +1303 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/receipt.py +153 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/release_cmd.py +90 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/replay.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/review.py +185 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/runs.py +614 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/runtime_pack.py +338 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/sandbox.py +1484 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/security_cmd.py +37 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/simulate.py +115 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/studio_workspace.py +1005 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/swarmgraph.py +289 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/task.py +569 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/testbench.py +735 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/time_travel.py +342 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/vision.py +285 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/voice.py +137 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/adapters.py +1504 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/aliases.py +96 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/batch.py +328 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/cancellation.py +96 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/chat_repl.py +554 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/commands/__init__.py +126 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/pipeline.py +88 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/rendering.py +200 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/session.py +433 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/session_bundle.py +121 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash/model_info.py +109 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash/models.py +186 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash_commands.py +2863 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/theme.py +58 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_studio.py +66 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/budget_broker.py +128 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/indicators.py +35 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/observability_bridge.py +139 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/pricing_feed.py +227 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/composer/__init__.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/__init__.py +12 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/loader.py +300 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/model.py +140 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/policy.py +184 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/__init__.py +10 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/agents_md.py +258 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/cache.py +39 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/compaction.py +176 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/engine.py +55 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/handles.py +155 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/pack.py +57 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/prefetch.py +118 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/__init__.py +15 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/base.py +125 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/__init__.py +25 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/models.py +81 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/provider.py +574 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/transport.py +247 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/config_schema.py +94 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/context7.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/github_code_search.py +91 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/local_repo.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/registry.py +87 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/vercel_grep.py +84 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/web_search.py +65 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/ranker.py +24 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/skill_md.py +86 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/token_counter.py +133 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/tool_interceptor.py +61 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/continuum/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/continuum/store.py +370 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/daemon.py +15 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/debug/__init__.py +478 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/__init__.py +29 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/apply.py +245 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/artifact.py +220 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/consensus.py +380 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/consensus_earlystop.py +154 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/diff.py +80 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/golden.py +123 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/policy_recommend.py +209 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/__init__.py +44 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/bus.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/codegraph_events.py +44 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/models.py +76 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/persistence.py +184 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/types.py +209 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/webhooks.py +221 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/__init__.py +6 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/a2ui.py +52 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/base.py +19 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/flutter.py +42 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/registry.py +14 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/__init__.py +90 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/export.py +194 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/index.py +136 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/models.py +315 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/recorder.py +367 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/redaction.py +237 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/retention.py +205 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/segments.py +276 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/verify.py +222 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/gating.py +35 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/hub/__init__.py +304 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/index/__init__.py +473 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/__init__.py +66 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/_pathsafe.py +24 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/audit.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/base.py +42 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/__init__.py +14 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/_app.py +9 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/audit_cmd.py +29 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/connect.py +45 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/disconnect.py +35 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/export_cmd.py +19 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/poll.py +19 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/status.py +39 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/test_cmd.py +40 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/airtable.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/asana.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/clickup.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/confluence.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/discord.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/figma.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/github_projects.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/google_workspace.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/jira.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/linear.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/miro.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/monday.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/notion.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/slack.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/teams.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/trello.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/credentials.py +104 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/event_types.py +34 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/http_client.py +90 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/idempotency.py +50 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/pager.py +95 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/rate_limit.py +48 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/registry.py +30 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/sync.py +107 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/airtable.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/asana.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/clickup.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/confluence.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/discord.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/figma.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/github_projects.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/google_workspace.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/jira.py +103 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/linear.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/miro.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/monday.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/notion.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/slack.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/teams.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/trello.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/__init__.py +26 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/base.py +68 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/docker_provider.py +536 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/microvm.py +2301 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/none.py +148 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/selector.py +130 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/subprocess.py +225 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/vz_provider.py +1506 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/__init__.py +10 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/manifests.py +161 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/proxy.py +273 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/registry.py +120 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/risk.py +92 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/sandbox.py +173 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/server.py +945 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/session.py +282 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/__init__.py +14 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/evidence.py +97 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/models.py +101 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/store.py +240 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/__init__.py +21 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/gates.py +44 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/loop_integration.py +42 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/primitives.py +64 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/registry.py +131 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/runtime.py +37 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/schema.py +56 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/migrate/__init__.py +391 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/__init__.py +188 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/approval.py +92 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/audit_retention.py +92 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/capabilities.py +318 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/capability_gate.py +144 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/__init__.py +20 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/android.py +75 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/ios.py +143 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/report.py +49 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/review_notes.py +39 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/device_posture.py +72 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/feature_flags.py +74 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/fixtures_registry.py +137 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/hashing.py +49 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/manifest.py +109 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/mcp_bridge.py +84 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/mock_store.py +46 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/models.py +197 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/offline_queue.py +145 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/policy.py +157 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/policy_context.py +126 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/privacy_budget.py +193 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/provenance.py +55 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/recorder.py +169 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/redaction.py +86 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/replay.py +105 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/runtime_pack.py +102 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/sbom.py +79 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/schema_validator.py +66 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/secure_store.py +178 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/siem_export.py +121 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/signing.py +91 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/simulator.py +170 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/validation.py +417 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile_sdk_mapping.py +226 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/notebook/__init__.py +374 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/notifications/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/notifications/outbox.py +38 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/__init__.py +57 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/exporters.py +200 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/hashing.py +36 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/loaders.py +172 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/mcp_drift.py +134 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/models.py +140 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/openinference_mapping.py +119 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/otel_mapping.py +455 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/otlp_exporter.py +271 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/redaction.py +95 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/validation.py +82 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/optimizer/__init__.py +21 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/optimizer/local.py +209 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/capability_negotiation.py +106 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/codegraph_event_integration.py +274 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/codegraph_manager.py +225 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/cross_linker.py +125 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/event_broker.py +374 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/events.py +78 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/runtime_router.py +505 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/supervisor.py +622 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/__init__.py +87 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/_bypass.py +49 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/cache_breakpoints.py +142 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/capabilities.py +99 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/capability_card_events.py +43 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/capability_snapshot.py +226 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/cost_record.py +209 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/denial_events.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/envelope.py +30 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/errors.py +56 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/event_envelope.py +77 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/events.py +476 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/evidence_refs.py +57 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/failure_autopsy.py +66 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/mcp_decision_events.py +44 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/run_contract.py +77 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/run_receipt.py +77 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/runtime_capability.py +69 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/schemas.py +187 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/stable_ids.py +212 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/trust_diff.py +41 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/typed_events.py +1149 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/provider_action.py +1315 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/__init__.py +124 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/agentrouter_proxy.py +211 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/anthropic.py +503 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/anthropic_cost.py +130 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/anthropic_estimator.py +268 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/arena_provider.py +162 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/base.py +257 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/budget_preflight.py +102 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/client.py +54 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/e2e_evidence.py +115 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/fallback.py +108 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/models_dev.py +31023 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/openai_compatible.py +2145 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/redaction.py +33 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/registry.py +25 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/router.py +34 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/release_intelligence/__init__.py +328 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/release_snapshots/__init__.py +207 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/__init__.py +113 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_capabilities.py +103 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_events.py +206 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_flight.py +68 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_ir.py +420 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_mcp.py +59 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_policy.py +230 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_simulation.py +71 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/export.py +103 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/loaders.py +257 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/models.py +361 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/redaction.py +118 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/timeline.py +306 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/agent_loop.py +105 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/capability.py +20 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/mode.py +116 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/registry.py +30 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/response_cache.py +96 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/streaming.py +238 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/tool_runtime.py +32 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/turn_manager.py +501 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/__init__.py +138 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/exporters.py +197 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/hashing.py +125 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/loader.py +147 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/models.py +415 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/redaction.py +146 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/registry.py +244 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/scaffold.py +182 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/validation.py +412 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/schemas/__init__.py +17 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/schemas/audit_events.py +62 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/schemas/replay_capability.py +133 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/__init__.py +5 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/_bypass_rate_limit.py +83 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/adaptive_confirmation.py +123 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/context.py +119 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/edit_loop.py +604 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/enforcement.py +525 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/injection_patterns.py +152 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/monitoring.py +215 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/plan.py +459 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_linter.py +307 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/__init__.py +204 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/ci-cd.yaml +25 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/data-science.yaml +24 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/development.yaml +23 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/open-source.yaml +20 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/regulated-industry.yaml +22 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/profiles.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/prompt_guard.py +110 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/redaction.py +98 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/repair_loop.py +185 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/review.py +131 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/sandbox.py +2753 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/transactions.py +201 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/trust.py +202 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/validation.py +72 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/__init__.py +45 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/models.py +158 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/pricing.py +58 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/simulator.py +409 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/__init__.py +6 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/advisory_lock.py +78 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/atomic.py +39 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/indexed_store.py +161 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/jsonl.py +170 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/sqlite.py +242 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/stream/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/stream/websocket.py +288 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph/__init__.py +94 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/__init__.py +75 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/adapters/__init__.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/adapters/native.py +151 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/compiler.py +217 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/enrich.py +56 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/exporters.py +160 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/hashing.py +44 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/models.py +207 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/provenance.py +48 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/validation.py +121 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/__init__.py +16 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/executor.py +513 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/models.py +106 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/scheduler.py +237 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/storage.py +244 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/telemetry/__init__.py +12 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/telemetry/otlp_exporter.py +173 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/time_travel/__init__.py +390 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/__init__.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/builtin.py +132 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/protocol.py +59 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/registry.py +51 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/shell.py +171 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/wrapping.py +42 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/write.py +220 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tracing/__init__.py +6 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tracing/jsonl_writer.py +43 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/__init__.py +21 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/app.py +121 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/data.py +288 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/screen.py +1005 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/search.py +126 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/sparkline.py +36 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/tcss/base.tcss +140 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/theme.py +284 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/theme_extras.py +74 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/tweaks.py +89 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/__init__.py +22 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/audit_view.py +50 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/codegraph.py +163 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/hitl_view.py +238 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/methodology.py +111 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/modal_shell.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/plan_view.py +84 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/providers_view.py +444 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/runs_view.py +174 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/runtimes_view.py +87 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/sessions_view.py +180 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/settings_view.py +445 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/side_panel.py +18 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/tweaks_view.py +109 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/__init__.py +8 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/activity_tray.py +144 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/approval_bar.py +175 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/approval_card.py +140 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/banner.py +52 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/capability_banner.py +91 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/capability_gates.py +69 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/command_palette.py +129 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/context_meter.py +59 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/diff_block.py +129 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/empty_state.py +73 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/header.py +197 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/help_screen.py +104 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/input_area.py +235 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/jump_pill.py +72 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/keycap_hint.py +47 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/markdown_block.py +173 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/mcp_banner.py +60 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/message.py +5 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/minimap.py +129 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/mode_badge.py +84 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/reasoning_trace.py +67 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/risk_badge.py +64 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/search_bar.py +161 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/slash_menu.py +167 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/status_bar.py +121 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/swarm_graph.py +335 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/toaster.py +108 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/tool_card.py +93 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/tool_group.py +135 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/transcript.py +271 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/trust_prompt.py +108 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/vision/__init__.py +421 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/voice/__init__.py +301 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/wasm_parser/__init__.py +268 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/agui_bridge.py +67 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/keys.py +10 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/route_fates.py +31 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes.py +1356 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_arena.py +172 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_codegraph.py +389 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_helpers.py +78 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_tasks.py +127 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/server.py +139 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace/__init__.py +33 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace/entrypoint.py +37 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace/symbols.py +334 -0
- agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace.py +170 -0
- agent_runtime_cockpit-0.1.0a0/test_security_manual.py +182 -0
- agent_runtime_cockpit-0.1.0a0/tests/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/a2a/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/a2a/test_client.py +86 -0
- agent_runtime_cockpit-0.1.0a0/tests/a2a/test_generator.py +74 -0
- agent_runtime_cockpit-0.1.0a0/tests/a2a/test_models.py +55 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/__init__.py +28 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_denial_event_assertions.py +33 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_fake_provider_fixture.py +24 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_fixture_project_loader.py +22 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_golden_file_compare.py +21 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_typed_run_event_conformance.py +34 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/ag2/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/ag2/test_adapter.py +43 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/test_detection.py +56 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/test_detection.py +53 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/test_detection.py +53 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/crewai/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/crewai/test_adapter.py +26 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_adapter.py +159 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_detection.py +205 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_export.py +270 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_runner.py +215 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/test_adapter.py +118 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/test_detection.py +197 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/test_export.py +221 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_adapter.py +161 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_detection.py +220 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_export.py +270 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_runner.py +190 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/fixtures/retrieval_pipeline/pipeline.py +35 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/fixtures/trivial_chain/chain.py +22 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/test_detection.py +321 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/test_export.py +310 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/test_streaming.py +337 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langgraph/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langgraph/test_real_loading.py +81 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/langgraph/test_replay_capability.py +409 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/test_detection.py +75 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/llamaindex/test_export_target.py +72 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/test_detection.py +45 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/test_adapter.py +150 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/test_detection.py +247 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/test_export.py +339 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/test_detection.py +42 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/openai_agents/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/openai_agents/test_export_target.py +300 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/openai_agents/test_streaming.py +117 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/test_detection.py +42 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/__init__.py +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/fixtures/multi_tool_agent/agent.py +26 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/fixtures/simple_agent/agent.py +20 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/test_detection.py +253 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/test_export.py +189 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/test_streaming.py +199 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/test_adapter.py +79 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/test_detection.py +141 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/test_export.py +95 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_adapter.py +77 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_detection.py +113 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_export.py +81 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_runner.py +138 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/fixtures/generic_project/config.yaml +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/fixtures/generic_project/requirements.txt +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/test_detection.py +54 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_adaptive_consensus.py +155 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_approval.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_arena.py +389 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_catalog.py +144 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_checkpoint.py +177 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_cli.py +147 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_compat.py +119 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_config_retry.py +162 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_consensus_escrow.py +257 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_decomposition_events.py +302 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_detectors_fallback.py +287 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_event_buffer_models.py +208 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_graph_viz.py +145 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_init.py +130 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_middleware_request_context.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_nodes.py +975 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_notifications.py +677 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_phase4.py +401 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_phase56.py +384 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_provider_hooks.py +383 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_providers_guardrail.py +177 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_scheduler_security.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_task_graph_state_worker.py +252 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_testing.py +146 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_utils.py +270 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_gateway_backend.py +118 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_mapping.py +77 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_real_execution.py +62 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_security.py +232 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_adapter_module_pairs.py +96 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_ag_ui_mappings.py +79 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_agno.py +116 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_arc_runtime_sdk.py +184 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_arc_runtime_sdk_pack.py +147 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_arc_runtime_sdk_protocol.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_browser_use.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_budget_checkpoint.py +72 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_conformance_targets.py +104 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_crewai_coverage.py +389 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_detection_mutations.py +144 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_langgraph_coverage.py +387 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_letta.py +139 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_lmarena_adapter.py +134 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_metagpt_coverage.py +332 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_openai_agents_coverage.py +235 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_praisonai_coverage.py +293 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_pydantic_ai_adapter.py +126 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_run_budget_scope.py +66 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_shared_helpers.py +54 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_strands.py +181 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_swarmgraph_coverage.py +252 -0
- agent_runtime_cockpit-0.1.0a0/tests/adapters/test_swarmgraph_ide_event_contract.py +83 -0
- agent_runtime_cockpit-0.1.0a0/tests/advisor/test_advisor_r94.py +441 -0
- agent_runtime_cockpit-0.1.0a0/tests/arena/test_arena_integration.py +340 -0
- agent_runtime_cockpit-0.1.0a0/tests/arena/test_arena_models.py +53 -0
- agent_runtime_cockpit-0.1.0a0/tests/arena/test_arena_service.py +227 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_audit_internals_coverage.py +283 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_hitl.py +147 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_hmac_chain.py +269 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_redaction.py +186 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_run_keyed_audit.py +93 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_runner_integration.py +122 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_schema.py +205 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_session.py +167 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_storage.py +195 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_streaming_verifier.py +643 -0
- agent_runtime_cockpit-0.1.0a0/tests/audit/test_verifier_with_bypass_warnings.py +117 -0
- agent_runtime_cockpit-0.1.0a0/tests/auth/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/auth/test_audit_report_p0_fixes.py +120 -0
- agent_runtime_cockpit-0.1.0a0/tests/auth/test_auth_manager.py +348 -0
- agent_runtime_cockpit-0.1.0a0/tests/auth/test_auth_oauth.py +758 -0
- agent_runtime_cockpit-0.1.0a0/tests/auth/test_cli_auth.py +143 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/__init__.py +35 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_escrow.py +120 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_hitl.py +85 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_models.py +231 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_replay.py +113 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_runner.py +338 -0
- agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_store.py +217 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_harden_budget.py +161 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_legacy_vector.py +121 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_persistence.py +149 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_runtime_context.py +53 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_schema_edge_cases.py +166 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_storage_handles.py +113 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_token_wallet.py +132 -0
- agent_runtime_cockpit-0.1.0a0/tests/budget/test_wallet_display.py +88 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/conftest.py +190 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_enforcement.py +305 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_from_ir.py +353 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_from_ir_adapters_coverage.py +536 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_from_mcp_coverage.py +325 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_hashing.py +210 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_models.py +257 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_policy.py +332 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_policy_validation_coverage.py +389 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_redaction.py +211 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_registry_coverage.py +246 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_signing.py +474 -0
- agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_validation.py +428 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/conftest.py +109 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/doctor_swarmgraph.json +34 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/health.json +31 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/status_empty.json +37 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/version.json +16 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_advisor_guard.py +70 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_audit_query.py +190 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_audit_vault.py +93 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_audit_verify_integrations.py +85 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_battle_cli.py +62 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_ci.py +289 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_a2a_coverage.py +192 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_agents_md_coverage.py +182 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_arena.py +77 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_audit_coverage.py +359 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_battle_coverage.py +264 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_capabilities_coverage.py +443 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_capabilities_policy_coverage.py +264 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_ci_coverage.py +51 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_codegraph.py +171 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_discoverability.py +189 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_dispatch_contract.py +172 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_error_paths.py +41 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_eval.py +181 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_flight_coverage.py +50 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_hitl_replay_simulate_diff_coverage.py +68 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_mcp_coverage.py +261 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_methodology.py +251 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_mgmt_eval_coverage.py +374 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_mobile_coverage.py +680 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_obs_coverage.py +376 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_profiles_coverage.py +79 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_prompt_coverage.py +34 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_providers_coverage.py +354 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_receipt_coverage.py +57 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_run_gating.py +30 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_runs.py +59 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_runtime_pack_coverage.py +241 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_runtimes_diff.py +76 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_serve.py +47 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_smoke.py +47 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_snapshots.py +191 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_studio_workspace_coverage.py +60 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_swarmgraph_coverage.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_task_coverage.py +251 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_cockpit_receipts.py +324 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_diff_apply.py +72 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_doctor_perf.py +42 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_events_cli.py +281 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_git_native.py +251 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_isolation_selector_cli.py +73 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_minimal_install_contract.py +197 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_policy_simulator.py +83 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_r86_r87_r88_r89_dod.py +95 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_replay_diff.py +82 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_run_timeout.py +92 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_task_cli.py +146 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_testbench.py +264 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_workspace_init_isolation.py +56 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_workspace_inventory.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli/test_workspace_search.py +96 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_repl_adapters_coverage.py +827 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_session_aliases_batch_coverage.py +485 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_slash_commands_coverage.py +737 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_slash_model_info.py +44 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_slash_models.py +137 -0
- agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_trust_prompt.py +92 -0
- agent_runtime_cockpit-0.1.0a0/tests/cloud/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/cloud/test_budget_broker.py +152 -0
- agent_runtime_cockpit-0.1.0a0/tests/cloud/test_default_off_invariant.py +85 -0
- agent_runtime_cockpit-0.1.0a0/tests/cloud/test_observability_bridge.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/cloud/test_pricing_feed.py +213 -0
- agent_runtime_cockpit-0.1.0a0/tests/composer/test_composer_r98.py +410 -0
- agent_runtime_cockpit-0.1.0a0/tests/conftest.py +104 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/test_models.py +95 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/test_provider.py +188 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/test_transport.py +152 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/test_base.py +120 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/providers/test_registry.py +132 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_agents_md.py +185 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_codegraph_events.py +57 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_compaction.py +229 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_config_schema.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_context_helpers_coverage.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_context_pack_line_number.py +50 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_handles.py +202 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_measure_estimator_accuracy.py +39 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_prefetch.py +265 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_skill_md.py +86 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_token_counter.py +87 -0
- agent_runtime_cockpit-0.1.0a0/tests/context/test_vercel_grep_gate.py +33 -0
- agent_runtime_cockpit-0.1.0a0/tests/continuum/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/continuum/test_continuum_cli_r86b.py +86 -0
- agent_runtime_cockpit-0.1.0a0/tests/continuum/test_session_store_r86a.py +138 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/anthropic_cached_v1.json +14 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/anthropic_complete_v1.json +12 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/estimated_fallback_v1.json +12 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/minimal_v1.json +11 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/anthropic_cached_v1.json +13 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/anthropic_complete_v1.json +13 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/estimated_fallback_v1.json +13 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/minimal_v1.json +13 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v1/fake_minimal_v1.json +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v1/gated_local_default_v1.json +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v1/provider_backed_anthropic_v1.json +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v2/fake_minimal_v1.json +11 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v2/gated_local_default_v1.json +11 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v2/provider_backed_anthropic_v1.json +11 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/test_cost_record_migration.py +243 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/test_provider_protocol.py +94 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/test_runtime_capability_migration.py +298 -0
- agent_runtime_cockpit-0.1.0a0/tests/contract/test_slash_registry_contract.py +82 -0
- agent_runtime_cockpit-0.1.0a0/tests/debug/test_debug_r99.py +317 -0
- agent_runtime_cockpit-0.1.0a0/tests/e2e/test_bypass_warning_e2e.py +121 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/conftest.py +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_apply.py +293 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_consensus_earlystop.py +183 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_consensus_eval.py +306 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_diff.py +91 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_eval_artifact_b2p11.py +44 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_eval_artifacts.py +417 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_golden.py +123 -0
- agent_runtime_cockpit-0.1.0a0/tests/evals/test_phase58_eval_trending.py +243 -0
- agent_runtime_cockpit-0.1.0a0/tests/events/test_event_bus.py +485 -0
- agent_runtime_cockpit-0.1.0a0/tests/events/test_model_changed_event.py +69 -0
- agent_runtime_cockpit-0.1.0a0/tests/events/test_phase52_sse_push.py +353 -0
- agent_runtime_cockpit-0.1.0a0/tests/events/test_phase55_log_rotation.py +99 -0
- agent_runtime_cockpit-0.1.0a0/tests/events/test_quota_warning_typed_event_roundtrip.py +43 -0
- agent_runtime_cockpit-0.1.0a0/tests/events/test_webhooks.py +179 -0
- agent_runtime_cockpit-0.1.0a0/tests/extensions/test_extensions.py +185 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/AGENTS.md +93 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/AGENTS.override.md +14 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/hand_written/AGENTS.md +33 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/llm_generated/AGENTS.md +50 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/over_cap/AGENTS.md +413 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/sub_a/AGENTS.md +11 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/sub_a/deep/AGENTS.md +8 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/failure_autopsy.timeout.json +26 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/run_contract.accepted.json +20 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/run_receipt.failed.json +21 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/run_receipt.success.json +23 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/fake_crewai_export.py +49 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/fake_langgraph_export.py +52 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/loader.py +134 -0
- agent_runtime_cockpit-0.1.0a0/tests/fixtures/test_cross_language.py +282 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_export.py +132 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_index.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_models.py +223 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_recorder.py +292 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_redaction.py +163 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_retention.py +147 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_safety.py +208 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_segments.py +204 -0
- agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_verify.py +140 -0
- agent_runtime_cockpit-0.1.0a0/tests/hitl/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/hitl/test_hitl_sqlite_store.py +331 -0
- agent_runtime_cockpit-0.1.0a0/tests/hub/test_hub_r91.py +397 -0
- agent_runtime_cockpit-0.1.0a0/tests/index/test_incremental_index_r_perf7.py +128 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/ag2.golden.jsonl +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/crewai.golden.jsonl +4 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/langgraph.golden.jsonl +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/openai-agents.golden.jsonl +4 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/swarmgraph.golden.jsonl +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_crewai_smoke.py +84 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_provider_action_smoke.py +95 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_swarmgraph_langgraph_smoke.py +196 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_swarmgraph_provider_e2e.py +158 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/test_multi_adapter.py +66 -0
- agent_runtime_cockpit-0.1.0a0/tests/integration/test_slash_run.py +279 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/airtable_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/asana_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/clickup_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/confluence_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/discord_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/figma_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/github_projects_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/google_workspace_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/jira_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/linear_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/miro_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/monday_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/notion_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/slack_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/teams_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/trello_list.json +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/test_audit_signed_chain.py +59 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/test_dod_gates.py +126 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/test_foundations.py +326 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/test_sdk_contract.py +516 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/test_sync_and_polish.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_airtable.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_asana.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_clickup.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_confluence.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_discord.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_figma.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_github_projects.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_google_workspace.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_jira.py +122 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_linear.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_miro.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_monday.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_notion.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_slack.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_teams.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_trello.py +80 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_container_provider.py +381 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_docker_provider.py +371 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_firecracker_smoke.py +682 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_isolation.py +278 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_lima_smoke.py +417 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_microvm_preflight.py +772 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_microvm_truth_guard.py +205 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_providers_coverage.py +350 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_resolver_coverage.py +158 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_sandbox_audit_query.py +447 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_selector.py +119 -0
- agent_runtime_cockpit-0.1.0a0/tests/isolation/test_vz_proof.py +754 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/_fake_upstream.py +87 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_call_cli.py +59 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_client_session.py +338 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_internals_coverage.py +252 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_resource_risk_gate.py +87 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_serve_stdout.py +30 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_server.py +538 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_session.py +185 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_workbench.py +393 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_proxy.py +251 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_proxy_env.py +34 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_risk.py +124 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_sandbox.py +136 -0
- agent_runtime_cockpit-0.1.0a0/tests/mcp/test_tool_runner.py +84 -0
- agent_runtime_cockpit-0.1.0a0/tests/memory/test_memory_runtime_wiring.py +31 -0
- agent_runtime_cockpit-0.1.0a0/tests/memory_graph/test_phase59_memory_graph.py +222 -0
- agent_runtime_cockpit-0.1.0a0/tests/memory_graph/test_phase64_memory_evidence.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/methodology/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/methodology/test_phases_8_3_to_8_7.py +184 -0
- agent_runtime_cockpit-0.1.0a0/tests/methodology/test_registry.py +67 -0
- agent_runtime_cockpit-0.1.0a0/tests/methodology/test_schema.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/migrate/test_migrate_r102.py +448 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/duplicate_ids_manifest.json +57 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/invalid_background_plan.json +18 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/malicious_metadata_manifest.json +37 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/mock_action_plan.json +26 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/valid_mobile_runtime.json +512 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/wrong_hash_manifest.json +11 -0
- agent_runtime_cockpit-0.1.0a0/tests/mobile/test_mobile.py +717 -0
- agent_runtime_cockpit-0.1.0a0/tests/notebook/test_notebook_r100.py +411 -0
- agent_runtime_cockpit-0.1.0a0/tests/notifications/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/notifications/test_outbox.py +38 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/corrupt_run.jsonl +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/minimal_run.jsonl +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/run-storage-001.jsonl +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/run_with_hitl.jsonl +6 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/run_with_tool.jsonl +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/secret_trace.jsonl +2 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_genai_semconv.py +176 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_mcp_drift.py +128 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_mcp_propagator.py +110 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_observability.py +321 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_otel_cache_fields.py +72 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_otel_semconv_1_41.py +190 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_otlp_export.py +298 -0
- agent_runtime_cockpit-0.1.0a0/tests/observability/test_run_id_loader.py +93 -0
- agent_runtime_cockpit-0.1.0a0/tests/optimizer/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/optimizer/test_local_optimizer.py +164 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_capability_negotiation.py +181 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_codegraph_event_integration.py +491 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_codegraph_manager.py +197 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_cross_linker.py +196 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_enforcement_codegraph.py +125 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_event_broker.py +339 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_runtime_router_coverage.py +338 -0
- agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_supervisor.py +541 -0
- agent_runtime_cockpit-0.1.0a0/tests/perf/test_phase360_buffer_caps.py +39 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_cache_breakpoints.py +132 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_capability_card_events.py +67 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_cost_record.py +120 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_event_type_parity.py +56 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_message_event_registry_parity.py +43 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_policy_bypass_warning_model.py +183 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_protocol_conformance.py +89 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_rs_ts_py_parity.py +58 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_run_event_parity.py +229 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_swarmgraph_cost_cache_fields.py +39 -0
- agent_runtime_cockpit-0.1.0a0/tests/protocol/test_typed_events.py +366 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_agentrouter_proxy.py +173 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_cache_control.py +265 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_client.py +184 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_cost_extraction.py +202 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_estimator.py +262 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_capability_fields.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_chinese_labs_vendors.py +205 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_cost_pricing_refresh.py +92 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_cost_rates_schema.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_e2e_evidence.py +87 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_fallback.py +148 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_lazy_provider_loading.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_message_ordering.py +91 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_models_dev_catalog.py +145 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_openai_compatible.py +449 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_provider_client_contract.py +68 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_provider_registry.py +55 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_router.py +59 -0
- agent_runtime_cockpit-0.1.0a0/tests/providers/test_tool_output_virtualization.py +157 -0
- agent_runtime_cockpit-0.1.0a0/tests/release_intelligence/test_release_intelligence_r_proc1.py +175 -0
- agent_runtime_cockpit-0.1.0a0/tests/release_snapshots/test_release_snapshots_r_proc2.py +238 -0
- agent_runtime_cockpit-0.1.0a0/tests/reliability/test_phase361_timeouts.py +28 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/conftest.py +200 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_cli_ir_diff.py +469 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_cli_runs_diff_dod.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_capabilities_coverage.py +136 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_events_coverage.py +162 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_ir.py +229 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_ir_coverage.py +347 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_policy.py +119 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_loaders_coverage.py +365 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_models.py +261 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_redaction_and_timeline.py +218 -0
- agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_timeline_export_coverage.py +291 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_agent_loop.py +163 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_hitl_gate.py +79 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_prompt_caching.py +349 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_provider_router_wiring.py +50 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_response_cache.py +210 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_retry_hardening.py +187 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime/test_turn_manager.py +434 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/conftest.py +124 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/fixtures/valid_ir.json +91 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/fixtures/valid_minimal.json +75 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/fixtures.py +50 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_exporters.py +123 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_hashing.py +107 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_loader.py +118 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_models.py +155 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_redaction.py +114 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_registry.py +148 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_safety.py +65 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_scaffold.py +96 -0
- agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_validation.py +404 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/injection/test_injection_patterns.py +90 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/policy_templates/test_policy_templates_r97.py +267 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_adaptive_confirmation.py +58 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_command_classifier.py +91 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_emit_policy_bypass_warning.py +92 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_enforcement.py +390 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_enforcement_context.py +376 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_enforcement_e2e.py +127 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_hardening.py +207 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_landlock_preflight.py +88 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_plan_models.py +655 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_profiles.py +151 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_prompt_guard.py +105 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_provider_key_redaction_contract.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_review_evidence.py +190 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_policy.py +60 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_policy_yaml.py +367 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_pr_abc.py +164 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_pr_de.py +217 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_sbom_integrity.py +19 -0
- agent_runtime_cockpit-0.1.0a0/tests/security/test_workspace_escape.py +251 -0
- agent_runtime_cockpit-0.1.0a0/tests/simulation/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/simulation/test_mt2_pricing.py +93 -0
- agent_runtime_cockpit-0.1.0a0/tests/simulation/test_safety.py +89 -0
- agent_runtime_cockpit-0.1.0a0/tests/simulation/test_simulator.py +262 -0
- agent_runtime_cockpit-0.1.0a0/tests/storage/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/storage/test_run_id_allowlist.py +63 -0
- agent_runtime_cockpit-0.1.0a0/tests/storage/test_wal_checkpoint.py +39 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/fixtures/beta_e2e/replay_fixture.json +31 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_adaptive_consensus.py +326 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_adaptive_consensus_hardening.py +626 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_api_snapshot.py +124 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arc_bridge.py +40 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arc_bridge_beta_migration.py +132 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arc_sdk_boundary.py +192 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arena_battle_config.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arena_battle_fanout.py +202 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_checkpoint_fuzz.py +92 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_differentiators.py +738 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_escrow.py +593 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_event_integration.py +413 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_invariants.py +457 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_context_isolation.py +34 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_dag_decomposition.py +63 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_decomposition.py +75 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_deprecated_decorator.py +87 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_deserializer_fuzz.py +201 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_detectors.py +136 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_end_to_end_beta.py +200 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_event_callback.py +24 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_grouped_confidence.py +65 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration10.py +535 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration3.py +378 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration4.py +404 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration6.py +324 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration7.py +352 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration8.py +509 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration9.py +406 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_langgraph_integration.py +152 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_later_tier.py +286 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_maf_integration.py +125 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_model_roundtrip_phase107.py +208 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_next_tier.py +531 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_notifications_service.py +165 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_parallel_execution.py +206 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_phase107_109.py +497 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_property_invariants.py +221 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_provider_backed_and_resume.py +283 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_provider_backed_live_optin.py +120 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_provider_worker.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_pydantic_ai_integration.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_release_workflow_gating.py +55 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_review_improvements.py +467 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_risk_assessment.py +494 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_sdk_adapters.py +135 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_sdk_facade.py +56 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_sdk_features.py +110 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/conftest.py +3 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/expected_hashes.json +5 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/langgraph_branch.ir.json +224 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/langgraph_branch.workflow.json +91 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/mcp_graph.ir.json +151 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/mcp_graph.workflow.json +55 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/native_minimal.ir.json +136 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/native_minimal.workflow.json +51 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_cli_ir.py +74 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_importer_and_compiler.py +112 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_models_hashing.py +79 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_policy_bridge.py +94 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_regression_hashes.py +35 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_safety.py +128 -0
- agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_validation.py +133 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_scheduler_r92.py +242 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_executor.py +357 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_models.py +272 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_real_ops.py +38 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_sse_events.py +133 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_storage.py +322 -0
- agent_runtime_cockpit-0.1.0a0/tests/tasks/test_tasks_coverage.py +176 -0
- agent_runtime_cockpit-0.1.0a0/tests/telemetry/__init__.py +1 -0
- agent_runtime_cockpit-0.1.0a0/tests/telemetry/test_otlp_exporter.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_active_stream.py +149 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_adapter_status.py +220 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_adoption_protocol.py +1043 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_advisory_lock.py +102 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_advisory_lock_b2p13.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_agui_bridge.py +57 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_architecture_boundaries.py +38 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_artifact_license.py +72 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_audit_event_schema.py +195 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_budget_enforcer.py +123 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_capabilities.py +241 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_capability_snapshot.py +303 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_check_protocol_drift.py +34 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_check_silent_except.py +74 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_batch.py +86 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_doctor.py +30 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_edit_loop.py +457 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_profiles_workspace.py +232 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_providers.py +809 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_repl.py +1805 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_repl_runtime.py +391 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_repl_ui.py +306 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_runs.py +1091 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_sandbox.py +1595 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_storage.py +185 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_cli_studio.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_config.py +177 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_context.py +211 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_context_r85.py +71 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_daemon_build.py +41 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_data_recovery.py +113 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_eval_synthetic_labelling.py +49 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_event_parity.py +63 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_event_schema.py +425 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_evidence_refs.py +38 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_failure_autopsy.py +35 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_fallback_wiring.py +103 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_gate_check_alias.py +37 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_generate_status.py +51 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_graceful_degradation.py +282 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_harden_jsonl.py +186 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_harden_retry.py +136 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_index_r84.py +102 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_installability_wave1.py +116 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mapper_divergence.py +108 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mcp_call_decision_event.py +66 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_memory_r90.py +85 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_microcompact.py +169 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_approval.py +74 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_audit_retention.py +60 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_capability_gate.py +86 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_cli.py +258 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_cli_batch6.py +241 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_compliance.py +107 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_compliance_report.py +40 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_device_posture.py +49 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_dod_gate1_gate3.py +118 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_dod_gate6.py +71 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_dod_gate7.py +59 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_egress_guard.py +54 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_api.py +88 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_config_plugin.py +108 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_example.py +128 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_scaffold.py +135 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_feature_flags.py +42 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_fixtures.py +119 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_flutter.py +97 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_mcp_bridge.py +64 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_offline_queue.py +71 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_policy.py +108 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_policy_context.py +91 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_privacy_budget.py +57 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_property_batch6.py +153 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_provenance.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_replay.py +81 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_rn.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_sbom.py +47 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_schemas.py +96 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_sdk_mapping.py +240 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_secure_store.py +90 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_siem_export.py +98 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mobile_signing.py +65 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_mt5_sliding_window.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_negative_fixtures.py +128 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_perf_r85_r86_r87.py +96 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_phase102_streaming.py +111 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_phase103_ci_orchestration.py +169 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_phase44_slash_expansion.py +177 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_phase45_approval_progress.py +258 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_phase46_session_write_bridge.py +507 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_phase_98_101_cli_parity.py +140 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_policy.py +227 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_predict_r83.py +42 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_protocol.py +243 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_protocol_parity.py +55 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_provider_error_redaction.py +39 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_provider_key_mgmt.py +159 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_providers.py +521 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_readme_cli_parity.py +27 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_research_sprint_features.py +307 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_run_contract.py +56 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_run_receipt.py +57 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_runtime_pack_detail.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_runtime_router.py +243 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_security.py +100 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_session_export_import.py +84 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_sse_resilience.py +281 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_stable_ids.py +219 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_storage.py +309 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_swarmgraph_native.py +497 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_swarmgraph_topology.py +258 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_trust_diff.py +26 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_trust_resolver.py +178 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_ts_parity.py +102 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_tui_core.py +644 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_web_daemon.py +340 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_workspace.py +138 -0
- agent_runtime_cockpit-0.1.0a0/tests/test_workspace_helpers.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/time_travel/test_time_travel_r101.py +767 -0
- agent_runtime_cockpit-0.1.0a0/tests/tools/test_builtin.py +193 -0
- agent_runtime_cockpit-0.1.0a0/tests/tools/test_registry.py +174 -0
- agent_runtime_cockpit-0.1.0a0/tests/tools/test_write_shell_tools.py +155 -0
- agent_runtime_cockpit-0.1.0a0/tests/tracing/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/tracing/test_jsonl_writer.py +73 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/__snapshots__/test_snapshots/test_snapshot_approval_card_capability_gate.svg +221 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_allow_paid_warning.py +33 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_app_coverage.py +83 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_approval_risk_explainer.py +72 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_budget_slash_command.py +62 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_capability_gates.py +88 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_codegraph_async.py +135 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_codegraph_pane.py +309 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_command_palette_detail.py +99 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_context_meter_default.py +32 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_diff_block_sbs.py +32 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_diff_sbs_polish.py +56 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_empty_state.py +45 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_free_tier_gate.py +107 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_jump_pill.py +76 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_markdown_block_coverage.py +82 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_methodology_pane.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_minimap.py +55 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_mode_cycle.py +58 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_p1_widgets.py +148 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_p2_widgets.py +144 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_p3_theme_extras.py +81 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_plan_view.py +62 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_reasoning_trace.py +50 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_sandbox_shell_escape.py +327 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_screen_coverage.py +635 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_settings_isolation.py +158 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_slash_budget.py +49 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_slash_expand.py +114 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_slash_wallet.py +60 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_snapshots.py +115 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_sparkline.py +43 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_status_bar_context_meter.py +77 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_status_bar_model_chip.py +51 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_status_bar_quota_warning.py +66 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_statusline_order.py +71 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_swarm_graph.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_tool_card_rerun.py +46 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_tool_group.py +75 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_transcript_search.py +78 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_transcript_streaming.py +64 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_tweaks.py +105 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_typewriter_stream.py +83 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_ux3_views.py +213 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_ux3_widgets.py +140 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_ux4_themes.py +218 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_hitl.py +277 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_providers.py +325 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_runs.py +252 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_runtimes.py +88 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_sessions.py +161 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_views_audit_coverage.py +133 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_views_providers_coverage.py +386 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_views_settings_coverage.py +299 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_wallet_display.py +106 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_input_approval_coverage.py +479 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_search_palette_coverage.py +276 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_transcript_coverage.py +280 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_tray_status_coverage.py +151 -0
- agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_trust_help_coverage.py +90 -0
- agent_runtime_cockpit-0.1.0a0/tests/unit/test_budget_preflight_estimator.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/unit/test_budget_schema.py +58 -0
- agent_runtime_cockpit-0.1.0a0/tests/unit/test_cancellation.py +247 -0
- agent_runtime_cockpit-0.1.0a0/tests/unit/test_mt4_capability_cost_gate.py +140 -0
- agent_runtime_cockpit-0.1.0a0/tests/unit/test_runtime_mode.py +174 -0
- agent_runtime_cockpit-0.1.0a0/tests/vision/test_vision_r93.py +363 -0
- agent_runtime_cockpit-0.1.0a0/tests/voice/test_voice_r96.py +307 -0
- agent_runtime_cockpit-0.1.0a0/tests/wasm_parser/test_wasm_parser_r_perf9.py +170 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/__init__.py +0 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/conftest.py +144 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_arena_endpoints.py +232 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_audit_verify_route.py +131 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_cli_budget.py +214 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_codegraph_routes.py +594 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_daemon_auth.py +160 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_evals_endpoints.py +120 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_event_broker_hook.py +84 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_events_sse.py +101 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_health.py +15 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_hitl_routes.py +66 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_loopback_bind.py +64 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_phase50_trust_surface_audit.py +305 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_phase54_task_daemon_routes.py +82 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_phase55_provider_trust.py +78 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_phase57_provider_routes.py +228 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_protocol_contract.py +65 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_route_fate_parity.py +65 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_routes_coverage.py +406 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_runs_endpoints.py +220 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_runs_sse.py +175 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_server_coverage.py +148 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_session_daemon_routes.py +325 -0
- agent_runtime_cockpit-0.1.0a0/tests/web/test_sse_proof.py +45 -0
- agent_runtime_cockpit-0.1.0a0/tests/workspace/test_inventory_streaming.py +38 -0
- agent_runtime_cockpit-0.1.0a0/tests/workspace/test_symbols.py +138 -0
- agent_runtime_cockpit-0.1.0a0/uv.lock +3708 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Import-linter architecture contracts (audit P1-1 / HAN-199).
|
|
2
|
+
#
|
|
3
|
+
# Enforces the layering the architecture audit recommended: domain/infrastructure
|
|
4
|
+
# modules must NOT depend on the interface layer (CLI / TUI / web daemon routes).
|
|
5
|
+
# These "forbidden" contracts encode invariants that hold TODAY and will fail CI
|
|
6
|
+
# on any future violation. Run: `lint-imports --config .importlinter`.
|
|
7
|
+
|
|
8
|
+
[importlinter]
|
|
9
|
+
root_package = agent_runtime_cockpit
|
|
10
|
+
# The private SwarmGraph SDK is an external, optional git dependency; ignore its
|
|
11
|
+
# bridge submodule graph so the linter can build the import graph without it.
|
|
12
|
+
include_external_packages = False
|
|
13
|
+
|
|
14
|
+
[importlinter:contract:domain-no-interfaces]
|
|
15
|
+
name = Domain/infra modules must not import interface layers (cli/tui/web)
|
|
16
|
+
type = forbidden
|
|
17
|
+
source_modules =
|
|
18
|
+
agent_runtime_cockpit.security
|
|
19
|
+
agent_runtime_cockpit.audit
|
|
20
|
+
agent_runtime_cockpit.protocol
|
|
21
|
+
agent_runtime_cockpit.isolation
|
|
22
|
+
agent_runtime_cockpit.budget
|
|
23
|
+
agent_runtime_cockpit.evals
|
|
24
|
+
agent_runtime_cockpit.capabilities
|
|
25
|
+
agent_runtime_cockpit.run_diff
|
|
26
|
+
agent_runtime_cockpit.providers
|
|
27
|
+
agent_runtime_cockpit.storage
|
|
28
|
+
forbidden_modules =
|
|
29
|
+
agent_runtime_cockpit.cli
|
|
30
|
+
agent_runtime_cockpit.tui
|
|
31
|
+
agent_runtime_cockpit.web
|
|
32
|
+
|
|
33
|
+
[importlinter:contract:protocol-is-foundational]
|
|
34
|
+
name = Protocol must not depend on higher layers
|
|
35
|
+
type = forbidden
|
|
36
|
+
source_modules =
|
|
37
|
+
agent_runtime_cockpit.protocol
|
|
38
|
+
forbidden_modules =
|
|
39
|
+
agent_runtime_cockpit.cli
|
|
40
|
+
agent_runtime_cockpit.tui
|
|
41
|
+
agent_runtime_cockpit.web
|
|
42
|
+
agent_runtime_cockpit.adapters
|
|
43
|
+
agent_runtime_cockpit.integrations
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
ARC STUDIO PROPRIETARY LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025–2026 Hans Vilund. All rights reserved.
|
|
4
|
+
|
|
5
|
+
NOTICE: THIS IS NOT AN OPEN SOURCE LICENSE.
|
|
6
|
+
|
|
7
|
+
This license governs the use of ARC Studio and all associated source code,
|
|
8
|
+
documentation, assets, scripts, configuration files, and other materials
|
|
9
|
+
contained in this repository (collectively, the "Software").
|
|
10
|
+
|
|
11
|
+
--------------------------------------------------------------------------------
|
|
12
|
+
1. GRANT OF LIMITED VIEW ACCESS
|
|
13
|
+
--------------------------------------------------------------------------------
|
|
14
|
+
|
|
15
|
+
Subject to the terms and conditions of this License, the copyright holder
|
|
16
|
+
grants you a limited, non-exclusive, non-transferable, revocable right to view
|
|
17
|
+
the source code of the Software solely for the purpose of personal evaluation
|
|
18
|
+
on your own device.
|
|
19
|
+
|
|
20
|
+
This grant does NOT include any right to:
|
|
21
|
+
|
|
22
|
+
(a) copy, reproduce, or duplicate the Software or any portion thereof,
|
|
23
|
+
except as strictly necessary for local evaluation purposes;
|
|
24
|
+
(b) modify, adapt, translate, alter, transform, or create derivative works
|
|
25
|
+
based on the Software;
|
|
26
|
+
(c) merge the Software or any portion thereof into any other software,
|
|
27
|
+
product, or service;
|
|
28
|
+
(d) distribute, publish, transmit, sublicense, or make available the
|
|
29
|
+
Software or any portion thereof to any third party by any means;
|
|
30
|
+
(e) sell, resell, rent, lease, lend, or otherwise transfer the Software
|
|
31
|
+
or any rights therein;
|
|
32
|
+
(f) rebrand, rename, or otherwise present the Software or any derivative
|
|
33
|
+
work under a different name, identity, or branding;
|
|
34
|
+
(g) use the Software, in whole or in part, as the basis for any product or
|
|
35
|
+
service offered to third parties, whether commercially or otherwise;
|
|
36
|
+
(h) upload, mirror, fork (for redistribution), or otherwise copy the
|
|
37
|
+
Software to any external system, repository, service, or platform for
|
|
38
|
+
distribution or public access;
|
|
39
|
+
(i) remove, alter, obscure, or circumvent any copyright notice, license
|
|
40
|
+
notice, attribution, or other proprietary marking in the Software;
|
|
41
|
+
(j) reverse engineer, decompile, disassemble, or attempt to extract the
|
|
42
|
+
source code of any compiled component of the Software, except to the
|
|
43
|
+
extent expressly permitted by applicable law and only then upon prior
|
|
44
|
+
written notice to the copyright holder.
|
|
45
|
+
|
|
46
|
+
--------------------------------------------------------------------------------
|
|
47
|
+
2. COMMERCIAL USE
|
|
48
|
+
--------------------------------------------------------------------------------
|
|
49
|
+
|
|
50
|
+
Any commercial use of the Software — including but not limited to use in a
|
|
51
|
+
commercial product, service, SaaS offering, internal enterprise tooling, or
|
|
52
|
+
consulting engagement — requires a separate, written commercial license
|
|
53
|
+
agreement executed by the copyright holder.
|
|
54
|
+
|
|
55
|
+
To inquire about commercial licensing, contact the copyright holder directly.
|
|
56
|
+
|
|
57
|
+
--------------------------------------------------------------------------------
|
|
58
|
+
3. NO IMPLIED LICENSES
|
|
59
|
+
--------------------------------------------------------------------------------
|
|
60
|
+
|
|
61
|
+
Nothing in this License grants any right, license, or interest in any
|
|
62
|
+
trademark, trade name, service mark, or logo of the copyright holder. No
|
|
63
|
+
implied licenses are granted by this License.
|
|
64
|
+
|
|
65
|
+
--------------------------------------------------------------------------------
|
|
66
|
+
4. RESERVATION OF RIGHTS
|
|
67
|
+
--------------------------------------------------------------------------------
|
|
68
|
+
|
|
69
|
+
All rights not expressly granted in Section 1 are reserved by the copyright
|
|
70
|
+
holder. Making this source code publicly viewable on GitHub does not waive any
|
|
71
|
+
rights or create any open source or public domain dedication.
|
|
72
|
+
|
|
73
|
+
--------------------------------------------------------------------------------
|
|
74
|
+
5. TERMINATION
|
|
75
|
+
--------------------------------------------------------------------------------
|
|
76
|
+
|
|
77
|
+
This License and the limited view access granted hereunder terminate
|
|
78
|
+
automatically and immediately upon any breach of its terms by you. Upon
|
|
79
|
+
termination, you must destroy all copies of the Software in your possession
|
|
80
|
+
or control. The copyright holder may also terminate this License at any time
|
|
81
|
+
upon written notice.
|
|
82
|
+
|
|
83
|
+
--------------------------------------------------------------------------------
|
|
84
|
+
6. DISCLAIMER OF WARRANTIES
|
|
85
|
+
--------------------------------------------------------------------------------
|
|
86
|
+
|
|
87
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
88
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
89
|
+
FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. THE COPYRIGHT
|
|
90
|
+
HOLDER MAKES NO WARRANTY THAT THE SOFTWARE WILL MEET YOUR REQUIREMENTS, OPERATE
|
|
91
|
+
WITHOUT INTERRUPTION, OR BE FREE OF ERRORS OR DEFECTS.
|
|
92
|
+
|
|
93
|
+
--------------------------------------------------------------------------------
|
|
94
|
+
7. LIMITATION OF LIABILITY
|
|
95
|
+
--------------------------------------------------------------------------------
|
|
96
|
+
|
|
97
|
+
TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL THE
|
|
98
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
99
|
+
EXEMPLARY, PUNITIVE, OR CONSEQUENTIAL DAMAGES (INCLUDING BUT NOT LIMITED TO
|
|
100
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
101
|
+
BUSINESS INTERRUPTION; OR LOSS OF GOODWILL) HOWEVER CAUSED AND ON ANY THEORY
|
|
102
|
+
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
103
|
+
NEGLIGENCE OR OTHERWISE), ARISING OUT OF OR IN CONNECTION WITH THE SOFTWARE,
|
|
104
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
105
|
+
|
|
106
|
+
--------------------------------------------------------------------------------
|
|
107
|
+
8. GOVERNING LAW
|
|
108
|
+
--------------------------------------------------------------------------------
|
|
109
|
+
|
|
110
|
+
This License shall be governed by and construed in accordance with the laws of
|
|
111
|
+
the jurisdiction of the copyright holder's residence, without regard to conflict
|
|
112
|
+
of law principles. Any disputes arising under or in connection with this License
|
|
113
|
+
shall be subject to the exclusive jurisdiction of the courts of that
|
|
114
|
+
jurisdiction.
|
|
115
|
+
|
|
116
|
+
--------------------------------------------------------------------------------
|
|
117
|
+
9. ENTIRE AGREEMENT
|
|
118
|
+
--------------------------------------------------------------------------------
|
|
119
|
+
|
|
120
|
+
This License constitutes the entire agreement between you and the copyright
|
|
121
|
+
holder with respect to the subject matter hereof and supersedes all prior or
|
|
122
|
+
contemporaneous understandings, agreements, representations, or warranties,
|
|
123
|
+
whether written or oral, relating to such subject matter.
|
|
124
|
+
|
|
125
|
+
If any provision of this License is held to be invalid or unenforceable, the
|
|
126
|
+
remaining provisions shall continue in full force and effect.
|
|
127
|
+
|
|
128
|
+
--------------------------------------------------------------------------------
|
|
129
|
+
|
|
130
|
+
For permissions beyond the scope of this License, contact:
|
|
131
|
+
Hans Vilund — via GitHub at https://github.com/Hansuqwer
|
|
132
|
+
|
|
133
|
+
THIS IS NOT LEGAL ADVICE. If you need legal guidance regarding this software,
|
|
134
|
+
consult a qualified attorney.
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-runtime-cockpit
|
|
3
|
+
Version: 0.1.0a0
|
|
4
|
+
Summary: ARC — Agent Runtime Cockpit: Python daemon, adapters, context retrieval
|
|
5
|
+
Author: ARC Studio Contributors
|
|
6
|
+
License: ARC Studio Proprietary License — see LICENSE
|
|
7
|
+
Keywords: agent,ide,langgraph,runtime,swarmgraph,theia
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: Other/Proprietary License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Requires-Dist: aiofiles>=23.2
|
|
16
|
+
Requires-Dist: aiohttp>=3.14.0
|
|
17
|
+
Requires-Dist: idna>=3.15
|
|
18
|
+
Requires-Dist: mcp>=1.0.0
|
|
19
|
+
Requires-Dist: pydantic>=2.7
|
|
20
|
+
Requires-Dist: pygments>=2.17
|
|
21
|
+
Requires-Dist: pyyaml>=6.0
|
|
22
|
+
Requires-Dist: rich>=13.7
|
|
23
|
+
Requires-Dist: textual>=0.80
|
|
24
|
+
Requires-Dist: tiktoken>=0.8
|
|
25
|
+
Requires-Dist: typer>=0.12
|
|
26
|
+
Provides-Extra: all
|
|
27
|
+
Requires-Dist: anthropic>=0.30; extra == 'all'
|
|
28
|
+
Requires-Dist: docker>=7.1; extra == 'all'
|
|
29
|
+
Requires-Dist: httpx>=0.27; extra == 'all'
|
|
30
|
+
Requires-Dist: langgraph>=0.2; extra == 'all'
|
|
31
|
+
Requires-Dist: openai>=1.0; extra == 'all'
|
|
32
|
+
Requires-Dist: tiktoken>=0.12; extra == 'all'
|
|
33
|
+
Provides-Extra: arena
|
|
34
|
+
Requires-Dist: anthropic>=0.30; extra == 'arena'
|
|
35
|
+
Requires-Dist: openai>=1.0; extra == 'arena'
|
|
36
|
+
Provides-Extra: context
|
|
37
|
+
Requires-Dist: httpx>=0.27; extra == 'context'
|
|
38
|
+
Provides-Extra: dev
|
|
39
|
+
Requires-Dist: httpx>=0.27; extra == 'dev'
|
|
40
|
+
Requires-Dist: hypothesis>=6.100; extra == 'dev'
|
|
41
|
+
Requires-Dist: import-linter>=2.0; extra == 'dev'
|
|
42
|
+
Requires-Dist: mypy>=1.10; extra == 'dev'
|
|
43
|
+
Requires-Dist: pip-audit>=2.7; extra == 'dev'
|
|
44
|
+
Requires-Dist: pyinstaller>=6.0; extra == 'dev'
|
|
45
|
+
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
|
|
46
|
+
Requires-Dist: pytest-benchmark>=4.0; extra == 'dev'
|
|
47
|
+
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
|
|
48
|
+
Requires-Dist: pytest-textual-snapshot>=0.4; extra == 'dev'
|
|
49
|
+
Requires-Dist: pytest>=8.2; extra == 'dev'
|
|
50
|
+
Requires-Dist: ruff>=0.4; extra == 'dev'
|
|
51
|
+
Provides-Extra: docker
|
|
52
|
+
Requires-Dist: docker>=7.1; extra == 'docker'
|
|
53
|
+
Provides-Extra: langgraph
|
|
54
|
+
Requires-Dist: langgraph>=0.2; extra == 'langgraph'
|
|
55
|
+
Provides-Extra: optimizer
|
|
56
|
+
Requires-Dist: tiktoken>=0.12; extra == 'optimizer'
|
|
57
|
+
Provides-Extra: swarmgraph
|
|
58
|
+
Requires-Dist: swarmgraph-sdk; extra == 'swarmgraph'
|
|
59
|
+
Provides-Extra: vz
|
|
60
|
+
Requires-Dist: pyobjc-framework-virtualization>=10.0; (platform_system == 'Darwin') and extra == 'vz'
|
|
61
|
+
Description-Content-Type: text/markdown
|
|
62
|
+
|
|
63
|
+
# ARC — Agent Runtime Cockpit Python Package
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# ARC — Agent Runtime Cockpit Python Package
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# ARC Adapter Benchmarks
|
|
2
|
+
|
|
3
|
+
Performance benchmarks for ARC runtime adapters. These benchmarks are **off-gate** (not required for CI to pass) and are used for performance monitoring and regression detection.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
The benchmark suite covers:
|
|
8
|
+
|
|
9
|
+
- **Adapter Detection**: Performance of runtime detection across different workspace sizes
|
|
10
|
+
- **Workflow Operations**: Export and inspection performance
|
|
11
|
+
- **Registry Operations**: Multi-adapter coordination and lookup performance
|
|
12
|
+
- **Initialization**: Adapter and registry initialization overhead
|
|
13
|
+
|
|
14
|
+
## Running Benchmarks
|
|
15
|
+
|
|
16
|
+
### Prerequisites
|
|
17
|
+
|
|
18
|
+
Install benchmark dependencies:
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
cd python
|
|
22
|
+
uv pip install -e ".[dev]"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Basic Usage
|
|
26
|
+
|
|
27
|
+
Run all benchmarks:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pytest benchmarks/ --benchmark-only
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Run specific benchmark file:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
pytest benchmarks/test_adapter_detection.py --benchmark-only
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Run specific benchmark group:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pytest benchmarks/ --benchmark-only -k "detection-swarmgraph"
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Saving Baselines
|
|
46
|
+
|
|
47
|
+
Save a baseline for comparison:
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
pytest benchmarks/ --benchmark-only --benchmark-save=baseline
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Compare against baseline:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
pytest benchmarks/ --benchmark-only --benchmark-compare=baseline
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Advanced Options
|
|
60
|
+
|
|
61
|
+
Generate histogram:
|
|
62
|
+
|
|
63
|
+
```bash
|
|
64
|
+
pytest benchmarks/ --benchmark-only --benchmark-histogram
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Adjust number of rounds:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
pytest benchmarks/ --benchmark-only --benchmark-min-rounds=10
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
Disable GC during benchmarks:
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
pytest benchmarks/ --benchmark-only --benchmark-disable-gc
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
## Benchmark Groups
|
|
80
|
+
|
|
81
|
+
### Detection Benchmarks
|
|
82
|
+
|
|
83
|
+
- `detection-swarmgraph`: SwarmGraph detection performance
|
|
84
|
+
- `detection-langgraph`: LangGraph detection performance
|
|
85
|
+
- `detection-crewai`: CrewAI detection performance
|
|
86
|
+
- `detection-openai`: OpenAI Agents detection performance
|
|
87
|
+
|
|
88
|
+
### Workflow Benchmarks
|
|
89
|
+
|
|
90
|
+
- `inspect-workspace`: Workspace inspection performance
|
|
91
|
+
- `export-workflow`: Workflow export performance
|
|
92
|
+
- `export-schemas`: Schema export performance
|
|
93
|
+
- `combined-operations`: Full inspection pipeline
|
|
94
|
+
|
|
95
|
+
### Registry Benchmarks
|
|
96
|
+
|
|
97
|
+
- `registry-init`: Registry initialization
|
|
98
|
+
- `registry-lookup`: Adapter lookup operations
|
|
99
|
+
- `multi-detection`: Multi-adapter detection
|
|
100
|
+
- `registry-capabilities`: Capability queries
|
|
101
|
+
- `registry-registration`: Adapter registration/unregistration
|
|
102
|
+
- `concurrent-simulation`: Concurrent detection simulation
|
|
103
|
+
- `registry-filtering`: Adapter filtering operations
|
|
104
|
+
|
|
105
|
+
### Initialization Benchmarks
|
|
106
|
+
|
|
107
|
+
- `initialization`: Adapter initialization overhead
|
|
108
|
+
- `capabilities`: Capability query performance
|
|
109
|
+
|
|
110
|
+
## Performance Targets
|
|
111
|
+
|
|
112
|
+
These are aspirational targets, not hard requirements:
|
|
113
|
+
|
|
114
|
+
| Operation | Target | Notes |
|
|
115
|
+
|-----------|--------|-------|
|
|
116
|
+
| Adapter detection (empty workspace) | < 10ms | Should be fast for negative cases |
|
|
117
|
+
| Adapter detection (small workspace) | < 50ms | 10-100 files |
|
|
118
|
+
| Adapter detection (medium workspace) | < 200ms | 100-1000 files |
|
|
119
|
+
| Adapter detection (large workspace) | < 1s | 1000+ files |
|
|
120
|
+
| Capability report | < 20ms | Includes detection |
|
|
121
|
+
| Registry initialization (4 adapters) | < 50ms | One-time cost |
|
|
122
|
+
| Adapter lookup | < 1ms | Should be O(1) |
|
|
123
|
+
| Multi-adapter detection (4 adapters) | < 100ms | Empty workspace |
|
|
124
|
+
|
|
125
|
+
## Interpreting Results
|
|
126
|
+
|
|
127
|
+
### Statistics
|
|
128
|
+
|
|
129
|
+
- **Min**: Fastest execution time (best case)
|
|
130
|
+
- **Max**: Slowest execution time (worst case)
|
|
131
|
+
- **Mean**: Average execution time
|
|
132
|
+
- **StdDev**: Standard deviation (consistency indicator)
|
|
133
|
+
- **Median**: Middle value (50th percentile)
|
|
134
|
+
- **IQR**: Interquartile range (middle 50% spread)
|
|
135
|
+
- **Outliers**: Runs significantly slower/faster than typical
|
|
136
|
+
|
|
137
|
+
### What to Watch For
|
|
138
|
+
|
|
139
|
+
- **Regressions**: Mean time increases significantly between runs
|
|
140
|
+
- **High StdDev**: Inconsistent performance (may indicate caching issues)
|
|
141
|
+
- **Outliers**: May indicate GC pauses or system interference
|
|
142
|
+
- **Scaling**: Performance should scale sub-linearly with workspace size
|
|
143
|
+
|
|
144
|
+
## CI Integration
|
|
145
|
+
|
|
146
|
+
Benchmarks are marked as **off-gate** using pytest markers. They:
|
|
147
|
+
|
|
148
|
+
- Do NOT block PR merges
|
|
149
|
+
- Run on a schedule (nightly/weekly)
|
|
150
|
+
- Generate performance reports for monitoring
|
|
151
|
+
- Alert on significant regressions (>20% slowdown)
|
|
152
|
+
|
|
153
|
+
To run benchmarks in CI:
|
|
154
|
+
|
|
155
|
+
```bash
|
|
156
|
+
pytest benchmarks/ --benchmark-only --benchmark-json=benchmark-results.json
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## Adding New Benchmarks
|
|
160
|
+
|
|
161
|
+
1. Create a new test file in `benchmarks/`
|
|
162
|
+
2. Use `@pytest.mark.benchmark(group="group-name")` decorator
|
|
163
|
+
3. Use `benchmark` fixture to wrap the operation
|
|
164
|
+
4. Add assertions to verify correctness
|
|
165
|
+
5. Document the benchmark in this README
|
|
166
|
+
|
|
167
|
+
Example:
|
|
168
|
+
|
|
169
|
+
```python
|
|
170
|
+
@pytest.mark.benchmark(group="my-operation")
|
|
171
|
+
def test_my_operation(benchmark):
|
|
172
|
+
"""Benchmark my operation."""
|
|
173
|
+
adapter = MyAdapter()
|
|
174
|
+
result = benchmark(adapter.my_operation, arg1, arg2)
|
|
175
|
+
assert result is not None
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
## Troubleshooting
|
|
179
|
+
|
|
180
|
+
### Benchmarks are slow
|
|
181
|
+
|
|
182
|
+
- Reduce workspace sizes in fixtures
|
|
183
|
+
- Use `--benchmark-min-rounds=1` for quick checks
|
|
184
|
+
- Run specific groups instead of all benchmarks
|
|
185
|
+
|
|
186
|
+
### High variance in results
|
|
187
|
+
|
|
188
|
+
- Close other applications
|
|
189
|
+
- Disable CPU frequency scaling
|
|
190
|
+
- Use `--benchmark-disable-gc`
|
|
191
|
+
- Increase `--benchmark-min-rounds`
|
|
192
|
+
|
|
193
|
+
### Import errors
|
|
194
|
+
|
|
195
|
+
- Ensure dev dependencies are installed: `uv pip install -e ".[dev]"`
|
|
196
|
+
- Check that adapters are importable: `python -c "from agent_runtime_cockpit.adapters import SwarmGraphAdapter"`
|
|
197
|
+
|
|
198
|
+
## References
|
|
199
|
+
|
|
200
|
+
- [pytest-benchmark documentation](https://pytest-benchmark.readthedocs.io/)
|
|
201
|
+
- [ARC Adapter Base Class](../src/agent_runtime_cockpit/adapters/base.py)
|
|
202
|
+
- [ARC Adapter Registry](../src/agent_runtime_cockpit/adapters/registry.py)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# pytest configuration for benchmarks
|
|
2
|
+
[tool:pytest]
|
|
3
|
+
# Benchmark-specific settings
|
|
4
|
+
benchmark_min_rounds = 5
|
|
5
|
+
benchmark_warmup = true
|
|
6
|
+
benchmark_disable_gc = false
|
|
7
|
+
benchmark_sort = "mean"
|
|
8
|
+
benchmark_columns = "min, max, mean, stddev, median, iqr, outliers, rounds, iterations"
|
|
9
|
+
benchmark_group_by = "group"
|
|
10
|
+
|
|
11
|
+
# Off-gate marker - benchmarks don't block CI
|
|
12
|
+
markers =
|
|
13
|
+
benchmark: Performance benchmarks (off-gate)
|