Skip to content

Commit b02974d

Browse files
jackbatznerCopilot
andcommitted
fix: correct broken README links and lint error in integrity.py
- Fix README.md: agentos/ -> agent_os/ in MCP Scanner links - Fix integrity.py: move import to top of file (E402), remove unused ALLOWED_MODULE_PREFIXES import (F401) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent afaae14 commit b02974d

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Still have questions? File a [GitHub issue](https://github.com/microsoft/agent-g
110110
- **Agent SRE**: SLOs, error budgets, replay debugging, chaos engineering, circuit breakers, progressive delivery
111111
- [Agent SRE](packages/agent-sre/) | [Observability integrations](packages/agent-hypervisor/src/hypervisor/observability/)
112112
- **MCP Security Scanner**: Detect tool poisoning, typosquatting, hidden instructions, and rug-pull attacks in MCP tool definitions
113-
- [MCP Scanner](packages/agent-os/src/agentos/mcp_security.py) | [CLI](packages/agent-os/src/agentos/cli/mcp_scan.py)
113+
- [MCP Scanner](packages/agent-os/src/agent_os/mcp_security.py) | [CLI](packages/agent-os/src/agent_os/cli/mcp_scan.py)
114114
- **Trust Report CLI**: `agentmesh trust report` — visualize trust scores, task success/failure, and agent activity
115115
- [Trust CLI](packages/agent-mesh/src/agentmesh/cli/trust_cli.py)
116116
- **Secret Scanning & Fuzzing**: Gitleaks workflow, 7 fuzz targets covering policy, injection, sandbox, trust, and MCP

packages/agent-compliance/src/agent_compliance/integrity.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@
3232
from types import ModuleType
3333
from typing import Any, Optional
3434

35-
logger = logging.getLogger(__name__)
35+
from agent_compliance.verify import _validate_module_name
3636

37-
# Import the shared allowlist validation from verify.py
38-
from agent_compliance.verify import ALLOWED_MODULE_PREFIXES, _validate_module_name
37+
logger = logging.getLogger(__name__)
3938

4039
# Governance modules whose integrity we verify
4140
GOVERNANCE_MODULES = [

0 commit comments

Comments
 (0)