agent-governance-toolkit-cli 4.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (139) hide show
  1. agent_governance_toolkit_cli-4.0.0.dist-info/METADATA +98 -0
  2. agent_governance_toolkit_cli-4.0.0.dist-info/RECORD +139 -0
  3. agent_governance_toolkit_cli-4.0.0.dist-info/WHEEL +4 -0
  4. agent_governance_toolkit_cli-4.0.0.dist-info/entry_points.txt +2 -0
  5. agent_sandbox/__init__.py +102 -0
  6. agent_sandbox/aca_sandbox_provider/__init__.py +24 -0
  7. agent_sandbox/aca_sandbox_provider/aca_sandbox_provider.py +797 -0
  8. agent_sandbox/docker_provider/__init__.py +29 -0
  9. agent_sandbox/docker_provider/provider.py +1170 -0
  10. agent_sandbox/docker_provider/state.py +187 -0
  11. agent_sandbox/hyperlight_provider/__init__.py +33 -0
  12. agent_sandbox/hyperlight_provider/config.py +160 -0
  13. agent_sandbox/hyperlight_provider/provider.py +861 -0
  14. agent_sandbox/isolation_runtime.py +16 -0
  15. agent_sandbox/sandbox_provider.py +234 -0
  16. agent_sre/__init__.py +59 -0
  17. agent_sre/__main__.py +8 -0
  18. agent_sre/accuracy_declaration.py +198 -0
  19. agent_sre/adapters/__init__.py +489 -0
  20. agent_sre/alerts/__init__.py +515 -0
  21. agent_sre/alerts/dedup.py +227 -0
  22. agent_sre/anomaly/__init__.py +64 -0
  23. agent_sre/anomaly/detector.py +368 -0
  24. agent_sre/anomaly/rogue_detector.py +460 -0
  25. agent_sre/anomaly/strategies.py +162 -0
  26. agent_sre/api/__init__.py +359 -0
  27. agent_sre/api/models.py +161 -0
  28. agent_sre/api/server.py +629 -0
  29. agent_sre/benchmarks/__init__.py +458 -0
  30. agent_sre/cascade/__init__.py +19 -0
  31. agent_sre/cascade/circuit_breaker.py +266 -0
  32. agent_sre/certification/__init__.py +335 -0
  33. agent_sre/chaos/__init__.py +47 -0
  34. agent_sre/chaos/adversarial.py +285 -0
  35. agent_sre/chaos/adversarial_policy.py +252 -0
  36. agent_sre/chaos/chaos_scheduler.py +125 -0
  37. agent_sre/chaos/engine.py +357 -0
  38. agent_sre/chaos/library.py +243 -0
  39. agent_sre/chaos/loader.py +27 -0
  40. agent_sre/chaos/scheduler.py +72 -0
  41. agent_sre/cli/__init__.py +6 -0
  42. agent_sre/cli/main.py +83 -0
  43. agent_sre/cost/__init__.py +23 -0
  44. agent_sre/cost/anomaly.py +159 -0
  45. agent_sre/cost/guard.py +477 -0
  46. agent_sre/cost/optimizer.py +186 -0
  47. agent_sre/delivery/__init__.py +31 -0
  48. agent_sre/delivery/blue_green.py +299 -0
  49. agent_sre/delivery/gitops.py +168 -0
  50. agent_sre/delivery/rollout.py +731 -0
  51. agent_sre/evals/__init__.py +456 -0
  52. agent_sre/experiments/__init__.py +255 -0
  53. agent_sre/fleet/__init__.py +420 -0
  54. agent_sre/incidents/__init__.py +41 -0
  55. agent_sre/incidents/circuit_breaker.py +205 -0
  56. agent_sre/incidents/detector.py +333 -0
  57. agent_sre/incidents/postmortem.py +339 -0
  58. agent_sre/incidents/runbook.py +157 -0
  59. agent_sre/incidents/runbook_executor.py +253 -0
  60. agent_sre/incidents/runbook_registry.py +193 -0
  61. agent_sre/incidents/runbooks/restart_agent.yaml +34 -0
  62. agent_sre/incidents/runbooks/revoke_trust.yaml +34 -0
  63. agent_sre/incidents/runbooks/rollback_version.yaml +35 -0
  64. agent_sre/incidents/runbooks/throttle_traffic.yaml +34 -0
  65. agent_sre/integrations/__init__.py +22 -0
  66. agent_sre/integrations/agent_mesh/__init__.py +3 -0
  67. agent_sre/integrations/agent_mesh/bridge.py +148 -0
  68. agent_sre/integrations/agent_os/__init__.py +3 -0
  69. agent_sre/integrations/agent_os/bridge.py +128 -0
  70. agent_sre/integrations/agentops/__init__.py +6 -0
  71. agent_sre/integrations/agentops/exporter.py +198 -0
  72. agent_sre/integrations/arize/__init__.py +23 -0
  73. agent_sre/integrations/arize/exporter.py +206 -0
  74. agent_sre/integrations/arize/importer.py +140 -0
  75. agent_sre/integrations/braintrust/__init__.py +12 -0
  76. agent_sre/integrations/braintrust/exporter.py +268 -0
  77. agent_sre/integrations/datadog/__init__.py +12 -0
  78. agent_sre/integrations/datadog/exporter.py +298 -0
  79. agent_sre/integrations/helicone/__init__.py +13 -0
  80. agent_sre/integrations/helicone/headers.py +249 -0
  81. agent_sre/integrations/langchain/__init__.py +20 -0
  82. agent_sre/integrations/langchain/callback.py +424 -0
  83. agent_sre/integrations/langfuse/__init__.py +29 -0
  84. agent_sre/integrations/langfuse/exporter.py +285 -0
  85. agent_sre/integrations/langsmith/__init__.py +12 -0
  86. agent_sre/integrations/langsmith/exporter.py +360 -0
  87. agent_sre/integrations/llamaindex/__init__.py +17 -0
  88. agent_sre/integrations/llamaindex/handler.py +376 -0
  89. agent_sre/integrations/mcp/__init__.py +342 -0
  90. agent_sre/integrations/mlflow/__init__.py +6 -0
  91. agent_sre/integrations/mlflow/exporter.py +173 -0
  92. agent_sre/integrations/openlit.py +211 -0
  93. agent_sre/integrations/otel/__init__.py +29 -0
  94. agent_sre/integrations/otel/conventions.py +84 -0
  95. agent_sre/integrations/otel/events.py +322 -0
  96. agent_sre/integrations/otel/metrics.py +286 -0
  97. agent_sre/integrations/otel/saga_sink.py +97 -0
  98. agent_sre/integrations/otel/traces.py +242 -0
  99. agent_sre/integrations/pagerduty.py +183 -0
  100. agent_sre/integrations/prometheus/__init__.py +14 -0
  101. agent_sre/integrations/prometheus/exporter.py +115 -0
  102. agent_sre/integrations/sentry/__init__.py +10 -0
  103. agent_sre/integrations/sentry/exporter.py +231 -0
  104. agent_sre/integrations/wandb/__init__.py +6 -0
  105. agent_sre/integrations/wandb/exporter.py +154 -0
  106. agent_sre/k8s/__init__.py +628 -0
  107. agent_sre/mcp/__init__.py +6 -0
  108. agent_sre/mcp/server.py +211 -0
  109. agent_sre/providers.py +116 -0
  110. agent_sre/py.typed +0 -0
  111. agent_sre/replay/__init__.py +23 -0
  112. agent_sre/replay/capture.py +354 -0
  113. agent_sre/replay/distributed.py +308 -0
  114. agent_sre/replay/engine.py +249 -0
  115. agent_sre/replay/golden.py +104 -0
  116. agent_sre/replay/golden_manager.py +201 -0
  117. agent_sre/replay/visualization.py +245 -0
  118. agent_sre/sbom.py +284 -0
  119. agent_sre/signing.py +177 -0
  120. agent_sre/slo/__init__.py +27 -0
  121. agent_sre/slo/dashboard.py +188 -0
  122. agent_sre/slo/indicators.py +516 -0
  123. agent_sre/slo/objectives.py +298 -0
  124. agent_sre/slo/persistence.py +283 -0
  125. agent_sre/slo/spec.py +143 -0
  126. agent_sre/slo/validator.py +150 -0
  127. agent_sre/specs/__init__.py +187 -0
  128. agent_sre/specs/coding-agent.yaml +43 -0
  129. agent_sre/specs/customer-support-agent.yaml +42 -0
  130. agent_sre/specs/data-pipeline-agent.yaml +44 -0
  131. agent_sre/specs/research-agent.yaml +48 -0
  132. agent_sre/tracing/__init__.py +786 -0
  133. agent_sre/tracing/conventions.py +36 -0
  134. agent_sre/tracing/exporters.py +110 -0
  135. agent_sre/tracing/metrics.py +121 -0
  136. agent_sre/tracing/spans.py +161 -0
  137. mcp_trust_server/__init__.py +19 -0
  138. mcp_trust_server/__main__.py +7 -0
  139. mcp_trust_server/server.py +381 -0
