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.
Files changed (1575) hide show
  1. agent_runtime_cockpit-0.1.0a0/.gitignore +5 -0
  2. agent_runtime_cockpit-0.1.0a0/.importlinter +43 -0
  3. agent_runtime_cockpit-0.1.0a0/LICENSE +134 -0
  4. agent_runtime_cockpit-0.1.0a0/PKG-INFO +63 -0
  5. agent_runtime_cockpit-0.1.0a0/README.md +1 -0
  6. agent_runtime_cockpit-0.1.0a0/benchmarks/README.md +202 -0
  7. agent_runtime_cockpit-0.1.0a0/benchmarks/__init__.py +8 -0
  8. agent_runtime_cockpit-0.1.0a0/benchmarks/pytest.ini +13 -0
  9. agent_runtime_cockpit-0.1.0a0/benchmarks/test_adapter_detection.py +305 -0
  10. agent_runtime_cockpit-0.1.0a0/benchmarks/test_adapter_registry.py +269 -0
  11. agent_runtime_cockpit-0.1.0a0/benchmarks/test_adapter_workflows.py +297 -0
  12. agent_runtime_cockpit-0.1.0a0/build_hook_license.py +27 -0
  13. agent_runtime_cockpit-0.1.0a0/examples/adapters/01_basic_detection.py +143 -0
  14. agent_runtime_cockpit-0.1.0a0/examples/adapters/02_multi_adapter_detection.py +211 -0
  15. agent_runtime_cockpit-0.1.0a0/examples/adapters/03_workflow_inspection.py +264 -0
  16. agent_runtime_cockpit-0.1.0a0/examples/adapters/04_custom_adapter.py +313 -0
  17. agent_runtime_cockpit-0.1.0a0/examples/adapters/05_registry_usage.py +253 -0
  18. agent_runtime_cockpit-0.1.0a0/examples/adapters/README.md +44 -0
  19. agent_runtime_cockpit-0.1.0a0/examples/adapters/_adapter_loader.py +37 -0
  20. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/README.md +74 -0
  21. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/pyproject.toml +36 -0
  22. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/__init__.py +35 -0
  23. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/client.py +65 -0
  24. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/errors.py +35 -0
  25. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/swarmgraph_mcp/server.py +46 -0
  26. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-mcp/tests/test_skeleton_contract.py +120 -0
  27. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-sdk/api_snapshot/v0.1.0rc4.json +2158 -0
  28. agent_runtime_cockpit-0.1.0a0/packages/swarmgraph-sdk/scripts/dump_api_snapshot.py +136 -0
  29. agent_runtime_cockpit-0.1.0a0/pyproject.toml +271 -0
  30. agent_runtime_cockpit-0.1.0a0/scripts/build-daemon.sh +50 -0
  31. agent_runtime_cockpit-0.1.0a0/src/__init__.py +7 -0
  32. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/__daemon_main__.py +52 -0
  33. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/__init__.py +6 -0
  34. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/_legacy_cli.py +60 -0
  35. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/__init__.py +23 -0
  36. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/client.py +127 -0
  37. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/generator.py +98 -0
  38. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/a2a/models.py +69 -0
  39. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/__init__.py +21 -0
  40. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/_compat.py +19 -0
  41. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/_shared.py +78 -0
  42. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/_static.py +91 -0
  43. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/__init__.py +0 -0
  44. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/detect.py +23 -0
  45. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/mapping.py +37 -0
  46. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2/runner.py +63 -0
  47. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/ag2_adapter.py +80 -0
  48. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/agno.py +179 -0
  49. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/agno_mapping.py +47 -0
  50. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/arc_runtime_sdk.py +278 -0
  51. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/arc_runtime_sdk_pack.py +141 -0
  52. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/arc_runtime_sdk_protocol.py +125 -0
  53. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/base.py +232 -0
  54. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/browser_use.py +211 -0
  55. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/browser_use_mapping.py +48 -0
  56. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/conformance.py +218 -0
  57. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/__init__.py +5 -0
  58. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/detect.py +28 -0
  59. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/listener.py +92 -0
  60. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/mapping.py +60 -0
  61. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai/runner.py +68 -0
  62. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/crewai.py +348 -0
  63. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/__init__.py +174 -0
  64. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/capabilities.py +33 -0
  65. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/detect.py +223 -0
  66. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/export.py +598 -0
  67. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/dspy/runner.py +207 -0
  68. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/__init__.py +93 -0
  69. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/capabilities.py +35 -0
  70. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/detect.py +192 -0
  71. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/google_adk/export.py +286 -0
  72. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/__init__.py +176 -0
  73. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/capabilities.py +33 -0
  74. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/detect.py +227 -0
  75. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/export.py +460 -0
  76. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/haystack/runner.py +203 -0
  77. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/__init__.py +219 -0
  78. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/capabilities.py +34 -0
  79. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/detect.py +204 -0
  80. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/export.py +256 -0
  81. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langchain/runner.py +374 -0
  82. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/__init__.py +5 -0
  83. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/loader.py +27 -0
  84. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/mapping.py +38 -0
  85. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/replay_detector.py +224 -0
  86. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph/runner.py +56 -0
  87. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/langgraph.py +649 -0
  88. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/letta.py +243 -0
  89. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/letta_mapping.py +47 -0
  90. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/llamaindex.py +118 -0
  91. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/lmarena.py +172 -0
  92. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/__init__.py +97 -0
  93. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/capabilities.py +40 -0
  94. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/detect.py +243 -0
  95. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/mcp_sdk/export.py +427 -0
  96. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/metagpt.py +270 -0
  97. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/__init__.py +15 -0
  98. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/mapping/__init__.py +0 -0
  99. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/mapping/openai_agents.py +46 -0
  100. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents/streaming.py +91 -0
  101. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/openai_agents.py +586 -0
  102. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/praisonai.py +248 -0
  103. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/__init__.py +18 -0
  104. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/detect.py +177 -0
  105. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/export.py +239 -0
  106. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai/runner.py +192 -0
  107. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai_adapter.py +180 -0
  108. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/pydantic_ai_mapping.py +65 -0
  109. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/registry.py +164 -0
  110. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/__init__.py +86 -0
  111. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/capabilities.py +29 -0
  112. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/detect.py +152 -0
  113. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/semantic_kernel/export.py +382 -0
  114. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/__init__.py +160 -0
  115. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/capabilities.py +25 -0
  116. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/detect.py +150 -0
  117. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/export.py +210 -0
  118. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/smolagents/runner.py +173 -0
  119. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/strands.py +219 -0
  120. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/strands_mapping.py +47 -0
  121. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/__init__.py +14 -0
  122. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/gateway_client.py +54 -0
  123. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/local_executor.py +56 -0
  124. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/mapping.py +54 -0
  125. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph/runner.py +120 -0
  126. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adapters/swarmgraph.py +945 -0
  127. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/__init__.py +33 -0
  128. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/ag2_runner.py +139 -0
  129. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/crewai_runner.py +118 -0
  130. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/langgraph_runner.py +686 -0
  131. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/llamaindex_runner.py +111 -0
  132. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/openai_agents_runner.py +107 -0
  133. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/protocol.py +125 -0
  134. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/adoption/registry.py +123 -0
  135. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/advisor/__init__.py +369 -0
  136. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/ag_ui/__init__.py +81 -0
  137. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/ag_ui/validator.py +94 -0
  138. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/__init__.py +56 -0
  139. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/client.py +214 -0
  140. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/models.py +114 -0
  141. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/arena/service.py +868 -0
  142. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/__init__.py +83 -0
  143. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/chain.py +70 -0
  144. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hitl.py +54 -0
  145. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hitl_sqlite_store.py +378 -0
  146. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hitl_store.py +132 -0
  147. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/hmac_chain.py +333 -0
  148. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/key_manager.py +195 -0
  149. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/permissions.py +46 -0
  150. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/run_keyed_audit.py +51 -0
  151. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/runner_integration.py +55 -0
  152. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/schema.py +340 -0
  153. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/session.py +310 -0
  154. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/storage.py +134 -0
  155. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/audit/streaming_verifier.py +549 -0
  156. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/auth/__init__.py +22 -0
  157. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/auth/manager.py +509 -0
  158. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/auth/oauth.py +322 -0
  159. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/__init__.py +37 -0
  160. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/models.py +222 -0
  161. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/runner.py +702 -0
  162. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/battle/store.py +565 -0
  163. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/__init__.py +62 -0
  164. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/legacy_vector.py +115 -0
  165. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/runtime_context.py +38 -0
  166. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/schema.py +277 -0
  167. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/storage.py +333 -0
  168. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/budget/wallet.py +94 -0
  169. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/__init__.py +216 -0
  170. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/enforcement.py +261 -0
  171. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_adapters.py +247 -0
  172. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_ir.py +666 -0
  173. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_mcp.py +458 -0
  174. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/from_workspace.py +103 -0
  175. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/hashing.py +130 -0
  176. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/models.py +433 -0
  177. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/policy.py +541 -0
  178. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/redaction.py +216 -0
  179. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/registry.py +230 -0
  180. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/signing.py +412 -0
  181. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/capabilities/validation.py +304 -0
  182. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/ci_orchestration.py +378 -0
  183. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/__init__.py +18 -0
  184. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_app.py +280 -0
  185. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_helpers.py +374 -0
  186. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_loader.py +93 -0
  187. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/_subapps.py +206 -0
  188. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/a2a.py +172 -0
  189. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/advisor.py +336 -0
  190. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/agents_md.py +155 -0
  191. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/arena.py +201 -0
  192. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/audit.py +586 -0
  193. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/batch.py +71 -0
  194. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/battle.py +476 -0
  195. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/capabilities.py +865 -0
  196. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/capabilities_policy.py +282 -0
  197. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/ci.py +519 -0
  198. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/codegraph.py +338 -0
  199. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/composer.py +162 -0
  200. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/context_cmd.py +174 -0
  201. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/continuum.py +99 -0
  202. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/debug.py +117 -0
  203. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/diff_cmd.py +142 -0
  204. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/discover.py +163 -0
  205. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/edit.py +319 -0
  206. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/events.py +320 -0
  207. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/exec.py +216 -0
  208. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/flight.py +226 -0
  209. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/git_native.py +293 -0
  210. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/hitl.py +123 -0
  211. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/hub.py +184 -0
  212. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/index_cmd.py +130 -0
  213. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/info.py +229 -0
  214. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/integrations_cli.py +30 -0
  215. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/ir.py +334 -0
  216. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mcp.py +1049 -0
  217. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/memory.py +167 -0
  218. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/memory_cmd.py +252 -0
  219. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/methodology.py +203 -0
  220. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt.py +17 -0
  221. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_config.py +47 -0
  222. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_doctor.py +667 -0
  223. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_eval.py +685 -0
  224. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_hitl.py +118 -0
  225. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_isolation.py +319 -0
  226. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mgmt_storage.py +116 -0
  227. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/migrate.py +214 -0
  228. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/mobile.py +1319 -0
  229. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/notebook.py +224 -0
  230. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/obs.py +410 -0
  231. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/plan.py +417 -0
  232. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/predict_cmd.py +94 -0
  233. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/profiles.py +139 -0
  234. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/prompt.py +101 -0
  235. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/providers.py +1303 -0
  236. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/receipt.py +153 -0
  237. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/release_cmd.py +90 -0
  238. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/replay.py +174 -0
  239. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/review.py +185 -0
  240. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/runs.py +614 -0
  241. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/runtime_pack.py +338 -0
  242. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/sandbox.py +1484 -0
  243. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/security_cmd.py +37 -0
  244. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/simulate.py +115 -0
  245. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/studio_workspace.py +1005 -0
  246. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/swarmgraph.py +289 -0
  247. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/task.py +569 -0
  248. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/testbench.py +735 -0
  249. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/time_travel.py +342 -0
  250. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/vision.py +285 -0
  251. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli/voice.py +137 -0
  252. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/__init__.py +0 -0
  253. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/adapters.py +1504 -0
  254. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/aliases.py +96 -0
  255. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/batch.py +328 -0
  256. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/cancellation.py +96 -0
  257. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/chat_repl.py +554 -0
  258. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/commands/__init__.py +126 -0
  259. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/pipeline.py +88 -0
  260. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/rendering.py +200 -0
  261. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/session.py +433 -0
  262. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/session_bundle.py +121 -0
  263. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash/__init__.py +0 -0
  264. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash/model_info.py +109 -0
  265. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash/models.py +186 -0
  266. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/slash_commands.py +2863 -0
  267. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_repl/theme.py +58 -0
  268. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cli_studio.py +66 -0
  269. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/__init__.py +0 -0
  270. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/budget_broker.py +128 -0
  271. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/indicators.py +35 -0
  272. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/observability_bridge.py +139 -0
  273. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/cloud/pricing_feed.py +227 -0
  274. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/composer/__init__.py +174 -0
  275. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/__init__.py +12 -0
  276. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/loader.py +300 -0
  277. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/model.py +140 -0
  278. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/config/policy.py +184 -0
  279. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/__init__.py +10 -0
  280. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/agents_md.py +258 -0
  281. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/cache.py +39 -0
  282. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/compaction.py +176 -0
  283. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/engine.py +55 -0
  284. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/handles.py +155 -0
  285. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/pack.py +57 -0
  286. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/prefetch.py +118 -0
  287. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/__init__.py +15 -0
  288. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/base.py +125 -0
  289. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/__init__.py +25 -0
  290. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/models.py +81 -0
  291. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/provider.py +574 -0
  292. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/codegraph/transport.py +247 -0
  293. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/config_schema.py +94 -0
  294. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/context7.py +93 -0
  295. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/github_code_search.py +91 -0
  296. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/local_repo.py +93 -0
  297. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/registry.py +87 -0
  298. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/vercel_grep.py +84 -0
  299. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/providers/web_search.py +65 -0
  300. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/ranker.py +24 -0
  301. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/skill_md.py +86 -0
  302. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/token_counter.py +133 -0
  303. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/context/tool_interceptor.py +61 -0
  304. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/continuum/__init__.py +0 -0
  305. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/continuum/store.py +370 -0
  306. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/daemon.py +15 -0
  307. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/debug/__init__.py +478 -0
  308. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/__init__.py +29 -0
  309. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/apply.py +245 -0
  310. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/artifact.py +220 -0
  311. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/consensus.py +380 -0
  312. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/consensus_earlystop.py +154 -0
  313. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/diff.py +80 -0
  314. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/golden.py +123 -0
  315. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/evals/policy_recommend.py +209 -0
  316. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/__init__.py +44 -0
  317. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/bus.py +174 -0
  318. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/codegraph_events.py +44 -0
  319. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/models.py +76 -0
  320. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/persistence.py +184 -0
  321. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/types.py +209 -0
  322. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/events/webhooks.py +221 -0
  323. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/__init__.py +6 -0
  324. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/a2ui.py +52 -0
  325. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/base.py +19 -0
  326. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/flutter.py +42 -0
  327. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/extensions/registry.py +14 -0
  328. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/__init__.py +90 -0
  329. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/export.py +194 -0
  330. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/index.py +136 -0
  331. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/models.py +315 -0
  332. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/recorder.py +367 -0
  333. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/redaction.py +237 -0
  334. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/retention.py +205 -0
  335. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/segments.py +276 -0
  336. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/flight_recorder/verify.py +222 -0
  337. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/gating.py +35 -0
  338. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/hub/__init__.py +304 -0
  339. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/index/__init__.py +473 -0
  340. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/__init__.py +66 -0
  341. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/_pathsafe.py +24 -0
  342. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/audit.py +93 -0
  343. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/base.py +42 -0
  344. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/__init__.py +14 -0
  345. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/_app.py +9 -0
  346. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/audit_cmd.py +29 -0
  347. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/connect.py +45 -0
  348. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/disconnect.py +35 -0
  349. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/export_cmd.py +19 -0
  350. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/poll.py +19 -0
  351. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/status.py +39 -0
  352. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/test_cmd.py +40 -0
  353. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/__init__.py +1 -0
  354. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/airtable.py +82 -0
  355. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/asana.py +82 -0
  356. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/clickup.py +82 -0
  357. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/confluence.py +82 -0
  358. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/discord.py +82 -0
  359. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/figma.py +82 -0
  360. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/github_projects.py +82 -0
  361. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/google_workspace.py +82 -0
  362. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/jira.py +82 -0
  363. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/linear.py +82 -0
  364. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/miro.py +82 -0
  365. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/monday.py +82 -0
  366. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/notion.py +82 -0
  367. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/slack.py +82 -0
  368. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/teams.py +82 -0
  369. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/cli/tools/trello.py +82 -0
  370. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/credentials.py +104 -0
  371. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/event_types.py +34 -0
  372. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/http_client.py +90 -0
  373. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/idempotency.py +50 -0
  374. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/pager.py +95 -0
  375. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/rate_limit.py +48 -0
  376. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/registry.py +30 -0
  377. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/sync.py +107 -0
  378. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/__init__.py +1 -0
  379. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/airtable.py +101 -0
  380. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/asana.py +101 -0
  381. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/clickup.py +101 -0
  382. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/confluence.py +101 -0
  383. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/discord.py +101 -0
  384. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/figma.py +101 -0
  385. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/github_projects.py +101 -0
  386. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/google_workspace.py +101 -0
  387. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/jira.py +103 -0
  388. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/linear.py +101 -0
  389. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/miro.py +101 -0
  390. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/monday.py +101 -0
  391. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/notion.py +101 -0
  392. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/slack.py +101 -0
  393. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/teams.py +101 -0
  394. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/integrations/tools/trello.py +101 -0
  395. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/__init__.py +26 -0
  396. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/base.py +68 -0
  397. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/docker_provider.py +536 -0
  398. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/microvm.py +2301 -0
  399. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/none.py +148 -0
  400. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/selector.py +130 -0
  401. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/subprocess.py +225 -0
  402. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/isolation/vz_provider.py +1506 -0
  403. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/__init__.py +10 -0
  404. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/manifests.py +161 -0
  405. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/proxy.py +273 -0
  406. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/registry.py +120 -0
  407. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/risk.py +92 -0
  408. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/sandbox.py +173 -0
  409. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/server.py +945 -0
  410. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mcp/session.py +282 -0
  411. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/__init__.py +14 -0
  412. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/evidence.py +97 -0
  413. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/models.py +101 -0
  414. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/memory_graph/store.py +240 -0
  415. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/__init__.py +21 -0
  416. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/gates.py +44 -0
  417. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/loop_integration.py +42 -0
  418. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/primitives.py +64 -0
  419. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/registry.py +131 -0
  420. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/runtime.py +37 -0
  421. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/methodology/schema.py +56 -0
  422. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/migrate/__init__.py +391 -0
  423. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/__init__.py +188 -0
  424. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/approval.py +92 -0
  425. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/audit_retention.py +92 -0
  426. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/capabilities.py +318 -0
  427. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/capability_gate.py +144 -0
  428. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/__init__.py +20 -0
  429. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/android.py +75 -0
  430. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/ios.py +143 -0
  431. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/report.py +49 -0
  432. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/compliance/review_notes.py +39 -0
  433. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/device_posture.py +72 -0
  434. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/feature_flags.py +74 -0
  435. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/fixtures_registry.py +137 -0
  436. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/hashing.py +49 -0
  437. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/manifest.py +109 -0
  438. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/mcp_bridge.py +84 -0
  439. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/mock_store.py +46 -0
  440. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/models.py +197 -0
  441. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/offline_queue.py +145 -0
  442. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/policy.py +157 -0
  443. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/policy_context.py +126 -0
  444. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/privacy_budget.py +193 -0
  445. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/provenance.py +55 -0
  446. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/recorder.py +169 -0
  447. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/redaction.py +86 -0
  448. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/replay.py +105 -0
  449. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/runtime_pack.py +102 -0
  450. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/sbom.py +79 -0
  451. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/schema_validator.py +66 -0
  452. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/secure_store.py +178 -0
  453. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/siem_export.py +121 -0
  454. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/signing.py +91 -0
  455. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/simulator.py +170 -0
  456. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile/validation.py +417 -0
  457. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/mobile_sdk_mapping.py +226 -0
  458. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/notebook/__init__.py +374 -0
  459. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/notifications/__init__.py +0 -0
  460. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/notifications/outbox.py +38 -0
  461. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/__init__.py +57 -0
  462. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/exporters.py +200 -0
  463. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/hashing.py +36 -0
  464. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/loaders.py +172 -0
  465. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/mcp_drift.py +134 -0
  466. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/models.py +140 -0
  467. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/openinference_mapping.py +119 -0
  468. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/otel_mapping.py +455 -0
  469. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/otlp_exporter.py +271 -0
  470. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/redaction.py +95 -0
  471. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/observability/validation.py +82 -0
  472. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/optimizer/__init__.py +21 -0
  473. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/optimizer/local.py +209 -0
  474. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/__init__.py +1 -0
  475. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/capability_negotiation.py +106 -0
  476. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/codegraph_event_integration.py +274 -0
  477. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/codegraph_manager.py +225 -0
  478. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/cross_linker.py +125 -0
  479. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/event_broker.py +374 -0
  480. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/events.py +78 -0
  481. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/runtime_router.py +505 -0
  482. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/orchestration/supervisor.py +622 -0
  483. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/__init__.py +87 -0
  484. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/_bypass.py +49 -0
  485. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/cache_breakpoints.py +142 -0
  486. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/capabilities.py +99 -0
  487. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/capability_card_events.py +43 -0
  488. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/capability_snapshot.py +226 -0
  489. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/cost_record.py +209 -0
  490. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/denial_events.py +174 -0
  491. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/envelope.py +30 -0
  492. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/errors.py +56 -0
  493. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/event_envelope.py +77 -0
  494. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/events.py +476 -0
  495. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/evidence_refs.py +57 -0
  496. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/failure_autopsy.py +66 -0
  497. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/mcp_decision_events.py +44 -0
  498. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/run_contract.py +77 -0
  499. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/run_receipt.py +77 -0
  500. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/runtime_capability.py +69 -0
  501. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/schemas.py +187 -0
  502. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/stable_ids.py +212 -0
  503. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/trust_diff.py +41 -0
  504. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/protocol/typed_events.py +1149 -0
  505. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/provider_action.py +1315 -0
  506. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/__init__.py +124 -0
  507. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/agentrouter_proxy.py +211 -0
  508. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/anthropic.py +503 -0
  509. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/anthropic_cost.py +130 -0
  510. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/anthropic_estimator.py +268 -0
  511. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/arena_provider.py +162 -0
  512. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/base.py +257 -0
  513. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/budget_preflight.py +102 -0
  514. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/client.py +54 -0
  515. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/e2e_evidence.py +115 -0
  516. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/fallback.py +108 -0
  517. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/models_dev.py +31023 -0
  518. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/openai_compatible.py +2145 -0
  519. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/redaction.py +33 -0
  520. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/registry.py +25 -0
  521. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/providers/router.py +34 -0
  522. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/release_intelligence/__init__.py +328 -0
  523. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/release_snapshots/__init__.py +207 -0
  524. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/__init__.py +113 -0
  525. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_capabilities.py +103 -0
  526. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_events.py +206 -0
  527. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_flight.py +68 -0
  528. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_ir.py +420 -0
  529. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_mcp.py +59 -0
  530. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_policy.py +230 -0
  531. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/diff_simulation.py +71 -0
  532. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/export.py +103 -0
  533. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/loaders.py +257 -0
  534. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/models.py +361 -0
  535. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/redaction.py +118 -0
  536. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/run_diff/timeline.py +306 -0
  537. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/agent_loop.py +105 -0
  538. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/capability.py +20 -0
  539. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/mode.py +116 -0
  540. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/registry.py +30 -0
  541. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/response_cache.py +96 -0
  542. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/streaming.py +238 -0
  543. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/tool_runtime.py +32 -0
  544. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime/turn_manager.py +501 -0
  545. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/__init__.py +138 -0
  546. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/exporters.py +197 -0
  547. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/hashing.py +125 -0
  548. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/loader.py +147 -0
  549. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/models.py +415 -0
  550. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/redaction.py +146 -0
  551. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/registry.py +244 -0
  552. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/scaffold.py +182 -0
  553. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/runtime_packs/validation.py +412 -0
  554. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/schemas/__init__.py +17 -0
  555. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/schemas/audit_events.py +62 -0
  556. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/schemas/replay_capability.py +133 -0
  557. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/__init__.py +5 -0
  558. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/_bypass_rate_limit.py +83 -0
  559. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/adaptive_confirmation.py +123 -0
  560. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/context.py +119 -0
  561. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/edit_loop.py +604 -0
  562. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/enforcement.py +525 -0
  563. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/injection_patterns.py +152 -0
  564. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/monitoring.py +215 -0
  565. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/plan.py +459 -0
  566. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_linter.py +307 -0
  567. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/__init__.py +204 -0
  568. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/ci-cd.yaml +25 -0
  569. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/data-science.yaml +24 -0
  570. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/development.yaml +23 -0
  571. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/open-source.yaml +20 -0
  572. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/policy_templates/templates/regulated-industry.yaml +22 -0
  573. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/profiles.py +174 -0
  574. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/prompt_guard.py +110 -0
  575. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/redaction.py +98 -0
  576. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/repair_loop.py +185 -0
  577. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/review.py +131 -0
  578. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/sandbox.py +2753 -0
  579. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/transactions.py +201 -0
  580. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/trust.py +202 -0
  581. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/security/validation.py +72 -0
  582. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/__init__.py +45 -0
  583. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/models.py +158 -0
  584. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/pricing.py +58 -0
  585. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/simulation/simulator.py +409 -0
  586. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/__init__.py +6 -0
  587. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/advisory_lock.py +78 -0
  588. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/atomic.py +39 -0
  589. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/indexed_store.py +161 -0
  590. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/jsonl.py +170 -0
  591. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/storage/sqlite.py +242 -0
  592. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/stream/__init__.py +0 -0
  593. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/stream/websocket.py +288 -0
  594. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph/__init__.py +94 -0
  595. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/__init__.py +75 -0
  596. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/adapters/__init__.py +47 -0
  597. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/adapters/native.py +151 -0
  598. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/compiler.py +217 -0
  599. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/enrich.py +56 -0
  600. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/exporters.py +160 -0
  601. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/hashing.py +44 -0
  602. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/models.py +207 -0
  603. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/provenance.py +48 -0
  604. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/swarmgraph_ir/validation.py +121 -0
  605. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/__init__.py +16 -0
  606. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/executor.py +513 -0
  607. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/models.py +106 -0
  608. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/scheduler.py +237 -0
  609. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tasks/storage.py +244 -0
  610. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/telemetry/__init__.py +12 -0
  611. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/telemetry/otlp_exporter.py +173 -0
  612. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/time_travel/__init__.py +390 -0
  613. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/__init__.py +47 -0
  614. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/builtin.py +132 -0
  615. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/protocol.py +59 -0
  616. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/registry.py +51 -0
  617. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/shell.py +171 -0
  618. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/wrapping.py +42 -0
  619. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tools/write.py +220 -0
  620. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tracing/__init__.py +6 -0
  621. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tracing/jsonl_writer.py +43 -0
  622. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/__init__.py +21 -0
  623. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/app.py +121 -0
  624. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/data.py +288 -0
  625. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/screen.py +1005 -0
  626. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/search.py +126 -0
  627. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/sparkline.py +36 -0
  628. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/tcss/base.tcss +140 -0
  629. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/theme.py +284 -0
  630. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/theme_extras.py +74 -0
  631. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/tweaks.py +89 -0
  632. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/__init__.py +22 -0
  633. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/audit_view.py +50 -0
  634. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/codegraph.py +163 -0
  635. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/hitl_view.py +238 -0
  636. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/methodology.py +111 -0
  637. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/modal_shell.py +93 -0
  638. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/plan_view.py +84 -0
  639. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/providers_view.py +444 -0
  640. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/runs_view.py +174 -0
  641. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/runtimes_view.py +87 -0
  642. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/sessions_view.py +180 -0
  643. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/settings_view.py +445 -0
  644. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/side_panel.py +18 -0
  645. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/views/tweaks_view.py +109 -0
  646. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/__init__.py +8 -0
  647. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/activity_tray.py +144 -0
  648. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/approval_bar.py +175 -0
  649. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/approval_card.py +140 -0
  650. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/banner.py +52 -0
  651. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/capability_banner.py +91 -0
  652. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/capability_gates.py +69 -0
  653. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/command_palette.py +129 -0
  654. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/context_meter.py +59 -0
  655. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/diff_block.py +129 -0
  656. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/empty_state.py +73 -0
  657. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/header.py +197 -0
  658. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/help_screen.py +104 -0
  659. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/input_area.py +235 -0
  660. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/jump_pill.py +72 -0
  661. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/keycap_hint.py +47 -0
  662. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/markdown_block.py +173 -0
  663. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/mcp_banner.py +60 -0
  664. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/message.py +5 -0
  665. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/minimap.py +129 -0
  666. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/mode_badge.py +84 -0
  667. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/reasoning_trace.py +67 -0
  668. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/risk_badge.py +64 -0
  669. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/search_bar.py +161 -0
  670. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/slash_menu.py +167 -0
  671. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/status_bar.py +121 -0
  672. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/swarm_graph.py +335 -0
  673. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/toaster.py +108 -0
  674. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/tool_card.py +93 -0
  675. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/tool_group.py +135 -0
  676. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/transcript.py +271 -0
  677. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/tui/widgets/trust_prompt.py +108 -0
  678. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/vision/__init__.py +421 -0
  679. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/voice/__init__.py +301 -0
  680. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/wasm_parser/__init__.py +268 -0
  681. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/__init__.py +1 -0
  682. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/agui_bridge.py +67 -0
  683. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/keys.py +10 -0
  684. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/route_fates.py +31 -0
  685. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes.py +1356 -0
  686. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_arena.py +172 -0
  687. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_codegraph.py +389 -0
  688. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_helpers.py +78 -0
  689. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/routes_tasks.py +127 -0
  690. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/web/server.py +139 -0
  691. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace/__init__.py +33 -0
  692. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace/entrypoint.py +37 -0
  693. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace/symbols.py +334 -0
  694. agent_runtime_cockpit-0.1.0a0/src/agent_runtime_cockpit/workspace.py +170 -0
  695. agent_runtime_cockpit-0.1.0a0/test_security_manual.py +182 -0
  696. agent_runtime_cockpit-0.1.0a0/tests/__init__.py +0 -0
  697. agent_runtime_cockpit-0.1.0a0/tests/a2a/__init__.py +1 -0
  698. agent_runtime_cockpit-0.1.0a0/tests/a2a/test_client.py +86 -0
  699. agent_runtime_cockpit-0.1.0a0/tests/a2a/test_generator.py +74 -0
  700. agent_runtime_cockpit-0.1.0a0/tests/a2a/test_models.py +55 -0
  701. agent_runtime_cockpit-0.1.0a0/tests/adapters/__init__.py +0 -0
  702. agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/__init__.py +28 -0
  703. agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_denial_event_assertions.py +33 -0
  704. agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_fake_provider_fixture.py +24 -0
  705. agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_fixture_project_loader.py +22 -0
  706. agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_golden_file_compare.py +21 -0
  707. agent_runtime_cockpit-0.1.0a0/tests/adapters/_shared/_typed_run_event_conformance.py +34 -0
  708. agent_runtime_cockpit-0.1.0a0/tests/adapters/ag2/__init__.py +0 -0
  709. agent_runtime_cockpit-0.1.0a0/tests/adapters/ag2/test_adapter.py +43 -0
  710. agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/__init__.py +0 -0
  711. agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/fixtures/generic_project/config.yaml +3 -0
  712. agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/fixtures/generic_project/requirements.txt +3 -0
  713. agent_runtime_cockpit-0.1.0a0/tests/adapters/agno/test_detection.py +56 -0
  714. agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/__init__.py +0 -0
  715. agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/fixtures/generic_project/config.yaml +3 -0
  716. agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/fixtures/generic_project/requirements.txt +3 -0
  717. agent_runtime_cockpit-0.1.0a0/tests/adapters/arc_runtime_sdk/test_detection.py +53 -0
  718. agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/__init__.py +0 -0
  719. agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/fixtures/generic_project/config.yaml +3 -0
  720. agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/fixtures/generic_project/requirements.txt +3 -0
  721. agent_runtime_cockpit-0.1.0a0/tests/adapters/browser_use/test_detection.py +53 -0
  722. agent_runtime_cockpit-0.1.0a0/tests/adapters/crewai/__init__.py +0 -0
  723. agent_runtime_cockpit-0.1.0a0/tests/adapters/crewai/test_adapter.py +26 -0
  724. agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/__init__.py +0 -0
  725. agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_adapter.py +159 -0
  726. agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_detection.py +205 -0
  727. agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_export.py +270 -0
  728. agent_runtime_cockpit-0.1.0a0/tests/adapters/dspy/test_runner.py +215 -0
  729. agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/__init__.py +0 -0
  730. agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/test_adapter.py +118 -0
  731. agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/test_detection.py +197 -0
  732. agent_runtime_cockpit-0.1.0a0/tests/adapters/google_adk/test_export.py +221 -0
  733. agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/__init__.py +0 -0
  734. agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_adapter.py +161 -0
  735. agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_detection.py +220 -0
  736. agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_export.py +270 -0
  737. agent_runtime_cockpit-0.1.0a0/tests/adapters/haystack/test_runner.py +190 -0
  738. agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/__init__.py +1 -0
  739. agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/fixtures/retrieval_pipeline/pipeline.py +35 -0
  740. agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/fixtures/trivial_chain/chain.py +22 -0
  741. agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/test_detection.py +321 -0
  742. agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/test_export.py +310 -0
  743. agent_runtime_cockpit-0.1.0a0/tests/adapters/langchain/test_streaming.py +337 -0
  744. agent_runtime_cockpit-0.1.0a0/tests/adapters/langgraph/__init__.py +0 -0
  745. agent_runtime_cockpit-0.1.0a0/tests/adapters/langgraph/test_real_loading.py +81 -0
  746. agent_runtime_cockpit-0.1.0a0/tests/adapters/langgraph/test_replay_capability.py +409 -0
  747. agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/__init__.py +0 -0
  748. agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/fixtures/generic_project/config.yaml +3 -0
  749. agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/fixtures/generic_project/requirements.txt +3 -0
  750. agent_runtime_cockpit-0.1.0a0/tests/adapters/letta/test_detection.py +75 -0
  751. agent_runtime_cockpit-0.1.0a0/tests/adapters/llamaindex/test_export_target.py +72 -0
  752. agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/__init__.py +0 -0
  753. agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/fixtures/generic_project/config.yaml +3 -0
  754. agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/fixtures/generic_project/requirements.txt +3 -0
  755. agent_runtime_cockpit-0.1.0a0/tests/adapters/lmarena/test_detection.py +45 -0
  756. agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/__init__.py +0 -0
  757. agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/test_adapter.py +150 -0
  758. agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/test_detection.py +247 -0
  759. agent_runtime_cockpit-0.1.0a0/tests/adapters/mcp_sdk/test_export.py +339 -0
  760. agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/__init__.py +0 -0
  761. agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/fixtures/generic_project/config.yaml +3 -0
  762. agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/fixtures/generic_project/requirements.txt +3 -0
  763. agent_runtime_cockpit-0.1.0a0/tests/adapters/metagpt/test_detection.py +42 -0
  764. agent_runtime_cockpit-0.1.0a0/tests/adapters/openai_agents/__init__.py +0 -0
  765. agent_runtime_cockpit-0.1.0a0/tests/adapters/openai_agents/test_export_target.py +300 -0
  766. agent_runtime_cockpit-0.1.0a0/tests/adapters/openai_agents/test_streaming.py +117 -0
  767. agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/__init__.py +0 -0
  768. agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/fixtures/generic_project/config.yaml +3 -0
  769. agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/fixtures/generic_project/requirements.txt +3 -0
  770. agent_runtime_cockpit-0.1.0a0/tests/adapters/praisonai/test_detection.py +42 -0
  771. agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/__init__.py +5 -0
  772. agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/fixtures/multi_tool_agent/agent.py +26 -0
  773. agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/fixtures/simple_agent/agent.py +20 -0
  774. agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/test_detection.py +253 -0
  775. agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/test_export.py +189 -0
  776. agent_runtime_cockpit-0.1.0a0/tests/adapters/pydantic_ai/test_streaming.py +199 -0
  777. agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/__init__.py +0 -0
  778. agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/test_adapter.py +79 -0
  779. agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/test_detection.py +141 -0
  780. agent_runtime_cockpit-0.1.0a0/tests/adapters/semantic_kernel/test_export.py +95 -0
  781. agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/__init__.py +0 -0
  782. agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_adapter.py +77 -0
  783. agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_detection.py +113 -0
  784. agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_export.py +81 -0
  785. agent_runtime_cockpit-0.1.0a0/tests/adapters/smolagents/test_runner.py +138 -0
  786. agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/__init__.py +0 -0
  787. agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/fixtures/generic_project/config.yaml +3 -0
  788. agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/fixtures/generic_project/requirements.txt +3 -0
  789. agent_runtime_cockpit-0.1.0a0/tests/adapters/strands/test_detection.py +54 -0
  790. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/__init__.py +0 -0
  791. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_adaptive_consensus.py +155 -0
  792. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_approval.py +219 -0
  793. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_arena.py +389 -0
  794. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_catalog.py +144 -0
  795. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_checkpoint.py +177 -0
  796. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_cli.py +147 -0
  797. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_compat.py +119 -0
  798. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_config_retry.py +162 -0
  799. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_consensus_escrow.py +257 -0
  800. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_decomposition_events.py +302 -0
  801. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_detectors_fallback.py +287 -0
  802. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_event_buffer_models.py +208 -0
  803. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_graph_viz.py +145 -0
  804. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_init.py +130 -0
  805. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_middleware_request_context.py +219 -0
  806. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_nodes.py +975 -0
  807. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_notifications.py +677 -0
  808. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_phase4.py +401 -0
  809. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_phase56.py +384 -0
  810. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_provider_hooks.py +383 -0
  811. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_providers_guardrail.py +177 -0
  812. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_scheduler_security.py +219 -0
  813. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_task_graph_state_worker.py +252 -0
  814. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_testing.py +146 -0
  815. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_bridge_utils.py +270 -0
  816. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_gateway_backend.py +118 -0
  817. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_mapping.py +77 -0
  818. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_real_execution.py +62 -0
  819. agent_runtime_cockpit-0.1.0a0/tests/adapters/swarmgraph/test_security.py +232 -0
  820. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_adapter_module_pairs.py +96 -0
  821. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_ag_ui_mappings.py +79 -0
  822. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_agno.py +116 -0
  823. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_arc_runtime_sdk.py +184 -0
  824. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_arc_runtime_sdk_pack.py +147 -0
  825. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_arc_runtime_sdk_protocol.py +101 -0
  826. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_browser_use.py +131 -0
  827. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_budget_checkpoint.py +72 -0
  828. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_conformance_targets.py +104 -0
  829. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_crewai_coverage.py +389 -0
  830. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_detection_mutations.py +144 -0
  831. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_langgraph_coverage.py +387 -0
  832. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_letta.py +139 -0
  833. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_lmarena_adapter.py +134 -0
  834. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_metagpt_coverage.py +332 -0
  835. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_openai_agents_coverage.py +235 -0
  836. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_praisonai_coverage.py +293 -0
  837. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_pydantic_ai_adapter.py +126 -0
  838. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_run_budget_scope.py +66 -0
  839. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_shared_helpers.py +54 -0
  840. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_strands.py +181 -0
  841. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_swarmgraph_coverage.py +252 -0
  842. agent_runtime_cockpit-0.1.0a0/tests/adapters/test_swarmgraph_ide_event_contract.py +83 -0
  843. agent_runtime_cockpit-0.1.0a0/tests/advisor/test_advisor_r94.py +441 -0
  844. agent_runtime_cockpit-0.1.0a0/tests/arena/test_arena_integration.py +340 -0
  845. agent_runtime_cockpit-0.1.0a0/tests/arena/test_arena_models.py +53 -0
  846. agent_runtime_cockpit-0.1.0a0/tests/arena/test_arena_service.py +227 -0
  847. agent_runtime_cockpit-0.1.0a0/tests/audit/__init__.py +0 -0
  848. agent_runtime_cockpit-0.1.0a0/tests/audit/test_audit_internals_coverage.py +283 -0
  849. agent_runtime_cockpit-0.1.0a0/tests/audit/test_hitl.py +147 -0
  850. agent_runtime_cockpit-0.1.0a0/tests/audit/test_hmac_chain.py +269 -0
  851. agent_runtime_cockpit-0.1.0a0/tests/audit/test_redaction.py +186 -0
  852. agent_runtime_cockpit-0.1.0a0/tests/audit/test_run_keyed_audit.py +93 -0
  853. agent_runtime_cockpit-0.1.0a0/tests/audit/test_runner_integration.py +122 -0
  854. agent_runtime_cockpit-0.1.0a0/tests/audit/test_schema.py +205 -0
  855. agent_runtime_cockpit-0.1.0a0/tests/audit/test_session.py +167 -0
  856. agent_runtime_cockpit-0.1.0a0/tests/audit/test_storage.py +195 -0
  857. agent_runtime_cockpit-0.1.0a0/tests/audit/test_streaming_verifier.py +643 -0
  858. agent_runtime_cockpit-0.1.0a0/tests/audit/test_verifier_with_bypass_warnings.py +117 -0
  859. agent_runtime_cockpit-0.1.0a0/tests/auth/__init__.py +0 -0
  860. agent_runtime_cockpit-0.1.0a0/tests/auth/test_audit_report_p0_fixes.py +120 -0
  861. agent_runtime_cockpit-0.1.0a0/tests/auth/test_auth_manager.py +348 -0
  862. agent_runtime_cockpit-0.1.0a0/tests/auth/test_auth_oauth.py +758 -0
  863. agent_runtime_cockpit-0.1.0a0/tests/auth/test_cli_auth.py +143 -0
  864. agent_runtime_cockpit-0.1.0a0/tests/battle/__init__.py +35 -0
  865. agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_escrow.py +120 -0
  866. agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_hitl.py +85 -0
  867. agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_models.py +231 -0
  868. agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_replay.py +113 -0
  869. agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_runner.py +338 -0
  870. agent_runtime_cockpit-0.1.0a0/tests/battle/test_battle_store.py +217 -0
  871. agent_runtime_cockpit-0.1.0a0/tests/budget/__init__.py +0 -0
  872. agent_runtime_cockpit-0.1.0a0/tests/budget/test_harden_budget.py +161 -0
  873. agent_runtime_cockpit-0.1.0a0/tests/budget/test_legacy_vector.py +121 -0
  874. agent_runtime_cockpit-0.1.0a0/tests/budget/test_persistence.py +149 -0
  875. agent_runtime_cockpit-0.1.0a0/tests/budget/test_runtime_context.py +53 -0
  876. agent_runtime_cockpit-0.1.0a0/tests/budget/test_schema_edge_cases.py +166 -0
  877. agent_runtime_cockpit-0.1.0a0/tests/budget/test_storage_handles.py +113 -0
  878. agent_runtime_cockpit-0.1.0a0/tests/budget/test_token_wallet.py +132 -0
  879. agent_runtime_cockpit-0.1.0a0/tests/budget/test_wallet_display.py +88 -0
  880. agent_runtime_cockpit-0.1.0a0/tests/capabilities/__init__.py +1 -0
  881. agent_runtime_cockpit-0.1.0a0/tests/capabilities/conftest.py +190 -0
  882. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_enforcement.py +305 -0
  883. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_from_ir.py +353 -0
  884. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_from_ir_adapters_coverage.py +536 -0
  885. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_from_mcp_coverage.py +325 -0
  886. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_hashing.py +210 -0
  887. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_models.py +257 -0
  888. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_policy.py +332 -0
  889. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_policy_validation_coverage.py +389 -0
  890. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_redaction.py +211 -0
  891. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_registry_coverage.py +246 -0
  892. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_signing.py +474 -0
  893. agent_runtime_cockpit-0.1.0a0/tests/capabilities/test_validation.py +428 -0
  894. agent_runtime_cockpit-0.1.0a0/tests/cli/__init__.py +0 -0
  895. agent_runtime_cockpit-0.1.0a0/tests/cli/conftest.py +109 -0
  896. agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/doctor_swarmgraph.json +34 -0
  897. agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/health.json +31 -0
  898. agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/status_empty.json +37 -0
  899. agent_runtime_cockpit-0.1.0a0/tests/cli/snapshots/version.json +16 -0
  900. agent_runtime_cockpit-0.1.0a0/tests/cli/test_advisor_guard.py +70 -0
  901. agent_runtime_cockpit-0.1.0a0/tests/cli/test_audit_query.py +190 -0
  902. agent_runtime_cockpit-0.1.0a0/tests/cli/test_audit_vault.py +93 -0
  903. agent_runtime_cockpit-0.1.0a0/tests/cli/test_audit_verify_integrations.py +85 -0
  904. agent_runtime_cockpit-0.1.0a0/tests/cli/test_battle_cli.py +62 -0
  905. agent_runtime_cockpit-0.1.0a0/tests/cli/test_ci.py +289 -0
  906. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_a2a_coverage.py +192 -0
  907. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_agents_md_coverage.py +182 -0
  908. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_arena.py +77 -0
  909. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_audit_coverage.py +359 -0
  910. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_battle_coverage.py +264 -0
  911. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_capabilities_coverage.py +443 -0
  912. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_capabilities_policy_coverage.py +264 -0
  913. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_ci_coverage.py +51 -0
  914. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_codegraph.py +171 -0
  915. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_discoverability.py +189 -0
  916. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_dispatch_contract.py +172 -0
  917. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_error_paths.py +41 -0
  918. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_eval.py +181 -0
  919. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_flight_coverage.py +50 -0
  920. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_hitl_replay_simulate_diff_coverage.py +68 -0
  921. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_mcp_coverage.py +261 -0
  922. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_methodology.py +251 -0
  923. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_mgmt_eval_coverage.py +374 -0
  924. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_mobile_coverage.py +680 -0
  925. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_obs_coverage.py +376 -0
  926. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_profiles_coverage.py +79 -0
  927. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_prompt_coverage.py +34 -0
  928. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_providers_coverage.py +354 -0
  929. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_receipt_coverage.py +57 -0
  930. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_run_gating.py +30 -0
  931. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_runs.py +59 -0
  932. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_runtime_pack_coverage.py +241 -0
  933. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_runtimes_diff.py +76 -0
  934. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_serve.py +47 -0
  935. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_smoke.py +47 -0
  936. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_snapshots.py +191 -0
  937. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_studio_workspace_coverage.py +60 -0
  938. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_swarmgraph_coverage.py +46 -0
  939. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cli_task_coverage.py +251 -0
  940. agent_runtime_cockpit-0.1.0a0/tests/cli/test_cockpit_receipts.py +324 -0
  941. agent_runtime_cockpit-0.1.0a0/tests/cli/test_diff_apply.py +72 -0
  942. agent_runtime_cockpit-0.1.0a0/tests/cli/test_doctor_perf.py +42 -0
  943. agent_runtime_cockpit-0.1.0a0/tests/cli/test_events_cli.py +281 -0
  944. agent_runtime_cockpit-0.1.0a0/tests/cli/test_git_native.py +251 -0
  945. agent_runtime_cockpit-0.1.0a0/tests/cli/test_isolation_selector_cli.py +73 -0
  946. agent_runtime_cockpit-0.1.0a0/tests/cli/test_minimal_install_contract.py +197 -0
  947. agent_runtime_cockpit-0.1.0a0/tests/cli/test_policy_simulator.py +83 -0
  948. agent_runtime_cockpit-0.1.0a0/tests/cli/test_r86_r87_r88_r89_dod.py +95 -0
  949. agent_runtime_cockpit-0.1.0a0/tests/cli/test_replay_diff.py +82 -0
  950. agent_runtime_cockpit-0.1.0a0/tests/cli/test_run_timeout.py +92 -0
  951. agent_runtime_cockpit-0.1.0a0/tests/cli/test_task_cli.py +146 -0
  952. agent_runtime_cockpit-0.1.0a0/tests/cli/test_testbench.py +264 -0
  953. agent_runtime_cockpit-0.1.0a0/tests/cli/test_workspace_init_isolation.py +56 -0
  954. agent_runtime_cockpit-0.1.0a0/tests/cli/test_workspace_inventory.py +111 -0
  955. agent_runtime_cockpit-0.1.0a0/tests/cli/test_workspace_search.py +96 -0
  956. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/__init__.py +0 -0
  957. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_repl_adapters_coverage.py +827 -0
  958. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_session_aliases_batch_coverage.py +485 -0
  959. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_slash_commands_coverage.py +737 -0
  960. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_slash_model_info.py +44 -0
  961. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_slash_models.py +137 -0
  962. agent_runtime_cockpit-0.1.0a0/tests/cli_repl/test_trust_prompt.py +92 -0
  963. agent_runtime_cockpit-0.1.0a0/tests/cloud/__init__.py +0 -0
  964. agent_runtime_cockpit-0.1.0a0/tests/cloud/test_budget_broker.py +152 -0
  965. agent_runtime_cockpit-0.1.0a0/tests/cloud/test_default_off_invariant.py +85 -0
  966. agent_runtime_cockpit-0.1.0a0/tests/cloud/test_observability_bridge.py +111 -0
  967. agent_runtime_cockpit-0.1.0a0/tests/cloud/test_pricing_feed.py +213 -0
  968. agent_runtime_cockpit-0.1.0a0/tests/composer/test_composer_r98.py +410 -0
  969. agent_runtime_cockpit-0.1.0a0/tests/conftest.py +104 -0
  970. agent_runtime_cockpit-0.1.0a0/tests/context/__init__.py +1 -0
  971. agent_runtime_cockpit-0.1.0a0/tests/context/providers/__init__.py +0 -0
  972. agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/__init__.py +0 -0
  973. agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/test_models.py +95 -0
  974. agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/test_provider.py +188 -0
  975. agent_runtime_cockpit-0.1.0a0/tests/context/providers/codegraph/test_transport.py +152 -0
  976. agent_runtime_cockpit-0.1.0a0/tests/context/providers/test_base.py +120 -0
  977. agent_runtime_cockpit-0.1.0a0/tests/context/providers/test_registry.py +132 -0
  978. agent_runtime_cockpit-0.1.0a0/tests/context/test_agents_md.py +185 -0
  979. agent_runtime_cockpit-0.1.0a0/tests/context/test_codegraph_events.py +57 -0
  980. agent_runtime_cockpit-0.1.0a0/tests/context/test_compaction.py +229 -0
  981. agent_runtime_cockpit-0.1.0a0/tests/context/test_config_schema.py +131 -0
  982. agent_runtime_cockpit-0.1.0a0/tests/context/test_context_helpers_coverage.py +219 -0
  983. agent_runtime_cockpit-0.1.0a0/tests/context/test_context_pack_line_number.py +50 -0
  984. agent_runtime_cockpit-0.1.0a0/tests/context/test_handles.py +202 -0
  985. agent_runtime_cockpit-0.1.0a0/tests/context/test_measure_estimator_accuracy.py +39 -0
  986. agent_runtime_cockpit-0.1.0a0/tests/context/test_prefetch.py +265 -0
  987. agent_runtime_cockpit-0.1.0a0/tests/context/test_skill_md.py +86 -0
  988. agent_runtime_cockpit-0.1.0a0/tests/context/test_token_counter.py +87 -0
  989. agent_runtime_cockpit-0.1.0a0/tests/context/test_vercel_grep_gate.py +33 -0
  990. agent_runtime_cockpit-0.1.0a0/tests/continuum/__init__.py +0 -0
  991. agent_runtime_cockpit-0.1.0a0/tests/continuum/test_continuum_cli_r86b.py +86 -0
  992. agent_runtime_cockpit-0.1.0a0/tests/continuum/test_session_store_r86a.py +138 -0
  993. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/anthropic_cached_v1.json +14 -0
  994. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/anthropic_complete_v1.json +12 -0
  995. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/estimated_fallback_v1.json +12 -0
  996. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v1/minimal_v1.json +11 -0
  997. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/anthropic_cached_v1.json +13 -0
  998. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/anthropic_complete_v1.json +13 -0
  999. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/estimated_fallback_v1.json +13 -0
  1000. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/cost-record/v2/minimal_v1.json +13 -0
  1001. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v1/fake_minimal_v1.json +5 -0
  1002. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v1/gated_local_default_v1.json +5 -0
  1003. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v1/provider_backed_anthropic_v1.json +5 -0
  1004. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v2/fake_minimal_v1.json +11 -0
  1005. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v2/gated_local_default_v1.json +11 -0
  1006. agent_runtime_cockpit-0.1.0a0/tests/contract/fixtures/runtime-capability/v2/provider_backed_anthropic_v1.json +11 -0
  1007. agent_runtime_cockpit-0.1.0a0/tests/contract/test_cost_record_migration.py +243 -0
  1008. agent_runtime_cockpit-0.1.0a0/tests/contract/test_provider_protocol.py +94 -0
  1009. agent_runtime_cockpit-0.1.0a0/tests/contract/test_runtime_capability_migration.py +298 -0
  1010. agent_runtime_cockpit-0.1.0a0/tests/contract/test_slash_registry_contract.py +82 -0
  1011. agent_runtime_cockpit-0.1.0a0/tests/debug/test_debug_r99.py +317 -0
  1012. agent_runtime_cockpit-0.1.0a0/tests/e2e/test_bypass_warning_e2e.py +121 -0
  1013. agent_runtime_cockpit-0.1.0a0/tests/evals/conftest.py +3 -0
  1014. agent_runtime_cockpit-0.1.0a0/tests/evals/test_apply.py +293 -0
  1015. agent_runtime_cockpit-0.1.0a0/tests/evals/test_consensus_earlystop.py +183 -0
  1016. agent_runtime_cockpit-0.1.0a0/tests/evals/test_consensus_eval.py +306 -0
  1017. agent_runtime_cockpit-0.1.0a0/tests/evals/test_diff.py +91 -0
  1018. agent_runtime_cockpit-0.1.0a0/tests/evals/test_eval_artifact_b2p11.py +44 -0
  1019. agent_runtime_cockpit-0.1.0a0/tests/evals/test_eval_artifacts.py +417 -0
  1020. agent_runtime_cockpit-0.1.0a0/tests/evals/test_golden.py +123 -0
  1021. agent_runtime_cockpit-0.1.0a0/tests/evals/test_phase58_eval_trending.py +243 -0
  1022. agent_runtime_cockpit-0.1.0a0/tests/events/test_event_bus.py +485 -0
  1023. agent_runtime_cockpit-0.1.0a0/tests/events/test_model_changed_event.py +69 -0
  1024. agent_runtime_cockpit-0.1.0a0/tests/events/test_phase52_sse_push.py +353 -0
  1025. agent_runtime_cockpit-0.1.0a0/tests/events/test_phase55_log_rotation.py +99 -0
  1026. agent_runtime_cockpit-0.1.0a0/tests/events/test_quota_warning_typed_event_roundtrip.py +43 -0
  1027. agent_runtime_cockpit-0.1.0a0/tests/events/test_webhooks.py +179 -0
  1028. agent_runtime_cockpit-0.1.0a0/tests/extensions/test_extensions.py +185 -0
  1029. agent_runtime_cockpit-0.1.0a0/tests/fixtures/__init__.py +1 -0
  1030. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/AGENTS.md +93 -0
  1031. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/AGENTS.override.md +14 -0
  1032. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/hand_written/AGENTS.md +33 -0
  1033. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/llm_generated/AGENTS.md +50 -0
  1034. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/over_cap/AGENTS.md +413 -0
  1035. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/sub_a/AGENTS.md +11 -0
  1036. agent_runtime_cockpit-0.1.0a0/tests/fixtures/agents_md/root/sub_a/deep/AGENTS.md +8 -0
  1037. agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/failure_autopsy.timeout.json +26 -0
  1038. agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/run_contract.accepted.json +20 -0
  1039. agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/run_receipt.failed.json +21 -0
  1040. agent_runtime_cockpit-0.1.0a0/tests/fixtures/cockpit/run_receipt.success.json +23 -0
  1041. agent_runtime_cockpit-0.1.0a0/tests/fixtures/fake_crewai_export.py +49 -0
  1042. agent_runtime_cockpit-0.1.0a0/tests/fixtures/fake_langgraph_export.py +52 -0
  1043. agent_runtime_cockpit-0.1.0a0/tests/fixtures/loader.py +134 -0
  1044. agent_runtime_cockpit-0.1.0a0/tests/fixtures/test_cross_language.py +282 -0
  1045. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/__init__.py +1 -0
  1046. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_export.py +132 -0
  1047. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_index.py +111 -0
  1048. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_models.py +223 -0
  1049. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_recorder.py +292 -0
  1050. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_redaction.py +163 -0
  1051. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_retention.py +147 -0
  1052. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_safety.py +208 -0
  1053. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_segments.py +204 -0
  1054. agent_runtime_cockpit-0.1.0a0/tests/flight_recorder/test_verify.py +140 -0
  1055. agent_runtime_cockpit-0.1.0a0/tests/hitl/__init__.py +1 -0
  1056. agent_runtime_cockpit-0.1.0a0/tests/hitl/test_hitl_sqlite_store.py +331 -0
  1057. agent_runtime_cockpit-0.1.0a0/tests/hub/test_hub_r91.py +397 -0
  1058. agent_runtime_cockpit-0.1.0a0/tests/index/test_incremental_index_r_perf7.py +128 -0
  1059. agent_runtime_cockpit-0.1.0a0/tests/integration/__init__.py +0 -0
  1060. agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/ag2.golden.jsonl +5 -0
  1061. agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/crewai.golden.jsonl +4 -0
  1062. agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/langgraph.golden.jsonl +3 -0
  1063. agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/openai-agents.golden.jsonl +4 -0
  1064. agent_runtime_cockpit-0.1.0a0/tests/integration/fixtures/swarmgraph.golden.jsonl +5 -0
  1065. agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_crewai_smoke.py +84 -0
  1066. agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_provider_action_smoke.py +95 -0
  1067. agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_swarmgraph_langgraph_smoke.py +196 -0
  1068. agent_runtime_cockpit-0.1.0a0/tests/integration/real_runtime/test_swarmgraph_provider_e2e.py +158 -0
  1069. agent_runtime_cockpit-0.1.0a0/tests/integration/test_multi_adapter.py +66 -0
  1070. agent_runtime_cockpit-0.1.0a0/tests/integration/test_slash_run.py +279 -0
  1071. agent_runtime_cockpit-0.1.0a0/tests/integrations/__init__.py +1 -0
  1072. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/airtable_list.json +1 -0
  1073. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/asana_list.json +1 -0
  1074. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/clickup_list.json +1 -0
  1075. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/confluence_list.json +1 -0
  1076. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/discord_list.json +1 -0
  1077. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/figma_list.json +1 -0
  1078. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/github_projects_list.json +1 -0
  1079. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/google_workspace_list.json +1 -0
  1080. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/jira_list.json +1 -0
  1081. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/linear_list.json +1 -0
  1082. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/miro_list.json +1 -0
  1083. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/monday_list.json +1 -0
  1084. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/notion_list.json +1 -0
  1085. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/slack_list.json +1 -0
  1086. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/teams_list.json +1 -0
  1087. agent_runtime_cockpit-0.1.0a0/tests/integrations/cassettes/trello_list.json +1 -0
  1088. agent_runtime_cockpit-0.1.0a0/tests/integrations/test_audit_signed_chain.py +59 -0
  1089. agent_runtime_cockpit-0.1.0a0/tests/integrations/test_dod_gates.py +126 -0
  1090. agent_runtime_cockpit-0.1.0a0/tests/integrations/test_foundations.py +326 -0
  1091. agent_runtime_cockpit-0.1.0a0/tests/integrations/test_sdk_contract.py +516 -0
  1092. agent_runtime_cockpit-0.1.0a0/tests/integrations/test_sync_and_polish.py +101 -0
  1093. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/__init__.py +1 -0
  1094. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_airtable.py +80 -0
  1095. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_asana.py +80 -0
  1096. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_clickup.py +80 -0
  1097. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_confluence.py +80 -0
  1098. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_discord.py +80 -0
  1099. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_figma.py +80 -0
  1100. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_github_projects.py +80 -0
  1101. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_google_workspace.py +80 -0
  1102. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_jira.py +122 -0
  1103. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_linear.py +80 -0
  1104. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_miro.py +80 -0
  1105. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_monday.py +80 -0
  1106. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_notion.py +80 -0
  1107. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_slack.py +80 -0
  1108. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_teams.py +80 -0
  1109. agent_runtime_cockpit-0.1.0a0/tests/integrations/tools/test_trello.py +80 -0
  1110. agent_runtime_cockpit-0.1.0a0/tests/isolation/__init__.py +0 -0
  1111. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_container_provider.py +381 -0
  1112. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_docker_provider.py +371 -0
  1113. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_firecracker_smoke.py +682 -0
  1114. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_isolation.py +278 -0
  1115. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_lima_smoke.py +417 -0
  1116. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_microvm_preflight.py +772 -0
  1117. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_microvm_truth_guard.py +205 -0
  1118. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_providers_coverage.py +350 -0
  1119. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_resolver_coverage.py +158 -0
  1120. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_sandbox_audit_query.py +447 -0
  1121. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_selector.py +119 -0
  1122. agent_runtime_cockpit-0.1.0a0/tests/isolation/test_vz_proof.py +754 -0
  1123. agent_runtime_cockpit-0.1.0a0/tests/mcp/__init__.py +1 -0
  1124. agent_runtime_cockpit-0.1.0a0/tests/mcp/_fake_upstream.py +87 -0
  1125. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_call_cli.py +59 -0
  1126. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_client_session.py +338 -0
  1127. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_internals_coverage.py +252 -0
  1128. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_resource_risk_gate.py +87 -0
  1129. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_serve_stdout.py +30 -0
  1130. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_server.py +538 -0
  1131. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_session.py +185 -0
  1132. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_mcp_workbench.py +393 -0
  1133. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_proxy.py +251 -0
  1134. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_proxy_env.py +34 -0
  1135. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_risk.py +124 -0
  1136. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_sandbox.py +136 -0
  1137. agent_runtime_cockpit-0.1.0a0/tests/mcp/test_tool_runner.py +84 -0
  1138. agent_runtime_cockpit-0.1.0a0/tests/memory/test_memory_runtime_wiring.py +31 -0
  1139. agent_runtime_cockpit-0.1.0a0/tests/memory_graph/test_phase59_memory_graph.py +222 -0
  1140. agent_runtime_cockpit-0.1.0a0/tests/memory_graph/test_phase64_memory_evidence.py +111 -0
  1141. agent_runtime_cockpit-0.1.0a0/tests/methodology/__init__.py +0 -0
  1142. agent_runtime_cockpit-0.1.0a0/tests/methodology/test_phases_8_3_to_8_7.py +184 -0
  1143. agent_runtime_cockpit-0.1.0a0/tests/methodology/test_registry.py +67 -0
  1144. agent_runtime_cockpit-0.1.0a0/tests/methodology/test_schema.py +101 -0
  1145. agent_runtime_cockpit-0.1.0a0/tests/migrate/test_migrate_r102.py +448 -0
  1146. agent_runtime_cockpit-0.1.0a0/tests/mobile/__init__.py +0 -0
  1147. agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/duplicate_ids_manifest.json +57 -0
  1148. agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/invalid_background_plan.json +18 -0
  1149. agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/malicious_metadata_manifest.json +37 -0
  1150. agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/mock_action_plan.json +26 -0
  1151. agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/valid_mobile_runtime.json +512 -0
  1152. agent_runtime_cockpit-0.1.0a0/tests/mobile/fixtures/wrong_hash_manifest.json +11 -0
  1153. agent_runtime_cockpit-0.1.0a0/tests/mobile/test_mobile.py +717 -0
  1154. agent_runtime_cockpit-0.1.0a0/tests/notebook/test_notebook_r100.py +411 -0
  1155. agent_runtime_cockpit-0.1.0a0/tests/notifications/__init__.py +0 -0
  1156. agent_runtime_cockpit-0.1.0a0/tests/notifications/test_outbox.py +38 -0
  1157. agent_runtime_cockpit-0.1.0a0/tests/observability/__init__.py +0 -0
  1158. agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/corrupt_run.jsonl +3 -0
  1159. agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/minimal_run.jsonl +1 -0
  1160. agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/run-storage-001.jsonl +1 -0
  1161. agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/run_with_hitl.jsonl +6 -0
  1162. agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/run_with_tool.jsonl +1 -0
  1163. agent_runtime_cockpit-0.1.0a0/tests/observability/fixtures/secret_trace.jsonl +2 -0
  1164. agent_runtime_cockpit-0.1.0a0/tests/observability/test_genai_semconv.py +176 -0
  1165. agent_runtime_cockpit-0.1.0a0/tests/observability/test_mcp_drift.py +128 -0
  1166. agent_runtime_cockpit-0.1.0a0/tests/observability/test_mcp_propagator.py +110 -0
  1167. agent_runtime_cockpit-0.1.0a0/tests/observability/test_observability.py +321 -0
  1168. agent_runtime_cockpit-0.1.0a0/tests/observability/test_otel_cache_fields.py +72 -0
  1169. agent_runtime_cockpit-0.1.0a0/tests/observability/test_otel_semconv_1_41.py +190 -0
  1170. agent_runtime_cockpit-0.1.0a0/tests/observability/test_otlp_export.py +298 -0
  1171. agent_runtime_cockpit-0.1.0a0/tests/observability/test_run_id_loader.py +93 -0
  1172. agent_runtime_cockpit-0.1.0a0/tests/optimizer/__init__.py +0 -0
  1173. agent_runtime_cockpit-0.1.0a0/tests/optimizer/test_local_optimizer.py +164 -0
  1174. agent_runtime_cockpit-0.1.0a0/tests/orchestration/__init__.py +0 -0
  1175. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_capability_negotiation.py +181 -0
  1176. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_codegraph_event_integration.py +491 -0
  1177. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_codegraph_manager.py +197 -0
  1178. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_cross_linker.py +196 -0
  1179. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_enforcement_codegraph.py +125 -0
  1180. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_event_broker.py +339 -0
  1181. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_runtime_router_coverage.py +338 -0
  1182. agent_runtime_cockpit-0.1.0a0/tests/orchestration/test_supervisor.py +541 -0
  1183. agent_runtime_cockpit-0.1.0a0/tests/perf/test_phase360_buffer_caps.py +39 -0
  1184. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_cache_breakpoints.py +132 -0
  1185. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_capability_card_events.py +67 -0
  1186. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_cost_record.py +120 -0
  1187. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_event_type_parity.py +56 -0
  1188. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_message_event_registry_parity.py +43 -0
  1189. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_policy_bypass_warning_model.py +183 -0
  1190. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_protocol_conformance.py +89 -0
  1191. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_rs_ts_py_parity.py +58 -0
  1192. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_run_event_parity.py +229 -0
  1193. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_swarmgraph_cost_cache_fields.py +39 -0
  1194. agent_runtime_cockpit-0.1.0a0/tests/protocol/test_typed_events.py +366 -0
  1195. agent_runtime_cockpit-0.1.0a0/tests/providers/test_agentrouter_proxy.py +173 -0
  1196. agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_cache_control.py +265 -0
  1197. agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_client.py +184 -0
  1198. agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_cost_extraction.py +202 -0
  1199. agent_runtime_cockpit-0.1.0a0/tests/providers/test_anthropic_estimator.py +262 -0
  1200. agent_runtime_cockpit-0.1.0a0/tests/providers/test_capability_fields.py +111 -0
  1201. agent_runtime_cockpit-0.1.0a0/tests/providers/test_chinese_labs_vendors.py +205 -0
  1202. agent_runtime_cockpit-0.1.0a0/tests/providers/test_cost_pricing_refresh.py +92 -0
  1203. agent_runtime_cockpit-0.1.0a0/tests/providers/test_cost_rates_schema.py +101 -0
  1204. agent_runtime_cockpit-0.1.0a0/tests/providers/test_e2e_evidence.py +87 -0
  1205. agent_runtime_cockpit-0.1.0a0/tests/providers/test_fallback.py +148 -0
  1206. agent_runtime_cockpit-0.1.0a0/tests/providers/test_lazy_provider_loading.py +46 -0
  1207. agent_runtime_cockpit-0.1.0a0/tests/providers/test_message_ordering.py +91 -0
  1208. agent_runtime_cockpit-0.1.0a0/tests/providers/test_models_dev_catalog.py +145 -0
  1209. agent_runtime_cockpit-0.1.0a0/tests/providers/test_openai_compatible.py +449 -0
  1210. agent_runtime_cockpit-0.1.0a0/tests/providers/test_provider_client_contract.py +68 -0
  1211. agent_runtime_cockpit-0.1.0a0/tests/providers/test_provider_registry.py +55 -0
  1212. agent_runtime_cockpit-0.1.0a0/tests/providers/test_router.py +59 -0
  1213. agent_runtime_cockpit-0.1.0a0/tests/providers/test_tool_output_virtualization.py +157 -0
  1214. agent_runtime_cockpit-0.1.0a0/tests/release_intelligence/test_release_intelligence_r_proc1.py +175 -0
  1215. agent_runtime_cockpit-0.1.0a0/tests/release_snapshots/test_release_snapshots_r_proc2.py +238 -0
  1216. agent_runtime_cockpit-0.1.0a0/tests/reliability/test_phase361_timeouts.py +28 -0
  1217. agent_runtime_cockpit-0.1.0a0/tests/run_diff/__init__.py +1 -0
  1218. agent_runtime_cockpit-0.1.0a0/tests/run_diff/conftest.py +200 -0
  1219. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_cli_ir_diff.py +469 -0
  1220. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_cli_runs_diff_dod.py +46 -0
  1221. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_capabilities_coverage.py +136 -0
  1222. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_events_coverage.py +162 -0
  1223. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_ir.py +229 -0
  1224. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_ir_coverage.py +347 -0
  1225. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_diff_policy.py +119 -0
  1226. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_loaders_coverage.py +365 -0
  1227. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_models.py +261 -0
  1228. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_redaction_and_timeline.py +218 -0
  1229. agent_runtime_cockpit-0.1.0a0/tests/run_diff/test_timeline_export_coverage.py +291 -0
  1230. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_agent_loop.py +163 -0
  1231. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_hitl_gate.py +79 -0
  1232. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_prompt_caching.py +349 -0
  1233. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_provider_router_wiring.py +50 -0
  1234. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_response_cache.py +210 -0
  1235. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_retry_hardening.py +187 -0
  1236. agent_runtime_cockpit-0.1.0a0/tests/runtime/test_turn_manager.py +434 -0
  1237. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/__init__.py +1 -0
  1238. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/conftest.py +124 -0
  1239. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/fixtures/valid_ir.json +91 -0
  1240. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/fixtures/valid_minimal.json +75 -0
  1241. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/fixtures.py +50 -0
  1242. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_exporters.py +123 -0
  1243. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_hashing.py +107 -0
  1244. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_loader.py +118 -0
  1245. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_models.py +155 -0
  1246. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_redaction.py +114 -0
  1247. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_registry.py +148 -0
  1248. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_safety.py +65 -0
  1249. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_scaffold.py +96 -0
  1250. agent_runtime_cockpit-0.1.0a0/tests/runtime_packs/test_validation.py +404 -0
  1251. agent_runtime_cockpit-0.1.0a0/tests/security/__init__.py +0 -0
  1252. agent_runtime_cockpit-0.1.0a0/tests/security/injection/test_injection_patterns.py +90 -0
  1253. agent_runtime_cockpit-0.1.0a0/tests/security/policy_templates/test_policy_templates_r97.py +267 -0
  1254. agent_runtime_cockpit-0.1.0a0/tests/security/test_adaptive_confirmation.py +58 -0
  1255. agent_runtime_cockpit-0.1.0a0/tests/security/test_command_classifier.py +91 -0
  1256. agent_runtime_cockpit-0.1.0a0/tests/security/test_emit_policy_bypass_warning.py +92 -0
  1257. agent_runtime_cockpit-0.1.0a0/tests/security/test_enforcement.py +390 -0
  1258. agent_runtime_cockpit-0.1.0a0/tests/security/test_enforcement_context.py +376 -0
  1259. agent_runtime_cockpit-0.1.0a0/tests/security/test_enforcement_e2e.py +127 -0
  1260. agent_runtime_cockpit-0.1.0a0/tests/security/test_hardening.py +207 -0
  1261. agent_runtime_cockpit-0.1.0a0/tests/security/test_landlock_preflight.py +88 -0
  1262. agent_runtime_cockpit-0.1.0a0/tests/security/test_plan_models.py +655 -0
  1263. agent_runtime_cockpit-0.1.0a0/tests/security/test_profiles.py +151 -0
  1264. agent_runtime_cockpit-0.1.0a0/tests/security/test_prompt_guard.py +105 -0
  1265. agent_runtime_cockpit-0.1.0a0/tests/security/test_provider_key_redaction_contract.py +111 -0
  1266. agent_runtime_cockpit-0.1.0a0/tests/security/test_review_evidence.py +190 -0
  1267. agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_policy.py +60 -0
  1268. agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_policy_yaml.py +367 -0
  1269. agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_pr_abc.py +164 -0
  1270. agent_runtime_cockpit-0.1.0a0/tests/security/test_sandbox_pr_de.py +217 -0
  1271. agent_runtime_cockpit-0.1.0a0/tests/security/test_sbom_integrity.py +19 -0
  1272. agent_runtime_cockpit-0.1.0a0/tests/security/test_workspace_escape.py +251 -0
  1273. agent_runtime_cockpit-0.1.0a0/tests/simulation/__init__.py +0 -0
  1274. agent_runtime_cockpit-0.1.0a0/tests/simulation/test_mt2_pricing.py +93 -0
  1275. agent_runtime_cockpit-0.1.0a0/tests/simulation/test_safety.py +89 -0
  1276. agent_runtime_cockpit-0.1.0a0/tests/simulation/test_simulator.py +262 -0
  1277. agent_runtime_cockpit-0.1.0a0/tests/storage/__init__.py +0 -0
  1278. agent_runtime_cockpit-0.1.0a0/tests/storage/test_run_id_allowlist.py +63 -0
  1279. agent_runtime_cockpit-0.1.0a0/tests/storage/test_wal_checkpoint.py +39 -0
  1280. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/fixtures/beta_e2e/replay_fixture.json +31 -0
  1281. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_adaptive_consensus.py +326 -0
  1282. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_adaptive_consensus_hardening.py +626 -0
  1283. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_api_snapshot.py +124 -0
  1284. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arc_bridge.py +40 -0
  1285. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arc_bridge_beta_migration.py +132 -0
  1286. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arc_sdk_boundary.py +192 -0
  1287. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arena_battle_config.py +46 -0
  1288. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_arena_battle_fanout.py +202 -0
  1289. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_checkpoint_fuzz.py +92 -0
  1290. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_differentiators.py +738 -0
  1291. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_escrow.py +593 -0
  1292. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_event_integration.py +413 -0
  1293. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_consensus_invariants.py +457 -0
  1294. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_context_isolation.py +34 -0
  1295. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_dag_decomposition.py +63 -0
  1296. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_decomposition.py +75 -0
  1297. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_deprecated_decorator.py +87 -0
  1298. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_deserializer_fuzz.py +201 -0
  1299. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_detectors.py +136 -0
  1300. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_end_to_end_beta.py +200 -0
  1301. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_event_callback.py +24 -0
  1302. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_grouped_confidence.py +65 -0
  1303. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration10.py +535 -0
  1304. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration3.py +378 -0
  1305. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration4.py +404 -0
  1306. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration6.py +324 -0
  1307. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration7.py +352 -0
  1308. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration8.py +509 -0
  1309. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_iteration9.py +406 -0
  1310. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_langgraph_integration.py +152 -0
  1311. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_later_tier.py +286 -0
  1312. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_maf_integration.py +125 -0
  1313. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_model_roundtrip_phase107.py +208 -0
  1314. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_next_tier.py +531 -0
  1315. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_notifications_service.py +165 -0
  1316. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_parallel_execution.py +206 -0
  1317. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_phase107_109.py +497 -0
  1318. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_property_invariants.py +221 -0
  1319. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_provider_backed_and_resume.py +283 -0
  1320. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_provider_backed_live_optin.py +120 -0
  1321. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_provider_worker.py +219 -0
  1322. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_pydantic_ai_integration.py +101 -0
  1323. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_release_workflow_gating.py +55 -0
  1324. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_review_improvements.py +467 -0
  1325. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_risk_assessment.py +494 -0
  1326. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_sdk_adapters.py +135 -0
  1327. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_sdk_facade.py +56 -0
  1328. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph/test_sdk_features.py +110 -0
  1329. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/__init__.py +0 -0
  1330. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/conftest.py +3 -0
  1331. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/expected_hashes.json +5 -0
  1332. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/langgraph_branch.ir.json +224 -0
  1333. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/langgraph_branch.workflow.json +91 -0
  1334. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/mcp_graph.ir.json +151 -0
  1335. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/mcp_graph.workflow.json +55 -0
  1336. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/native_minimal.ir.json +136 -0
  1337. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/fixtures/native_minimal.workflow.json +51 -0
  1338. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_cli_ir.py +74 -0
  1339. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_importer_and_compiler.py +112 -0
  1340. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_models_hashing.py +79 -0
  1341. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_policy_bridge.py +94 -0
  1342. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_regression_hashes.py +35 -0
  1343. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_safety.py +128 -0
  1344. agent_runtime_cockpit-0.1.0a0/tests/swarmgraph_ir/test_validation.py +133 -0
  1345. agent_runtime_cockpit-0.1.0a0/tests/tasks/__init__.py +1 -0
  1346. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_scheduler_r92.py +242 -0
  1347. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_executor.py +357 -0
  1348. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_models.py +272 -0
  1349. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_real_ops.py +38 -0
  1350. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_sse_events.py +133 -0
  1351. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_task_storage.py +322 -0
  1352. agent_runtime_cockpit-0.1.0a0/tests/tasks/test_tasks_coverage.py +176 -0
  1353. agent_runtime_cockpit-0.1.0a0/tests/telemetry/__init__.py +1 -0
  1354. agent_runtime_cockpit-0.1.0a0/tests/telemetry/test_otlp_exporter.py +219 -0
  1355. agent_runtime_cockpit-0.1.0a0/tests/test_active_stream.py +149 -0
  1356. agent_runtime_cockpit-0.1.0a0/tests/test_adapter_status.py +220 -0
  1357. agent_runtime_cockpit-0.1.0a0/tests/test_adoption_protocol.py +1043 -0
  1358. agent_runtime_cockpit-0.1.0a0/tests/test_advisory_lock.py +102 -0
  1359. agent_runtime_cockpit-0.1.0a0/tests/test_advisory_lock_b2p13.py +46 -0
  1360. agent_runtime_cockpit-0.1.0a0/tests/test_agui_bridge.py +57 -0
  1361. agent_runtime_cockpit-0.1.0a0/tests/test_architecture_boundaries.py +38 -0
  1362. agent_runtime_cockpit-0.1.0a0/tests/test_artifact_license.py +72 -0
  1363. agent_runtime_cockpit-0.1.0a0/tests/test_audit_event_schema.py +195 -0
  1364. agent_runtime_cockpit-0.1.0a0/tests/test_budget_enforcer.py +123 -0
  1365. agent_runtime_cockpit-0.1.0a0/tests/test_capabilities.py +241 -0
  1366. agent_runtime_cockpit-0.1.0a0/tests/test_capability_snapshot.py +303 -0
  1367. agent_runtime_cockpit-0.1.0a0/tests/test_check_protocol_drift.py +34 -0
  1368. agent_runtime_cockpit-0.1.0a0/tests/test_check_silent_except.py +74 -0
  1369. agent_runtime_cockpit-0.1.0a0/tests/test_cli_batch.py +86 -0
  1370. agent_runtime_cockpit-0.1.0a0/tests/test_cli_doctor.py +30 -0
  1371. agent_runtime_cockpit-0.1.0a0/tests/test_cli_edit_loop.py +457 -0
  1372. agent_runtime_cockpit-0.1.0a0/tests/test_cli_profiles_workspace.py +232 -0
  1373. agent_runtime_cockpit-0.1.0a0/tests/test_cli_providers.py +809 -0
  1374. agent_runtime_cockpit-0.1.0a0/tests/test_cli_repl.py +1805 -0
  1375. agent_runtime_cockpit-0.1.0a0/tests/test_cli_repl_runtime.py +391 -0
  1376. agent_runtime_cockpit-0.1.0a0/tests/test_cli_repl_ui.py +306 -0
  1377. agent_runtime_cockpit-0.1.0a0/tests/test_cli_runs.py +1091 -0
  1378. agent_runtime_cockpit-0.1.0a0/tests/test_cli_sandbox.py +1595 -0
  1379. agent_runtime_cockpit-0.1.0a0/tests/test_cli_storage.py +185 -0
  1380. agent_runtime_cockpit-0.1.0a0/tests/test_cli_studio.py +219 -0
  1381. agent_runtime_cockpit-0.1.0a0/tests/test_config.py +177 -0
  1382. agent_runtime_cockpit-0.1.0a0/tests/test_context.py +211 -0
  1383. agent_runtime_cockpit-0.1.0a0/tests/test_context_r85.py +71 -0
  1384. agent_runtime_cockpit-0.1.0a0/tests/test_daemon_build.py +41 -0
  1385. agent_runtime_cockpit-0.1.0a0/tests/test_data_recovery.py +113 -0
  1386. agent_runtime_cockpit-0.1.0a0/tests/test_eval_synthetic_labelling.py +49 -0
  1387. agent_runtime_cockpit-0.1.0a0/tests/test_event_parity.py +63 -0
  1388. agent_runtime_cockpit-0.1.0a0/tests/test_event_schema.py +425 -0
  1389. agent_runtime_cockpit-0.1.0a0/tests/test_evidence_refs.py +38 -0
  1390. agent_runtime_cockpit-0.1.0a0/tests/test_failure_autopsy.py +35 -0
  1391. agent_runtime_cockpit-0.1.0a0/tests/test_fallback_wiring.py +103 -0
  1392. agent_runtime_cockpit-0.1.0a0/tests/test_gate_check_alias.py +37 -0
  1393. agent_runtime_cockpit-0.1.0a0/tests/test_generate_status.py +51 -0
  1394. agent_runtime_cockpit-0.1.0a0/tests/test_graceful_degradation.py +282 -0
  1395. agent_runtime_cockpit-0.1.0a0/tests/test_harden_jsonl.py +186 -0
  1396. agent_runtime_cockpit-0.1.0a0/tests/test_harden_retry.py +136 -0
  1397. agent_runtime_cockpit-0.1.0a0/tests/test_index_r84.py +102 -0
  1398. agent_runtime_cockpit-0.1.0a0/tests/test_installability_wave1.py +116 -0
  1399. agent_runtime_cockpit-0.1.0a0/tests/test_mapper_divergence.py +108 -0
  1400. agent_runtime_cockpit-0.1.0a0/tests/test_mcp_call_decision_event.py +66 -0
  1401. agent_runtime_cockpit-0.1.0a0/tests/test_memory_r90.py +85 -0
  1402. agent_runtime_cockpit-0.1.0a0/tests/test_microcompact.py +169 -0
  1403. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_approval.py +74 -0
  1404. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_audit_retention.py +60 -0
  1405. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_capability_gate.py +86 -0
  1406. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_cli.py +258 -0
  1407. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_cli_batch6.py +241 -0
  1408. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_compliance.py +107 -0
  1409. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_compliance_report.py +40 -0
  1410. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_device_posture.py +49 -0
  1411. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_dod_gate1_gate3.py +118 -0
  1412. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_dod_gate6.py +71 -0
  1413. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_dod_gate7.py +59 -0
  1414. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_egress_guard.py +54 -0
  1415. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_api.py +88 -0
  1416. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_config_plugin.py +108 -0
  1417. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_example.py +128 -0
  1418. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_expo_scaffold.py +135 -0
  1419. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_feature_flags.py +42 -0
  1420. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_fixtures.py +119 -0
  1421. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_flutter.py +97 -0
  1422. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_mcp_bridge.py +64 -0
  1423. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_offline_queue.py +71 -0
  1424. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_policy.py +108 -0
  1425. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_policy_context.py +91 -0
  1426. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_privacy_budget.py +57 -0
  1427. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_property_batch6.py +153 -0
  1428. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_provenance.py +46 -0
  1429. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_replay.py +81 -0
  1430. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_rn.py +131 -0
  1431. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_sbom.py +47 -0
  1432. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_schemas.py +96 -0
  1433. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_sdk_mapping.py +240 -0
  1434. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_secure_store.py +90 -0
  1435. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_siem_export.py +98 -0
  1436. agent_runtime_cockpit-0.1.0a0/tests/test_mobile_signing.py +65 -0
  1437. agent_runtime_cockpit-0.1.0a0/tests/test_mt5_sliding_window.py +131 -0
  1438. agent_runtime_cockpit-0.1.0a0/tests/test_negative_fixtures.py +128 -0
  1439. agent_runtime_cockpit-0.1.0a0/tests/test_perf_r85_r86_r87.py +96 -0
  1440. agent_runtime_cockpit-0.1.0a0/tests/test_phase102_streaming.py +111 -0
  1441. agent_runtime_cockpit-0.1.0a0/tests/test_phase103_ci_orchestration.py +169 -0
  1442. agent_runtime_cockpit-0.1.0a0/tests/test_phase44_slash_expansion.py +177 -0
  1443. agent_runtime_cockpit-0.1.0a0/tests/test_phase45_approval_progress.py +258 -0
  1444. agent_runtime_cockpit-0.1.0a0/tests/test_phase46_session_write_bridge.py +507 -0
  1445. agent_runtime_cockpit-0.1.0a0/tests/test_phase_98_101_cli_parity.py +140 -0
  1446. agent_runtime_cockpit-0.1.0a0/tests/test_policy.py +227 -0
  1447. agent_runtime_cockpit-0.1.0a0/tests/test_predict_r83.py +42 -0
  1448. agent_runtime_cockpit-0.1.0a0/tests/test_protocol.py +243 -0
  1449. agent_runtime_cockpit-0.1.0a0/tests/test_protocol_parity.py +55 -0
  1450. agent_runtime_cockpit-0.1.0a0/tests/test_provider_error_redaction.py +39 -0
  1451. agent_runtime_cockpit-0.1.0a0/tests/test_provider_key_mgmt.py +159 -0
  1452. agent_runtime_cockpit-0.1.0a0/tests/test_providers.py +521 -0
  1453. agent_runtime_cockpit-0.1.0a0/tests/test_readme_cli_parity.py +27 -0
  1454. agent_runtime_cockpit-0.1.0a0/tests/test_research_sprint_features.py +307 -0
  1455. agent_runtime_cockpit-0.1.0a0/tests/test_run_contract.py +56 -0
  1456. agent_runtime_cockpit-0.1.0a0/tests/test_run_receipt.py +57 -0
  1457. agent_runtime_cockpit-0.1.0a0/tests/test_runtime_pack_detail.py +46 -0
  1458. agent_runtime_cockpit-0.1.0a0/tests/test_runtime_router.py +243 -0
  1459. agent_runtime_cockpit-0.1.0a0/tests/test_security.py +100 -0
  1460. agent_runtime_cockpit-0.1.0a0/tests/test_session_export_import.py +84 -0
  1461. agent_runtime_cockpit-0.1.0a0/tests/test_sse_resilience.py +281 -0
  1462. agent_runtime_cockpit-0.1.0a0/tests/test_stable_ids.py +219 -0
  1463. agent_runtime_cockpit-0.1.0a0/tests/test_storage.py +309 -0
  1464. agent_runtime_cockpit-0.1.0a0/tests/test_swarmgraph_native.py +497 -0
  1465. agent_runtime_cockpit-0.1.0a0/tests/test_swarmgraph_topology.py +258 -0
  1466. agent_runtime_cockpit-0.1.0a0/tests/test_trust_diff.py +26 -0
  1467. agent_runtime_cockpit-0.1.0a0/tests/test_trust_resolver.py +178 -0
  1468. agent_runtime_cockpit-0.1.0a0/tests/test_ts_parity.py +102 -0
  1469. agent_runtime_cockpit-0.1.0a0/tests/test_tui_core.py +644 -0
  1470. agent_runtime_cockpit-0.1.0a0/tests/test_web_daemon.py +340 -0
  1471. agent_runtime_cockpit-0.1.0a0/tests/test_workspace.py +138 -0
  1472. agent_runtime_cockpit-0.1.0a0/tests/test_workspace_helpers.py +101 -0
  1473. agent_runtime_cockpit-0.1.0a0/tests/time_travel/test_time_travel_r101.py +767 -0
  1474. agent_runtime_cockpit-0.1.0a0/tests/tools/test_builtin.py +193 -0
  1475. agent_runtime_cockpit-0.1.0a0/tests/tools/test_registry.py +174 -0
  1476. agent_runtime_cockpit-0.1.0a0/tests/tools/test_write_shell_tools.py +155 -0
  1477. agent_runtime_cockpit-0.1.0a0/tests/tracing/__init__.py +0 -0
  1478. agent_runtime_cockpit-0.1.0a0/tests/tracing/test_jsonl_writer.py +73 -0
  1479. agent_runtime_cockpit-0.1.0a0/tests/tui/__init__.py +0 -0
  1480. agent_runtime_cockpit-0.1.0a0/tests/tui/__snapshots__/test_snapshots/test_snapshot_approval_card_capability_gate.svg +221 -0
  1481. agent_runtime_cockpit-0.1.0a0/tests/tui/test_allow_paid_warning.py +33 -0
  1482. agent_runtime_cockpit-0.1.0a0/tests/tui/test_app_coverage.py +83 -0
  1483. agent_runtime_cockpit-0.1.0a0/tests/tui/test_approval_risk_explainer.py +72 -0
  1484. agent_runtime_cockpit-0.1.0a0/tests/tui/test_budget_slash_command.py +62 -0
  1485. agent_runtime_cockpit-0.1.0a0/tests/tui/test_capability_gates.py +88 -0
  1486. agent_runtime_cockpit-0.1.0a0/tests/tui/test_codegraph_async.py +135 -0
  1487. agent_runtime_cockpit-0.1.0a0/tests/tui/test_codegraph_pane.py +309 -0
  1488. agent_runtime_cockpit-0.1.0a0/tests/tui/test_command_palette_detail.py +99 -0
  1489. agent_runtime_cockpit-0.1.0a0/tests/tui/test_context_meter_default.py +32 -0
  1490. agent_runtime_cockpit-0.1.0a0/tests/tui/test_diff_block_sbs.py +32 -0
  1491. agent_runtime_cockpit-0.1.0a0/tests/tui/test_diff_sbs_polish.py +56 -0
  1492. agent_runtime_cockpit-0.1.0a0/tests/tui/test_empty_state.py +45 -0
  1493. agent_runtime_cockpit-0.1.0a0/tests/tui/test_free_tier_gate.py +107 -0
  1494. agent_runtime_cockpit-0.1.0a0/tests/tui/test_jump_pill.py +76 -0
  1495. agent_runtime_cockpit-0.1.0a0/tests/tui/test_markdown_block_coverage.py +82 -0
  1496. agent_runtime_cockpit-0.1.0a0/tests/tui/test_methodology_pane.py +131 -0
  1497. agent_runtime_cockpit-0.1.0a0/tests/tui/test_minimap.py +55 -0
  1498. agent_runtime_cockpit-0.1.0a0/tests/tui/test_mode_cycle.py +58 -0
  1499. agent_runtime_cockpit-0.1.0a0/tests/tui/test_p1_widgets.py +148 -0
  1500. agent_runtime_cockpit-0.1.0a0/tests/tui/test_p2_widgets.py +144 -0
  1501. agent_runtime_cockpit-0.1.0a0/tests/tui/test_p3_theme_extras.py +81 -0
  1502. agent_runtime_cockpit-0.1.0a0/tests/tui/test_plan_view.py +62 -0
  1503. agent_runtime_cockpit-0.1.0a0/tests/tui/test_reasoning_trace.py +50 -0
  1504. agent_runtime_cockpit-0.1.0a0/tests/tui/test_sandbox_shell_escape.py +327 -0
  1505. agent_runtime_cockpit-0.1.0a0/tests/tui/test_screen_coverage.py +635 -0
  1506. agent_runtime_cockpit-0.1.0a0/tests/tui/test_settings_isolation.py +158 -0
  1507. agent_runtime_cockpit-0.1.0a0/tests/tui/test_slash_budget.py +49 -0
  1508. agent_runtime_cockpit-0.1.0a0/tests/tui/test_slash_expand.py +114 -0
  1509. agent_runtime_cockpit-0.1.0a0/tests/tui/test_slash_wallet.py +60 -0
  1510. agent_runtime_cockpit-0.1.0a0/tests/tui/test_snapshots.py +115 -0
  1511. agent_runtime_cockpit-0.1.0a0/tests/tui/test_sparkline.py +43 -0
  1512. agent_runtime_cockpit-0.1.0a0/tests/tui/test_status_bar_context_meter.py +77 -0
  1513. agent_runtime_cockpit-0.1.0a0/tests/tui/test_status_bar_model_chip.py +51 -0
  1514. agent_runtime_cockpit-0.1.0a0/tests/tui/test_status_bar_quota_warning.py +66 -0
  1515. agent_runtime_cockpit-0.1.0a0/tests/tui/test_statusline_order.py +71 -0
  1516. agent_runtime_cockpit-0.1.0a0/tests/tui/test_swarm_graph.py +101 -0
  1517. agent_runtime_cockpit-0.1.0a0/tests/tui/test_tool_card_rerun.py +46 -0
  1518. agent_runtime_cockpit-0.1.0a0/tests/tui/test_tool_group.py +75 -0
  1519. agent_runtime_cockpit-0.1.0a0/tests/tui/test_transcript_search.py +78 -0
  1520. agent_runtime_cockpit-0.1.0a0/tests/tui/test_transcript_streaming.py +64 -0
  1521. agent_runtime_cockpit-0.1.0a0/tests/tui/test_tweaks.py +105 -0
  1522. agent_runtime_cockpit-0.1.0a0/tests/tui/test_typewriter_stream.py +83 -0
  1523. agent_runtime_cockpit-0.1.0a0/tests/tui/test_ux3_views.py +213 -0
  1524. agent_runtime_cockpit-0.1.0a0/tests/tui/test_ux3_widgets.py +140 -0
  1525. agent_runtime_cockpit-0.1.0a0/tests/tui/test_ux4_themes.py +218 -0
  1526. agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_hitl.py +277 -0
  1527. agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_providers.py +325 -0
  1528. agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_runs.py +252 -0
  1529. agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_runtimes.py +88 -0
  1530. agent_runtime_cockpit-0.1.0a0/tests/tui/test_view_parity_sessions.py +161 -0
  1531. agent_runtime_cockpit-0.1.0a0/tests/tui/test_views_audit_coverage.py +133 -0
  1532. agent_runtime_cockpit-0.1.0a0/tests/tui/test_views_providers_coverage.py +386 -0
  1533. agent_runtime_cockpit-0.1.0a0/tests/tui/test_views_settings_coverage.py +299 -0
  1534. agent_runtime_cockpit-0.1.0a0/tests/tui/test_wallet_display.py +106 -0
  1535. agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_input_approval_coverage.py +479 -0
  1536. agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_search_palette_coverage.py +276 -0
  1537. agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_transcript_coverage.py +280 -0
  1538. agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_tray_status_coverage.py +151 -0
  1539. agent_runtime_cockpit-0.1.0a0/tests/tui/test_widgets_trust_help_coverage.py +90 -0
  1540. agent_runtime_cockpit-0.1.0a0/tests/unit/test_budget_preflight_estimator.py +131 -0
  1541. agent_runtime_cockpit-0.1.0a0/tests/unit/test_budget_schema.py +58 -0
  1542. agent_runtime_cockpit-0.1.0a0/tests/unit/test_cancellation.py +247 -0
  1543. agent_runtime_cockpit-0.1.0a0/tests/unit/test_mt4_capability_cost_gate.py +140 -0
  1544. agent_runtime_cockpit-0.1.0a0/tests/unit/test_runtime_mode.py +174 -0
  1545. agent_runtime_cockpit-0.1.0a0/tests/vision/test_vision_r93.py +363 -0
  1546. agent_runtime_cockpit-0.1.0a0/tests/voice/test_voice_r96.py +307 -0
  1547. agent_runtime_cockpit-0.1.0a0/tests/wasm_parser/test_wasm_parser_r_perf9.py +170 -0
  1548. agent_runtime_cockpit-0.1.0a0/tests/web/__init__.py +0 -0
  1549. agent_runtime_cockpit-0.1.0a0/tests/web/conftest.py +144 -0
  1550. agent_runtime_cockpit-0.1.0a0/tests/web/test_arena_endpoints.py +232 -0
  1551. agent_runtime_cockpit-0.1.0a0/tests/web/test_audit_verify_route.py +131 -0
  1552. agent_runtime_cockpit-0.1.0a0/tests/web/test_cli_budget.py +214 -0
  1553. agent_runtime_cockpit-0.1.0a0/tests/web/test_codegraph_routes.py +594 -0
  1554. agent_runtime_cockpit-0.1.0a0/tests/web/test_daemon_auth.py +160 -0
  1555. agent_runtime_cockpit-0.1.0a0/tests/web/test_evals_endpoints.py +120 -0
  1556. agent_runtime_cockpit-0.1.0a0/tests/web/test_event_broker_hook.py +84 -0
  1557. agent_runtime_cockpit-0.1.0a0/tests/web/test_events_sse.py +101 -0
  1558. agent_runtime_cockpit-0.1.0a0/tests/web/test_health.py +15 -0
  1559. agent_runtime_cockpit-0.1.0a0/tests/web/test_hitl_routes.py +66 -0
  1560. agent_runtime_cockpit-0.1.0a0/tests/web/test_loopback_bind.py +64 -0
  1561. agent_runtime_cockpit-0.1.0a0/tests/web/test_phase50_trust_surface_audit.py +305 -0
  1562. agent_runtime_cockpit-0.1.0a0/tests/web/test_phase54_task_daemon_routes.py +82 -0
  1563. agent_runtime_cockpit-0.1.0a0/tests/web/test_phase55_provider_trust.py +78 -0
  1564. agent_runtime_cockpit-0.1.0a0/tests/web/test_phase57_provider_routes.py +228 -0
  1565. agent_runtime_cockpit-0.1.0a0/tests/web/test_protocol_contract.py +65 -0
  1566. agent_runtime_cockpit-0.1.0a0/tests/web/test_route_fate_parity.py +65 -0
  1567. agent_runtime_cockpit-0.1.0a0/tests/web/test_routes_coverage.py +406 -0
  1568. agent_runtime_cockpit-0.1.0a0/tests/web/test_runs_endpoints.py +220 -0
  1569. agent_runtime_cockpit-0.1.0a0/tests/web/test_runs_sse.py +175 -0
  1570. agent_runtime_cockpit-0.1.0a0/tests/web/test_server_coverage.py +148 -0
  1571. agent_runtime_cockpit-0.1.0a0/tests/web/test_session_daemon_routes.py +325 -0
  1572. agent_runtime_cockpit-0.1.0a0/tests/web/test_sse_proof.py +45 -0
  1573. agent_runtime_cockpit-0.1.0a0/tests/workspace/test_inventory_streaming.py +38 -0
  1574. agent_runtime_cockpit-0.1.0a0/tests/workspace/test_symbols.py +138 -0
  1575. agent_runtime_cockpit-0.1.0a0/uv.lock +3708 -0
@@ -0,0 +1,5 @@
1
+ *.coverage
2
+ coverage.xml
3
+ python/.arc/*.db
4
+ python/.arc/*.db
5
+ coverage.json
@@ -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,8 @@
1
+ """
2
+ ARC Adapter Benchmarks
3
+
4
+ Performance benchmarks for runtime adapters.
5
+ These are marked as off-gate (not required for CI to pass).
6
+
7
+ Run with: pytest benchmarks/ --benchmark-only
8
+ """
@@ -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)