agent-governance

Implement governance, safety, and trust controls for AI agent systems.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/MoonAxis/azure-stack --skill agent-governance-moonaxis
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agent-governance
Source: https://github.com/MoonAxis/azure-stack/tree/main/skills/agent-governance
Command: npx skills add https://github.com/MoonAxis/azure-stack --skill agent-governance-moonaxis

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill provides robust patterns and techniques to implement governance, safety, and trust controls for AI agent systems, ensuring they operate securely and accountably.

Core Features & Use Cases

  • Policy Enforcement: Define and apply granular policies for tool usage, content filtering, and rate limiting.
  • Intent Classification: Detect and block potentially harmful prompts before execution.
  • Trust Scoring: Track agent reliability and manage multi-agent interactions.
  • Audit Trails: Maintain immutable logs of all agent actions for compliance and debugging.
  • Use Case: Securely enable an AI agent to access customer databases by defining a policy that only allows read operations on specific tables and blocks any attempt to export Personally Identifiable Information (PII).

Quick Start

Apply the agent-governance skill to protect your AI agent by defining a policy that restricts its tool access and filters sensitive content.

Frequently Asked Questions about agent-governance

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement policy enforcement for AI agents calling external tools?

Policy enforcement for AI agents is implemented through declarative policy objects that define granular rules for tool usage, content filtering, and rate limiting to restrict external tool access. You apply these policy objects directly to agent workflows to block unauthorized actions.

What is the best way to prevent prompt injection in production AI agent deployments?

Preventing prompt injection in production deployments requires intent classification and pattern-based threat detection to identify harmful prompts before execution. This mechanism intercepts malicious inputs, classifies intent, and blocks potentially dangerous commands from reaching the agent's core logic.

How do I build an audit trail for AI agent systems requiring compliance?

An audit trail for AI agent systems is built by maintaining immutable logs of all agent actions, capturing tool calls, inputs, and outputs for compliance and debugging. This ensures every action executed by the agent is recorded and traceable for regulatory reviews.

Can I track agent reliability and manage multi-agent interactions using trust scoring?

Trust scoring tracks agent reliability by assigning scores based on historical behavior and managing multi-agent interactions. This system monitors agent performance over time, enabling you to evaluate reliability and safely route tasks between multiple agents in a workflow.

Does this AI governance approach work with Python for securing multi-agent workflows?

This AI governance approach works natively with Python, utilizing tool-level decorators and declarative policy objects to secure multi-agent workflows. It integrates directly into Python-based agent systems to apply safety controls, intent classification, and audit logging.

How do I restrict an AI agent from exporting PII when accessing customer databases?

To restrict PII export during database access, define a policy that only allows read operations on specific tables and blocks any attempt to export sensitive information. The policy enforcement layer intercepts tool calls and terminates actions that violate content filtering rules.