manage-governance
Configures usage policies (recommended/discouraged/prohibited) for repository-level agent skills.
Install
mkdir -p .claude/skills/manage-governance && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/18218" && unzip -o skill.zip -d .claude/skills/manage-governance && rm skill.zipInstalls to .claude/skills/manage-governance
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Manage governance policies for skills in config/governance.yaml. Set, remove, or list usage policies.Key capabilities
- →Set governance policies for skills
- →Remove governance policies for skills
- →List existing governance policies
- →Update usage_policy to recommended, discouraged, prohibited, or none
- →Add an optional note to a governance policy
How it works
The skill reads and modifies the config/governance.yaml file based on user intent to manage skill usage policies. It supports setting, removing, and listing these policies.
Inputs & outputs
When to use manage-governance
- →Set skill usage policy
- →List active governance policies
- →Remove prohibited skill configuration
About this skill
Manage Governance Policies
You are managing governance policies for the Agent Skill Harbor catalog.
File
- Config:
config/governance.yaml - Zod schema:
web/src/lib/schemas/governance.ts
Schema
usagePolicySchema: 'recommended' | 'discouraged' | 'prohibited' | 'none'
governancePolicySchema: {
usage_policy: UsagePolicy
note?: string
}
governanceSchema: {
policies: Record<string, GovernancePolicySchema> // key = skill path
}
Key Format
Skill path key: github.com/{owner}/{repo}/{skill-file-path}
Examples:
github.com/example-org/code-review/.claude/skills/review/SKILL.mdgithub.com/anthropics/prompt-library/SKILL.md
Actions
Parse the user's intent and execute the appropriate action below.
Set Policy
When the user wants to set a governance policy (e.g., govern github.com/owner/repo/SKILL.md recommended "reason"):
- Read
config/governance.yaml - Find or create an entry under
policieswith the skill path key - Set
usage_policyto one of:recommended,discouraged,prohibited - Optionally set
note - Write back
config/governance.yaml
Remove Policy
When the user wants to remove a governance policy or set it to none:
- Read
config/governance.yaml - Remove the entry from
policies - Write back
config/governance.yaml
List Policies
When the user wants to list governance policies:
- Read
config/governance.yaml - Display a table with: skill path, usage_policy, note
Important Notes
- All changes are made to local files only
- Remind the user to create a PR to apply changes
- After making changes, run
pnpm run build:catalogto regenerate the catalog
When not to use it
- →When the user wants to make changes to files other than config/governance.yaml
- →When the user wants to apply changes globally without creating a PR
- →When the user wants to modify the Zod schema directly
Limitations
- →All changes are made to local files only
- →Requires running 'pnpm run build:catalog' to regenerate the catalog after changes
- →Policies are defined by a specific schema (usage_policy, note)
How it compares
This skill provides a structured way to manage skill governance policies through a YAML file, unlike manual editing or an unstructured approach.
Compared to similar skills
manage-governance side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| manage-governance (this skill) | 0 | 4mo | No flags | Beginner |
| setup | 12 | 1mo | No flags | Beginner |
| tmux | 20 | 2mo | Review | Intermediate |
| macos-cleaner | 16 | 1mo | Review | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
setup
barefootford
Sets up a Mac for ButterCut. Installs all required dependencies (Homebrew, Ruby, Python, FFmpeg, WhisperX). Use when user says "install buttercut", "set up my mac", "get started", "first time setup", "install dependencies" or "check my installation".
tmux
openclaw
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
macos-cleaner
daymade
Analyze and reclaim macOS disk space through intelligent cleanup recommendations. This skill should be used when users report disk space issues, need to clean up their Mac, or want to understand what's consuming storage. Focus on safe, interactive analysis with user confirmation before any deletions.
ms365-tenant-manager
alirezarezvani
Microsoft 365 tenant administration for Global Administrators. Automate M365 tenant setup, Office 365 admin tasks, Azure AD user management, Exchange Online configuration, Teams administration, and security policies. Generate PowerShell scripts for bulk operations, Conditional Access policies, license management, and compliance reporting. Use for M365 tenant manager, Office 365 admin, Azure AD users, Global Administrator, tenant configuration, or Microsoft 365 automation.
agent-workflow-automation
ruvnet
Agent skill for workflow-automation - invoke with $agent-workflow-automation
tmux-terminal
mikeyobrien
Interactive terminal control via tmux for TUI apps, prompts, and long-running CLI workflows.