agent-governance

agent-governance is a skill for Claude Code, Codex from agentrust-io/awesome-ai-governance. It costs 126 tokens per session (4,183 once invoked), scanned A, a copy of agent-governance, CC0-1.0.

Patterns for controlling what AI agents may do when they use tools such as APIs, databases, or files. They cover permission policies, threat checks, trust boundaries, and audit records.

In plain words
What is it for?
Use it to design tool permissions, block risky requests, separate trust between agents, limit operations, and record agent activity.
Why use it?
They help prevent agents from taking unsafe or unauthorized actions and make their decisions easier to review. This is especially relevant for production systems and sensitive data.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to design tool permissions, block risky requests, separate trust between agents, limit operations, and record agent activity.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentrust-io/awesome-ai-governance/agent-governance
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add agentrust-io/awesome-ai-governance --skill agent-governance
Clone the repo
git clone --depth 1 https://github.com/agentrust-io/awesome-ai-governance

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for agent-governance

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentrust-io/awesome-ai-governance/agent-governance/github.svg)](https://agentmods.dev/skills/agentrust-io/awesome-ai-governance/agent-governance)
Your own site
<a href="https://agentmods.dev/skills/agentrust-io/awesome-ai-governance/agent-governance"><img src="https://agentmods.dev/badge/skills/agentrust-io/awesome-ai-governance/agent-governance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for agent-governance

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentrust-io/awesome-ai-governance/agent-governance"><img src="https://agentmods.dev/badge/skills/agentrust-io/awesome-ai-governance/agent-governance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 126 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,183 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00126 $0.04183
Opus 5 $0.00063 $0.02091
Sonnet 5 $0.00025 $0.00837
Haiku 4.5 $0.00013 $0.00418

Measured 12d ago against content hash 29977df60e6c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

agent-governance scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

(r"(?i)curl\s+.*\s+-d\s+", "data_exfiltration", 0.7),
Origin

This is a copy

100% identical to agent-governance — 13 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

awesome-copilot-contributions/skills/agent-governance/SKILL.md · 565 lines

How it starts

The opening of the file, as written. The whole thing — 565 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent Governance Patterns

Patterns for adding safety, trust, and policy enforcement to AI agent systems.

Overview

Governance patterns ensure AI agents operate within defined boundaries — controlling which tools they can call, what content they can process, how much they can do, and maintaining accountability through audit trails.

User Request → Intent Classification → Policy Check → Tool Execution → Audit Log
                     ↓                      ↓               ↓
              Threat Detection         Allow/Deny      Trust Update

When to Use

  • Agents with tool access: Any agent that calls external tools (APIs, databases, shell commands)
  • Multi-agent systems: Agents delegating to other agents need trust boundaries
  • Production deployments: Compliance, audit, and safety requirements
  • Sensitive operations: Financial transactions, data access, infrastructure management

Pattern 1: Governance Policy

Define what an agent is allowed to do as a composable, serializable policy object.

from dataclasses import dataclass, field
from enum import Enum
from typing import Optional
import re

class PolicyAction(Enum):
    ALLOW = "allow"
    DENY = "deny"
    REVIEW = "review"  # flag for human review

@dataclass
class GovernancePolicy:
    """Declarative policy controlling agent behavior."""
    name: str
    allowed_tools: list[str] = field(default_factory=list)       # whitelist
    blocked_tools: list[str] = field(default_factory=list)       # blacklist
    blocked_patterns: list[str] = field(default_factory=list)    # content filters
    max_calls_per_request: int = 100                             # rate limit
    require_human_approval: list[str] = field(default_factory=list)  # tools needing approval

    def check_tool(self, tool_name: str) -> PolicyAction:
        """Check if a tool is allowed by this policy."""
        if tool_name in self.blocked_tools:
            return PolicyAction.DENY
        if tool_name in self.require_human_approval:
            return PolicyAction.REVIEW
        if self.allowed_tools and tool_name not in self.allowed_tools:
            return PolicyAction.DENY
        return PolicyAction.ALLOW

    def check_content(self, content: str) -> Optional[str]:
        """Check content against blocked patterns. Returns matched pattern or None."""
        for pattern in self.blocked_patterns:
            if re.search(pattern, content, re.IGNORECASE):
                return pattern
        return None

Read the full file on GitHub · 565 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 565 lines · 126 tokens per session scan A 29977df60e6c

Subscribe to this mod's changes

agent-governance is a skill published in the GitHub repository agentrust-io/awesome-ai-governance (45 stars, last pushed today), licensed CC0-1.0. It adds 126 tokens to every session and 4,183 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to agent-governance, differing in 13 lines, and is treated as a copy.

Related

Other skills, from other repositories

air-blackbox-sales-agent

AIR Blackbox's autonomous sales prospecting agent. Finds Python AI projects on GitHub that need EU AI Act compliance, identifies the right person to contact (CEO, CTO, lead maintainer), runs a free compliance scan, and drafts personalized outreach emails that convert to engagement. The sales flow: free scan as the…

airblackbox/airblackbox · 248 tokens

interpret-results

Interprets AIR Blackbox scan results and maps findings to specific EU AI Act articles, recitals, and remediation steps. Use when the user has scan output and wants to understand what to fix, why it matters, or how to prioritize.

airblackbox/airblackbox · 49 tokens

compliance-scan

Scans a Python AI project for EU AI Act compliance gaps using AIR Blackbox. Use when the user asks to check compliance, scan their code, audit their AI project, or mentions EU AI Act, Articles 9-15, or compliance checking.

airblackbox/airblackbox · 51 tokens

unity-agent-workflows

Use for AI-assisted Unity work that needs live repo discovery, project-derived routing, runtime-owner proof, runtime-visible output hard stops, runtime numeric proof for repeated visible-output failures, state-step guards, multi-agent scope ownership, modular C#/asmdef safety, UI/scene/visual asset gates, data-first…

hashgraph-online/awesome-codex-plugins · 146 tokens

interpreting-mod-author-instructions

A guide for following a Bethesda mod author's installation instructions, including file choices, prerequisites, and installer options.

hashgraph-online/awesome-codex-plugins · 133 tokens

frontend-patterns

Frontend development patterns for React, Next.js, state management, performance optimization, and UI best practices.

hashgraph-online/awesome-codex-plugins · 24 tokens