| title | AI Agent Governance Workshop Slides |
|---|---|
| last_reviewed | 2026-07-12 |
| owner | docs-team |
| marp | true |
| theme | default |
| paginate | true |
Native policy, host controls, identity, and trust
- Agent actions can create external side effects.
- Prompt instructions are not an authorization boundary.
- Policy, identity, isolation, audit, and reliability solve different problems.
An ACS manifest declares:
- policy engines and bundles
- intervention-point bindings
- tool catalogs
- transforms and evidence
- approval
- limits
from agent_control_specification import AgentControl, HostSession
runtime = AgentControl.from_path("policies/manifest.yaml")
session = HostSession(
runtime,
agent_id="agent-1",
session_id="session-1",
)evaluation = session.pre_tool_call(
tool_name="delete_file",
args={"path": "report.txt"},
)No side effect occurs before the pre-intervention evaluation.
PolicyEvaluation carries:
- verdict and reason code
- transform and evidence
- input and enforced identities
- approval metadata
- restricted audit payload
Run labs/lab1_first_policy.py.
- Inspect the manifest binding.
- Inspect the Rego policy.
- Run the scenarios.
- Add one deny condition.
Policy evaluation does not replace:
- sandbox resource and network controls
- framework lifecycle ordering
- circuit breakers and SLOs
- identity and trust
AgentMesh owns:
- cryptographic identity
- trust and reputation
- capability grants
- cross-agent transport
Complete labs/lab2_multi_agent_trust.py.
- Create identities.
- Attempt a trust handshake.
- Build trust.
- Revoke and verify denial.
- Unknown tools can be denied by manifest contract.
- Runtime and approval errors deny.
- Action-identity mismatch denies.
- Public errors remain sanitized.
- Lint and replay manifests.
- Test every mediated framework path.
- Test sandbox isolation.
- Test approval and runtime failures.
- Restrict audit access.
- Monitor SLOs and incident signals.
docs/quickstart.mddocs/tutorials/03-framework-integrations.mddocs/tutorials/55-agent-control-specification.mddocs/workshop/lab-guide.md