agentmesh_runtime 3.2.1__tar.gz → 3.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -246,7 +246,7 @@ PublishScripts/
246
246
  # NuGet Symbol Packages
247
247
  *.snupkg
248
248
  # The packages folder can be ignored because of Package Restore
249
- # DISABLED: mono-repo uses /packages/ for source code
249
+ # DISABLED: mono-repo; source code starts at repo root
250
250
  # **/[Pp]ackages/*
251
251
  # !**/[Pp]ackages/build/
252
252
  # #!**/[Pp]ackages/repositories.config
@@ -455,3 +455,10 @@ FodyWeavers.xsd
455
455
  .env
456
456
  .env.*
457
457
  _site/
458
+
459
+ # Build artifacts and caches
460
+ dist/
461
+ .hypothesis/
462
+ .pytest_cache/
463
+ .ruff_cache/
464
+ _site/
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentmesh_runtime
3
- Version: 3.2.1
3
+ Version: 3.3.0
4
4
  Summary: Public Preview — AgentMesh Runtime: Execution supervisor for multi-agent sessions with privilege rings, saga orchestration, and audit trails
5
5
  Project-URL: Homepage, https://github.com/microsoft/agent-governance-toolkit
6
6
  Project-URL: Repository, https://github.com/microsoft/agent-governance-toolkit
7
- Project-URL: Documentation, https://github.com/microsoft/agent-governance-toolkit/tree/main/packages/agent-runtime
7
+ Project-URL: Documentation, https://github.com/microsoft/agent-governance-toolkit/tree/main/agent-runtime
8
8
  Project-URL: Bug Tracker, https://github.com/microsoft/agent-governance-toolkit/issues
9
9
  Author-email: Microsoft Corporation <agentgovtoolkit@microsoft.com>
10
10
  Maintainer-email: Agent Governance Toolkit Team <agentgovtoolkit@microsoft.com>
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "agentmesh_runtime"
7
- version = "3.2.1"
7
+ version = "3.3.0"
8
8
  description = "Public Preview — AgentMesh Runtime: Execution supervisor for multi-agent sessions with privilege rings, saga orchestration, and audit trails"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -41,7 +41,7 @@ dependencies = [
41
41
  [project.urls]
42
42
  Homepage = "https://github.com/microsoft/agent-governance-toolkit"
43
43
  Repository = "https://github.com/microsoft/agent-governance-toolkit"
44
- Documentation = "https://github.com/microsoft/agent-governance-toolkit/tree/main/packages/agent-runtime"
44
+ Documentation = "https://github.com/microsoft/agent-governance-toolkit/tree/main/agent-runtime"
45
45
  "Bug Tracker" = "https://github.com/microsoft/agent-governance-toolkit/issues"
46
46
 
47
47
  [tool.hatch.build.targets.wheel]
@@ -87,7 +87,7 @@ class DockerDeployer:
87
87
  def _run(self, args: list[str], check: bool = True) -> subprocess.CompletedProcess[str]:
88
88
  cmd = [self._docker] + args
89
89
  logger.debug("Running: %s", " ".join(cmd))
90
- return subprocess.run(cmd, capture_output=True, text=True, check=check, timeout=60)
90
+ return subprocess.run(cmd, capture_output=True, text=True, check=check, timeout=60) # noqa: S603 — trusted subprocess in deployment script
91
91
 
92
92
  def deploy(self, agent_id: str, image: str, config: GovernanceConfig,
93
93
  port: int = 0, env: dict[str, str] | None = None, **kwargs: Any) -> DeploymentResult:
@@ -103,7 +103,7 @@ class DockerDeployer:
103
103
  "--cap-drop", "ALL",
104
104
  "--security-opt", "no-new-privileges",
105
105
  "--read-only",
106
- "--tmpfs", "/tmp:rw,noexec,nosuid",
106
+ "--tmpfs", "/tmp:rw,noexec,nosuid", # noqa: S108 — Docker tmpfs mount specification, not a hardcoded path
107
107
  # Governance config as env vars
108
108
  "-e", f"AGT_POLICY_PATH={config.policy_path}",
109
109
  "-e", f"AGT_TRUST_LEVEL={config.trust_level}",
@@ -214,7 +214,7 @@ class KubernetesDeployer:
214
214
  cmd.extend(["--context", self._context])
215
215
  cmd.extend(args)
216
216
  logger.debug("Running: %s", " ".join(cmd))
217
- return subprocess.run(cmd, capture_output=True, text=True, check=check, timeout=120)
217
+ return subprocess.run(cmd, capture_output=True, text=True, check=check, timeout=120) # noqa: S603 — trusted subprocess in deployment script
218
218
 
219
219
  def _build_pod_manifest(self, agent_id: str, image: str, config: GovernanceConfig) -> dict[str, Any]:
220
220
  return {
@@ -260,7 +260,7 @@ class KubernetesDeployer:
260
260
  "requests": {"cpu": "100m", "memory": "256Mi"},
261
261
  "limits": {"cpu": "500m", "memory": "512Mi"},
262
262
  },
263
- "volumeMounts": [{"name": "tmp", "mountPath": "/tmp"}],
263
+ "volumeMounts": [{"name": "tmp", "mountPath": "/tmp"}], # noqa: S108 — Docker container path specification
264
264
  },
265
265
  ],
266
266
  "volumes": [{"name": "tmp", "emptyDir": {"sizeLimit": "100Mi"}}],