@@ -0,0 +1,98 @@
1
+ Metadata-Version: 2.4
2
+ Name: agent-governance-toolkit-cli
3
+ Version: 4.0.0
4
+ Summary: CLI tools, SRE observability, and sandbox isolation for the Agent Governance Toolkit
5
+ Project-URL: Homepage, https://github.com/microsoft/agent-governance-toolkit
6
+ Project-URL: Repository, https://github.com/microsoft/agent-governance-toolkit
7
+ Project-URL: Bug Tracker, https://github.com/microsoft/agent-governance-toolkit/issues
8
+ Author-email: Microsoft Corporation <agentgovtoolkit@microsoft.com>
9
+ Maintainer-email: Agent Governance Toolkit Team <agentgovtoolkit@microsoft.com>
10
+ License: MIT
11
+ Keywords: ai-agents,cli,governance,mcp,observability,reliability,sandbox,sre,trust
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Intended Audience :: System Administrators
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: System :: Monitoring
22
+ Classifier: Typing :: Typed
23
+ Requires-Python: >=3.11
24
+ Requires-Dist: agent-governance-toolkit-core<5.0,>=4.0.0
25
+ Requires-Dist: croniter<7.0,>=2.0
26
+ Requires-Dist: opentelemetry-api<2.0,>=1.20
27
+ Requires-Dist: opentelemetry-sdk<2.0,>=1.20
28
+ Requires-Dist: pydantic<3.0,>=2.4.0
29
+ Requires-Dist: pyyaml<7.0,>=6.0
30
+ Provides-Extra: agentops
31
+ Requires-Dist: agentops<1.0,>=0.3; extra == 'agentops'
32
+ Provides-Extra: api
33
+ Requires-Dist: fastapi<1.0,>=0.115.0; extra == 'api'
34
+ Requires-Dist: uvicorn<1.0,>=0.27.0; extra == 'api'
35
+ Provides-Extra: arize
36
+ Requires-Dist: arize-phoenix<17.0,>=4.0; extra == 'arize'
37
+ Provides-Extra: braintrust
38
+ Requires-Dist: braintrust<1.0,>=0.0.100; extra == 'braintrust'
39
+ Provides-Extra: datadog
40
+ Requires-Dist: ddtrace<5.0,>=2.0; extra == 'datadog'
41
+ Provides-Extra: dev
42
+ Requires-Dist: mypy<3.0,>=1.8.0; extra == 'dev'
43
+ Requires-Dist: pytest-asyncio<2.0,>=0.23; extra == 'dev'
44
+ Requires-Dist: pytest-cov<8.0,>=5.0; extra == 'dev'
45
+ Requires-Dist: pytest<10.0,>=8.0; extra == 'dev'
46
+ Requires-Dist: ruff<1.0,>=0.4.0; extra == 'dev'
47
+ Provides-Extra: docker
48
+ Requires-Dist: docker<8.0,>=7.1.0; extra == 'docker'
49
+ Provides-Extra: full
50
+ Requires-Dist: cryptography<49.0,>=46.0.7; extra == 'full'
51
+ Requires-Dist: docker<8.0,>=7.1.0; extra == 'full'
52
+ Requires-Dist: fastapi<1.0,>=0.115.0; extra == 'full'
53
+ Requires-Dist: mcp<2.0,>=1.0.0; extra == 'full'
54
+ Requires-Dist: opentelemetry-exporter-otlp<2.0,>=1.20; extra == 'full'
55
+ Requires-Dist: uvicorn<1.0,>=0.27.0; extra == 'full'
56
+ Provides-Extra: helicone
57
+ Requires-Dist: helicone<5.0,>=4.0; extra == 'helicone'
58
+ Provides-Extra: hyperlight
59
+ Requires-Dist: hyperlight-sandbox<0.5,>=0.4.0; extra == 'hyperlight'
60
+ Provides-Extra: langchain
61
+ Requires-Dist: langchain-core<2.0,>=1.2.11; extra == 'langchain'
62
+ Provides-Extra: langfuse
63
+ Requires-Dist: langfuse<5.0,>=2.0; extra == 'langfuse'
64
+ Provides-Extra: langsmith
65
+ Requires-Dist: langsmith<1.0,>=0.1; extra == 'langsmith'
66
+ Provides-Extra: llamaindex
67
+ Requires-Dist: llama-index-core<1.0,>=0.10; extra == 'llamaindex'
68
+ Provides-Extra: mcp
69
+ Requires-Dist: cryptography<49.0,>=46.0.7; extra == 'mcp'
70
+ Requires-Dist: mcp<2.0,>=1.0.0; extra == 'mcp'
71
+ Provides-Extra: mlflow
72
+ Requires-Dist: mlflow<4.0,>=2.10; extra == 'mlflow'
73
+ Provides-Extra: otel
74
+ Requires-Dist: opentelemetry-exporter-otlp<2.0,>=1.20; extra == 'otel'
75
+ Provides-Extra: policy
76
+ Requires-Dist: agent-governance-toolkit-core<5.0,>=4.0.0; extra == 'policy'
77
+ Provides-Extra: sentry
78
+ Requires-Dist: sentry-sdk<3.0,>=2.0; extra == 'sentry'
79
+ Provides-Extra: wandb
80
+ Requires-Dist: wandb<1.0,>=0.16; extra == 'wandb'
81
+ Description-Content-Type: text/markdown
82
+
83
+ # agent-governance-toolkit-cli
84
+
85
+ CLI tools, SRE observability, and sandbox isolation for the
86
+ [Agent Governance Toolkit](https://github.com/microsoft/agent-governance-toolkit).
87
+
88
+ Consolidates `agent-sre`, `agt-sandbox`, and `agentmesh-mcp-trust` into a
89
+ single distribution.
90
+
91
+ ```bash
92
+ pip install agent-governance-toolkit-cli
93
+ pip install agent-governance-toolkit-cli[docker,mcp]
94
+ ```
95
+
96
+ See the
97
+ [migration guide](https://github.com/microsoft/agent-governance-toolkit/blob/main/docs/package-consolidation/MIGRATION.md)
98
+ for details.
@@ -0,0 +1,139 @@
1
+ agent_sandbox/__init__.py,sha256=WHZPEF2Vy2wjjj2jpHlOy3CvoWbBiGLWq5WQUi7UcJk,3662
2
+ agent_sandbox/isolation_runtime.py,sha256=79UvnqovNfFmSoYgkOaBpJ67LL8OBAsCIabl35lwjLk,373
3
+ agent_sandbox/sandbox_provider.py,sha256=xawkQ3jkKLYnDb_ki9l6dLirrG31rrn2QASHy3ia7d4,7378
4
+ agent_sandbox/aca_sandbox_provider/__init__.py,sha256=NaXtwLjnPzdB0tTSm1jt_kwtqapUv4WOPdAHkm803LE,856
5
+ agent_sandbox/aca_sandbox_provider/aca_sandbox_provider.py,sha256=g2Me8wRGOQezmK1hUQNE3Kvo49s1s0mujaAXMNlNx6M,30274
6
+ agent_sandbox/docker_provider/__init__.py,sha256=dyxA8qFeHfHg0YTL-uDVihptscmasAxptahwtGzA_jk,809
7
+ agent_sandbox/docker_provider/provider.py,sha256=3rAEnw8F89oBB4ll5uZpIdY1HIGJrIBCwVEdZgULIAw,42722
8
+ agent_sandbox/docker_provider/state.py,sha256=CMGsYSJgZtcYSNRpLwKg1XqQumhLujfMkOybezPDNZI,6584
9
+ agent_sandbox/hyperlight_provider/__init__.py,sha256=45ulCbK3ic2rssNx6dLOuUH8-2suElKtw9jDulAL30Y,1021
10
+ agent_sandbox/hyperlight_provider/config.py,sha256=wPmogq_qTqbTWlpGvbOvYKjhJ6RWaVLqxbyJOQFXIqk,6401
11
+ agent_sandbox/hyperlight_provider/provider.py,sha256=TL0gNucyRa7fk2-q54qRK7uJ7l2uYh1mMWkEk0aJ4Q0,34208
12
+ agent_sre/__init__.py,sha256=g7Xo9qMASaDTYh0C0iY3nHwJSuUCdX24tQvvdGzr8oE,2003
13
+ agent_sre/__main__.py,sha256=T-hMtwpCEWGBlIDisvOh2tjTRukzxgWktyFEDPTjdLw,191
14
+ agent_sre/accuracy_declaration.py,sha256=2AvMyUpSQTJ2BHI6vWlvfAnn_eQ-ZMLkNZiXnZL7BUg,7739
15
+ agent_sre/providers.py,sha256=lqbYSFDuppebM9x8_LoUq_iso0DXsiIhPXz__cBjXZ8,3497
16
+ agent_sre/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ agent_sre/sbom.py,sha256=AyRsRFBwBojprburqSTwNuod6UnXSjWThnDElf5v6Rk,9949
18
+ agent_sre/signing.py,sha256=TjoA1rLzroPbLyLo9EYinUfgievHrrxCEvtDpxTstu8,6133
19
+ agent_sre/adapters/__init__.py,sha256=XzRDIGpA9X0cwxy0SmcibKqxXZy92whRMEeVxZfpg8E,16374
20
+ agent_sre/alerts/__init__.py,sha256=IjTUBsy8-j_v9O4clgh0SjBkzhhGC25EhE2x2cAfWxA,17161
21
+ agent_sre/alerts/dedup.py,sha256=8v5zvzPJNz8th58g6_PiCSmngxSXFkwM9yFx-gTXFHY,7824
22
+ agent_sre/anomaly/__init__.py,sha256=tv7s27Iz1nlX0weqKKu92SB9jVc0ZnWf0c64YfQR4n0,1937
23
+ agent_sre/anomaly/detector.py,sha256=WEgczbb_NEh_D_RUJMxIrsRnhHi_zTv8KUP0_a0euZg,13069
24
+ agent_sre/anomaly/rogue_detector.py,sha256=n4aac5YOdSa8dnjvCOSHTbA5r0WfFlQTnDDhSfq8QZY,16585
25
+ agent_sre/anomaly/strategies.py,sha256=Aezk4ilXa33qGH4YNQbfma7nJNKxfLJ3OIqj6DsFuAc,5198
26
+ agent_sre/api/__init__.py,sha256=O8KDUURDnl_DwrVH_IPGvuXlEwwXSupiealEiiuxClM,11601
27
+ agent_sre/api/models.py,sha256=2POeCL3NIWGPhg25KgMm7yNzcu7vLRHK_E7x8eTWUb4,4262
28
+ agent_sre/api/server.py,sha256=ssNEZA4mDGBijraFA8zoFexvGZJTSZaREiltJeeAhiU,22211
29
+ agent_sre/benchmarks/__init__.py,sha256=Ie2k9tBK0iBuDxIy-kyw8RjeEwB0IMSgNJEnWM0MVAk,15627
30
+ agent_sre/cascade/__init__.py,sha256=yUwQUELFj-OzoHh_MHbH8wS5Pk3V5B1a2934R5Pkl1M,451
31
+ agent_sre/cascade/circuit_breaker.py,sha256=S6Bfb7Y4EjYYAX0qFhussQlOPHjuP6r3v3xs4--u5zE,8399
32
+ agent_sre/certification/__init__.py,sha256=wwjs-KRzBK08ydYQSWvQjkCLDdhVZYNkU9PmK9aPMbE,11519
33
+ agent_sre/chaos/__init__.py,sha256=nseFNI03rBHhY_pSp4MXBa38TqS4PPreV753D1E_JkI,1441
34
+ agent_sre/chaos/adversarial.py,sha256=uWdGaI7VrpX9GaNE73qFxNen718YWxwiFTSxl4BhXyg,11290
35
+ agent_sre/chaos/adversarial_policy.py,sha256=G1cR-XceMbslP9NPdBmqve4PPsOCkaEYvY4VcY3P5V0,8733
36
+ agent_sre/chaos/chaos_scheduler.py,sha256=IIM39bKz1nK3T9uL33NAr9rOV19tev4GEelExl7bGTk,4495
37
+ agent_sre/chaos/engine.py,sha256=EfnecaLZnVZzNMZ2Cb8vbtQD3oLDmG_4QrK8y3GdkAk,13045
38
+ agent_sre/chaos/library.py,sha256=TEn3mxfzdwdM2GA7iPNtiKAW3ibU-TMNsU0yrOYD3_o,10583
39
+ agent_sre/chaos/loader.py,sha256=_lEXzA54v69rXuPbbHLbCrNZ7Qu8cMJNXdNybhdSwJA,715
40
+ agent_sre/chaos/scheduler.py,sha256=wHYLZeiLOKtE_umpkbHIkoHw9fBkqqh0yhYU7JNd4IQ,2324
41
+ agent_sre/cli/__init__.py,sha256=iuP_haOsJoPpg1hAfL9tSDmHs8fTKkfTKwqwo7PN_Q8,148
42
+ agent_sre/cli/main.py,sha256=Y5JAAzWLqxUNH72D-sfExvRy3jTlzmtDgEuPHV7KO78,2677
43
+ agent_sre/cost/__init__.py,sha256=TeQBLlsdS77NqyxVc00fP2Ph5UBlmVs9tuAxQf3uV6Q,824
44
+ agent_sre/cost/anomaly.py,sha256=wq88EmxF4CoczRbs6AwqPmWULhl0ERn2utC708mRmZ8,4684
45
+ agent_sre/cost/guard.py,sha256=QDeZGR8gZ-1FJy5aCQ-UJgOriulMs_4Hloob0bJ9R-A,18437
46
+ agent_sre/cost/optimizer.py,sha256=CXSXv2dm1Wtk-dZJaXo5NHn23XK7NXgUvGfZEBzlRfw,6586
47
+ agent_sre/delivery/__init__.py,sha256=Z_og9c9ALs3viUqf5OokcAyXJFUIal2V3T1WA2Bbv6s,676
48
+ agent_sre/delivery/blue_green.py,sha256=5qOfoYyJGCQj8GN_IFbFu04MwYigZCcRAwoRc5-RR9I,10075
49
+ agent_sre/delivery/gitops.py,sha256=9wJkt5orCxHuOj_DAvnHi6kXM-aetpkhElv7Q5cwp5A,6050
50
+ agent_sre/delivery/rollout.py,sha256=lG32xPYSGCCSFS5iwm7JZrZl4AscbwaavFY4W8odOkY,25157
51
+ agent_sre/evals/__init__.py,sha256=aE98Fv-DUEl--BWcUXxHZdeAxEr99JjCkbLUqTPtS9g,15274
52
+ agent_sre/experiments/__init__.py,sha256=2sfh26Ob8RMvLXdlFLnvtQe88NBNwbzKrp8TU62TvqQ,7848
53
+ agent_sre/fleet/__init__.py,sha256=ycT2VEW9a7LSC44Ifmh9DCxGgN24FCUGxt2Xkintj7c,13609
54
+ agent_sre/incidents/__init__.py,sha256=50QrmvaoM41MYGkZsYwk6inhX19s9qqLK0F2hYfB1rs,957
55
+ agent_sre/incidents/circuit_breaker.py,sha256=FMh3GAQ42tDsK5nsk-0aBlqvYduEQfwsBzFxIQfdESI,7624
56
+ agent_sre/incidents/detector.py,sha256=XT1pJvmy8sGKeu2XGTJj20aFtFnchmLu1cwPm6XU-PM,11462
57
+ agent_sre/incidents/postmortem.py,sha256=0v8P6xsw6BFH0e9yHqeF5xvDlh8YCIjrykZQ9tmEcb8,12723
58
+ agent_sre/incidents/runbook.py,sha256=W5diPJdkUcciddpqAfybfbIGoyAeOrfbOoE5tSIybRY,4856
59
+ agent_sre/incidents/runbook_executor.py,sha256=NtjJ75eoL-WpX_7mLgTo204CygNqhO_Jfh5KP3XlfLY,10040
60
+ agent_sre/incidents/runbook_registry.py,sha256=h2NhnSzOZzFPbami4LeKTYpopUBjpcj_IcYdsARlNTo,6716
61
+ agent_sre/incidents/runbooks/restart_agent.yaml,sha256=hIPUTK5TK6fAzYwWZj16dyEvXZ5pKPIetYQZM92PzD8,1141
62
+ agent_sre/incidents/runbooks/revoke_trust.yaml,sha256=jmGnbYtlZDk14Qz9RokYIz6sNv5luHG1OKAw4ubo98Y,1144
63
+ agent_sre/incidents/runbooks/rollback_version.yaml,sha256=xg7Z1Q-UXAe-MNyjpzxlJrAOSSQK0kPshCgWf95ElM0,1222
64
+ agent_sre/incidents/runbooks/throttle_traffic.yaml,sha256=vK8QVwUsPI-s64A6hj3cZ9CQVNNMnI1SsBVD-KwJdAY,1158
65
+ agent_sre/integrations/__init__.py,sha256=1AOq60H7po4s1NQxwxCry9NKgJ1yAPPTguuG6vqzi2k,417
66
+ agent_sre/integrations/openlit.py,sha256=yfAGIYMIyWxS_ZuLS5G5pUxH5lPDwEB2Elve60FkdJE,7833
67
+ agent_sre/integrations/pagerduty.py,sha256=yhNZZwZLS_bPeJgKV1yAhlTYZfs-GUgfhksaNHwpN_g,6397
68
+ agent_sre/integrations/agent_mesh/__init__.py,sha256=fv7fBj_Sp97myr_hD6p41SLiWxF9pXw0OPLWjMa5umE,135
69
+ agent_sre/integrations/agent_mesh/bridge.py,sha256=W40TjzWfHo4nVYQqLiJQMGi8DA0WuuaZrhzprKjVp-U,5337
70
+ agent_sre/integrations/agent_os/__init__.py,sha256=gtLVzE4p770prsjK63ZuSwfmTnMOHcxak4oykP6vCD4,137
71
+ agent_sre/integrations/agent_os/bridge.py,sha256=PIhTYoLB63sWr4vLHYBX0k26yYyvWtg9k1yTHmVepKQ,4657
72
+ agent_sre/integrations/agentops/__init__.py,sha256=fNfMp5ZrfNwhOawYgZXFjpjzRh2ru_bT9AzmkgLo_tw,244
73
+ agent_sre/integrations/agentops/exporter.py,sha256=mgsHkpbK2Uj2sHRZIb60y27ytQ5-zTPScefk-XzLf2w,5335
74
+ agent_sre/integrations/arize/__init__.py,sha256=OLHpOhMSdVYBupYch-qNFkxEn9zfYl8F7m6Ts0Fn8gs,701
75
+ agent_sre/integrations/arize/exporter.py,sha256=HOG34vtwsRtKMWdqj9Yta5Q6PtQfRwj6khL5oUIi8so,6488
76
+ agent_sre/integrations/arize/importer.py,sha256=nUi9_Lj8DXZUQT-8Z2c6RuXDSZiXz4EYHCzchtYNXmE,4623
77
+ agent_sre/integrations/braintrust/__init__.py,sha256=ChsuG61pv1mBCNoqz8psSxmKDvEMW0yJYm3-UN0ckGA,388
78
+ agent_sre/integrations/braintrust/exporter.py,sha256=ZF8CHwA6bsEzeH0f0wR7LnZo-cRZ85SJJZdO6K2tSF4,7804
79
+ agent_sre/integrations/datadog/__init__.py,sha256=RtuKguuqkgX2FogBMnks5osHfPBIpDH6PW7_T_guguM,376
80
+ agent_sre/integrations/datadog/exporter.py,sha256=cYJvCA1gsvFatB9e1LNTCCTRRx0Yjnc6_PAtDwjtGhQ,8388
81
+ agent_sre/integrations/helicone/__init__.py,sha256=4pBo74dbusqk-cAXgkNJF2OjiPi_Bm9unGuzeo2blhA,489
82
+ agent_sre/integrations/helicone/headers.py,sha256=DLjK3z6Bjg3DIyUC9A53VvwLFlGsgZ7Gll4qBORhDic,7335
83
+ agent_sre/integrations/langchain/__init__.py,sha256=SvEEUYbDowel3MGixIPeJF57BJF60F1l4M5cIsA4dbM,573
84
+ agent_sre/integrations/langchain/callback.py,sha256=fs-j9wvkSy6CPIPo2X1-cuEY0QvOxE-2vm0fs-mIZvM,13357
85
+ agent_sre/integrations/langfuse/__init__.py,sha256=e5u2wdCtDYealkqM5BzR2TaBKvIG9N-mzv4mCc2-mU8,1121
86
+ agent_sre/integrations/langfuse/exporter.py,sha256=Akl28Vs3RNjELVq2zJwxV4D_LtGjIy2hBC44TFnJloA,8327
87
+ agent_sre/integrations/langsmith/__init__.py,sha256=VsimNADYZHgfxwllbyENMw35TRW9ypZfbaIntFMhzw8,379
88
+ agent_sre/integrations/langsmith/exporter.py,sha256=huNET08XEmBSU0cz0YP30v8bdQwfpbAbFKkm5_nhzec,10795
89
+ agent_sre/integrations/llamaindex/__init__.py,sha256=UOV6OycBnalJ50FBYfmjpwPUxf11A5mZFAMlKOeXzq0,517
90
+ agent_sre/integrations/llamaindex/handler.py,sha256=mdcRgtfUk0ayaLIlIFNLO_kE3ubr7E-FWv6bhWzJUqQ,12850
91
+ agent_sre/integrations/mcp/__init__.py,sha256=d6lfnHOk8ck-koQj7KuS3vADL4Nvnmizi8SIlLZbeEA,11764
92
+ agent_sre/integrations/mlflow/__init__.py,sha256=1jp_zAsdZWXElZ32JEh4X8AZfdwmPvj0HIdFq-HlKns,237
93
+ agent_sre/integrations/mlflow/exporter.py,sha256=hYOQundjaZNrs2UAoNPQrBv_P8qhqso7mxJZXRK8fkU,4761
94
+ agent_sre/integrations/otel/__init__.py,sha256=Jiux7xJ0O3NDbxfceffjVdSEpwWZhsLtTCX10mTeRi0,1003
95
+ agent_sre/integrations/otel/conventions.py,sha256=Kk1DfxOuhB3bTRV08bkdhxIYz_WHaCinW9pa3FvurFg,2673
96
+ agent_sre/integrations/otel/events.py,sha256=RZZETqstis4kNmrgIWJcRlDjqiMlUbi2-W8RJE5KMSk,9904
97
+ agent_sre/integrations/otel/metrics.py,sha256=MHBDOmqzCLwpG5BDYL8qh_G7Tyij8poI1oLR9XtNsYw,9065
98
+ agent_sre/integrations/otel/saga_sink.py,sha256=0P0GhowH1PnH38ZyZG7pNJfj8yDMxSikTSWHn4xRzwM,3087
99
+ agent_sre/integrations/otel/traces.py,sha256=95KtKwLRqehLB5Pv0auJued0geARSt7SL0xtRZkho8c,7669
100
+ agent_sre/integrations/prometheus/__init__.py,sha256=2CZIL1-9frY0AF-OtrFhhWVbeKVRaljHq1_01jS7w20,501
101
+ agent_sre/integrations/prometheus/exporter.py,sha256=x6dwuo38qeis9oOcNPESdfeCcSEdv4xGdLVgbjQ3q1g,4502
102
+ agent_sre/integrations/sentry/__init__.py,sha256=iy-dZtH6bcW5rG6x0cq7T_ahUElBAgeyE2CBimPfQ7I,299
103
+ agent_sre/integrations/sentry/exporter.py,sha256=cvpGfnHRzvFbAKQXcRrkmclBlBNBwFaYDOKHInaXxeQ,7196
104
+ agent_sre/integrations/wandb/__init__.py,sha256=vDU6JG__tBmipuCY5_Qx-7ecOb9PZU1NOS7EoRfLWHg,221
105
+ agent_sre/integrations/wandb/exporter.py,sha256=QNUW9UzvFTL7Qh-rp0JTzHpXEOi8IrYUo4MyCie6dOc,4298
106
+ agent_sre/k8s/__init__.py,sha256=1BfrhzSXg-T1p0f418yOOaEtnbqgoKC8_xfDZpPXfA4,21517
107
+ agent_sre/mcp/__init__.py,sha256=y6o1L0de2DGis94RbU2jUQXtaEoDFwfJK6mu4x2NNI4,255
108
+ agent_sre/mcp/server.py,sha256=azpdP7qqUVhfmJXPK2FAlDtR-u7t2NsNYBQwsUz3gmQ,8120
109
+ agent_sre/replay/__init__.py,sha256=RBJl4G0VRzexg4M9_2zZVHIReNrBiqsicVXVxDWoXEc,900
110
+ agent_sre/replay/capture.py,sha256=v34FjR8ImNg1Lib5TdX8qXRItImC_4Aa2hux7SaQA4c,12286
111
+ agent_sre/replay/distributed.py,sha256=vgT5L7GIPCOkmCvoSriWLoZJozZ1o8XuiX-qZ0KXCjc,10775
112
+ agent_sre/replay/engine.py,sha256=RhGnv6r5t7apWYYi5zq3nHfRqyX2zdMJguGvshQ2Nkk,8174
113
+ agent_sre/replay/golden.py,sha256=D30n4iTdsgwLb5bdQj0XMgAiQUEKusZyr7ACKoCeF8Y,3058
114
+ agent_sre/replay/golden_manager.py,sha256=W1GRddD9MqIEolD08BbX5WxaBUnfl868nMJVVrxGc_g,6370
115
+ agent_sre/replay/visualization.py,sha256=VnfqSPgNrq74nEr6g6Y4n2uUve-pIDwksRjDUK3E5kc,8142
116
+ agent_sre/slo/__init__.py,sha256=e6XOAToHAXYrpSW_PiLamlrrDh48AiljCBJWhjeg8jQ,849
117
+ agent_sre/slo/dashboard.py,sha256=kI1jWHAksGRr0kdbz7LNrnHXQsPgeuEqRo29D4IJzhY,6308
118
+ agent_sre/slo/indicators.py,sha256=rskpfuWr99560WtCiIfMMtHrI0VT_3zj30ENwlzDrK8,18708
119
+ agent_sre/slo/objectives.py,sha256=DNW5STlnqEH-3iDA5MD1biRxqoOqqQ3F5eR2ppt0Up0,10687
120
+ agent_sre/slo/persistence.py,sha256=-FEAgqJkfP4SltjkW3OTVODM0_DG_NSgKt2bZ1lcPLY,10979
121
+ agent_sre/slo/spec.py,sha256=rkE_sjm53gPIkjE9-6wkbA9Wj8f616slmWS91hyqZvw,4966
122
+ agent_sre/slo/validator.py,sha256=-089PyE_tFriKZRpzxzejM3RyzbE4MEFhAUsAuyGSJw,4687
123
+ agent_sre/specs/__init__.py,sha256=aIe8RU5D0Yr-zpa_iJPSK9DVt-b76nk76G9KbXcZ-xI,5772
124
+ agent_sre/specs/coding-agent.yaml,sha256=1EddlZO6LbSTxOL3ebIsNG_UvTu2MVSxmdhdOhdTo7I,891
125
+ agent_sre/specs/customer-support-agent.yaml,sha256=agg6F72STa5I97cKHGrB8_BzgSPDxciylV0eJM6wOm8,888
126
+ agent_sre/specs/data-pipeline-agent.yaml,sha256=WVFJ6gPwNuzQydZ6ThQjK7qM1np6cfr30CtepE184-Y,987
127
+ agent_sre/specs/research-agent.yaml,sha256=nfTnoSXhwQF__df_5Om9wnVK_Fu0yMln1nbeAlkki-8,1002
128
+ agent_sre/tracing/__init__.py,sha256=7xY7DNbZeJ7fVY1rdUmCGs5wmTFipxVkg2Re6oJcnbA,24955
129
+ agent_sre/tracing/conventions.py,sha256=Ja6JkkHzqVUgMIjKDk1gJoAi1QNFpGbQK8g4yGl1KA8,1321
130
+ agent_sre/tracing/exporters.py,sha256=DvrM9-M-JbVwau_3IqcEFouA0KimeBNxAgl7fBafShU,3354
131
+ agent_sre/tracing/metrics.py,sha256=eRFItnl_guGpSFRtvzEPeeDdAycej90hkN0e-8_NNjI,3722
132
+ agent_sre/tracing/spans.py,sha256=-akCForuDqm4JfnNxrOawmuUgLdLi6o8yjd3nRAzfh4,4637
133
+ mcp_trust_server/__init__.py,sha256=4a4l3KNkw1lE1-uE9Ij1AuTxitF6mkZeEivc_WK_gRE,646
134
+ mcp_trust_server/__main__.py,sha256=_LDMSXs1eo_cTTu5NjlhhSDnfyrTXMrUP3-tmJ-5SZA,191
135
+ mcp_trust_server/server.py,sha256=h2q8iNowNjgUXw4KLXIONoYeBOJoFC7LPyIBU86aTM8,13798
136
+ agent_governance_toolkit_cli-4.0.0.dist-info/METADATA,sha256=ZwCqHqveI1xlflbC6SqUkR8KWI-jFqyZkPPq7mIkhyw,4230
137
+ agent_governance_toolkit_cli-4.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
138
+ agent_governance_toolkit_cli-4.0.0.dist-info/entry_points.txt,sha256=Em99Xe6RE4tllJukANetU6zcf2UiBCWfZVTYqgO9Jwg,53
139
+ agent_governance_toolkit_cli-4.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ agent-sre = agent_sre.cli.main:cli
@@ -0,0 +1,102 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+ # ruff: noqa: E402 — deprecation warning must fire before re-exports
4
+ """Agent Sandbox — execution isolation for AI agents.
5
+
6
+ Provides ``SandboxProvider``, the abstract base class for all sandbox
7
+ backends, plus three built-in implementations:
8
+
9
+ * :class:`DockerSandboxProvider` — hardened Docker containers with
10
+ policy-driven resource limits, tool/network proxies, and filesystem
11
+ checkpointing via ``docker commit``.
12
+ * :class:`HyperLightSandboxProvider` — micro-VM isolation backed by the
13
+ upstream `hyperlight-sandbox <https://github.com/hyperlight-dev/hyperlight-sandbox>`_
14
+ project (CNCF Sandbox). Capability-bound tools and domains, with
15
+ in-memory snapshots.
16
+ * :class:`ACASandboxProvider` — Azure Container Apps (ACA)
17
+ managed sandbox sessions with host-side policy gating and Azure-side
18
+ egress allowlist enforcement.
19
+ """
20
+
21
+
22
+ import warnings as _warnings
23
+ _warnings.warn(
24
+ "agt-sandbox is deprecated. Use agent-governance-toolkit-cli instead. "
25
+ "See https://github.com/microsoft/agent-governance-toolkit/blob/main/docs/package-consolidation/MIGRATION.md",
26
+ DeprecationWarning,
27
+ stacklevel=2,
28
+ )
29
+ del _warnings
30
+ from importlib.metadata import PackageNotFoundError, version
31
+
32
+ from agent_sandbox.sandbox_provider import (
33
+ ExecutionHandle,
34
+ ExecutionStatus,
35
+ SandboxConfig,
36
+ SandboxProvider,
37
+ SandboxResult,
38
+ SessionHandle,
39
+ SessionStatus,
40
+ )
41
+ from agent_sandbox.isolation_runtime import IsolationRuntime
42
+ from agent_sandbox.docker_provider.state import SandboxCheckpoint, SandboxStateManager
43
+
44
+ # Lazy import: DockerSandboxProvider requires the optional ``docker`` SDK.
45
+ try:
46
+ from agent_sandbox.docker_provider import DockerSandboxProvider
47
+ except ImportError:
48
+ DockerSandboxProvider = None # type: ignore[assignment,misc]
49
+
50
+ # Lazy import: HyperLightSandboxProvider requires the optional
51
+ # ``hyperlight-sandbox`` SDK. The class itself does not import the
52
+ # SDK at module load — the dependency is resolved at session-creation
53
+ # time — but we still wrap the import in ``try/except ImportError`` for
54
+ # symmetry with ``DockerSandboxProvider`` and to remain robust against
55
+ # future refactors that might pull the SDK in eagerly.
56
+ try:
57
+ from agent_sandbox.hyperlight_provider import (
58
+ HyperlightBackend,
59
+ HyperlightConfig,
60
+ HyperLightSandboxProvider,
61
+ SnapshotHandle,
62
+ hyperlight_config_from_policy,
63
+ )
64
+ except ImportError:
65
+ HyperlightBackend = None # type: ignore[assignment,misc]
66
+ HyperlightConfig = None # type: ignore[assignment,misc]
67
+ HyperLightSandboxProvider = None # type: ignore[assignment,misc]
68
+ SnapshotHandle = None # type: ignore[assignment,misc]
69
+ hyperlight_config_from_policy = None # type: ignore[assignment]
70
+
71
+ # Lazy import: ACASandboxProvider requires the optional
72
+ # ``azure-sandbox`` (and optionally ``azure-mgmt-sandbox``) SDKs.
73
+ try:
74
+ from agent_sandbox.aca_sandbox_provider import ACASandboxProvider
75
+ except ImportError:
76
+ ACASandboxProvider = None # type: ignore[assignment,misc]
77
+
78
+ try:
79
+ __version__ = version("agt-sandbox")
80
+ except PackageNotFoundError:
81
+ __version__ = "0.0.0"
82
+ __author__ = "Microsoft Corporation"
83
+
84
+ __all__ = [
85
+ "ACASandboxProvider",
86
+ "DockerSandboxProvider",
87
+ "ExecutionHandle",
88
+ "ExecutionStatus",
89
+ "HyperLightSandboxProvider",
90
+ "HyperlightBackend",
91
+ "HyperlightConfig",
92
+ "IsolationRuntime",
93
+ "SandboxCheckpoint",
94
+ "SandboxConfig",
95
+ "SandboxProvider",
96
+ "SandboxResult",
97
+ "SandboxStateManager",
98
+ "SessionHandle",
99
+ "SessionStatus",
100
+ "SnapshotHandle",
101
+ "hyperlight_config_from_policy",
102
+ ]
@@ -0,0 +1,24 @@
1
+ # Copyright (c) Microsoft Corporation.
2
+ # Licensed under the MIT License.
3
+ """Azure Container Apps (ACA) sandbox provider package.
4
+
5
+ Re-exports the provider class and public helpers from
6
+ :mod:`agent_sandbox.aca_sandbox_provider.aca_sandbox_provider`
7
+ so callers can write ``from agent_sandbox.aca_sandbox_provider
8
+ import ACASandboxProvider``.
9
+ """
10
+
11
+ from agent_sandbox.aca_sandbox_provider.aca_sandbox_provider import (
12
+ ACASandboxProvider,
13
+ aca_config_from_policy,
14
+ )
15
+
16
+ # Note: ``_network_allowlist``, ``_network_default``, and
17
+ # ``_validate_resource_name`` remain importable from the implementation
18
+ # module for tests, but are intentionally excluded from ``__all__``.
19
+ # Their underscore prefix marks them as internal — they may be
20
+ # refactored or removed without a deprecation cycle.
21
+ __all__ = [
22
+ "ACASandboxProvider",
23
+ "aca_config_from_policy",
24
+ ]