一键导入
agent-governance
AI agent governance — policy enforcement, zero-trust identity, sandboxing (OWASP Agentic Top 10)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
AI agent governance — policy enforcement, zero-trust identity, sandboxing (OWASP Agentic Top 10)
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
| name | agent-governance |
| description | AI agent governance — policy enforcement, zero-trust identity, sandboxing (OWASP Agentic Top 10) |
| tags | ["ai-agents","governance","security","owasp","policy"] |
| related_skills | ["hermes-agent"] |
Policy enforcement, zero-trust identity, and execution sandboxing for AI agents. Covers all OWASP Agentic Top 10.
pip install agent-governance-toolkit
ag-init --project my-agent
# Creates: policies.yaml, audit.log, governance.config.yaml
# policies.yaml
rules:
- name: no-financial-actions
match: "agent.action.type == 'financial'"
action: deny
reason: "Financial actions require human approval"
- name: rate-limit
match: "agent.action.count > 100"
action: throttle
window: "1h"
- name: sandbox-external
match: "agent.action.target == 'external'"
action: sandbox
timeout: 30s
from governance import AgentGovernor
governor = AgentGovernor("policies.yaml")
safe_agent = governor.wrap(my_agent)
# Agent now enforces all policies automatically
response = safe_agent.run("process this data")
ag-audit --agent my-agent --since 24h
ag-audit --agent my-agent --action financial --result denied
| # | Risk | Mitigation |
|---|---|---|
| 1 | Prompt Injection | Input sanitization + context isolation |
| 2 | Tool Misuse | Policy-based tool access control |
| 3 | Privilege Escalation | Zero-trust identity verification |
| 4 | Data Exfiltration | Output filtering + audit logging |
| 5 | Unauthorized Actions | Action approval workflows |
| 6 | Cascading Failures | Execution sandboxing + timeouts |
| 7 | Memory Poisoning | Memory integrity verification |
| 8 | Hallucination Exploitation | Output validation + fact-checking |
| 9 | Over-permissioning | Least-privilege tool access |
| 10 | Supply Chain | Dependency verification |
ag-audit --rotate --keep 30d# Initialize
ag-init --project test-agent
# Verify policies load
ag-validate policies.yaml
# Run a test action through governance
ag-test --action "read file /etc/passwd" --expect deny
# Check audit log
ag-audit --last 10