The Governed Skills Registry: Policy-as-Code for Enterprise Agent Capabilities A new governance framework for enterprise agent capabilities, the Governed Skills Registry, extends the Platform Planning Gateway to validate Claude Code skills against Rego policies before distribution. The system treats skills as semantic directives that must pass policy checks for versioning, description quality, and workflow compliance to prevent agents from bypassing execution governance. The companion repository adds a /validate_skill endpoint and skill-governance policy directory to enforce enterprise-valid skill distribution. The previous article https://blog.owulveryck.info/2026/07/07/amplified-agentic-loop.html closed the architecture of the Platform Planning Gateway: a proof of concept that governs how agents execute. Plans are linted against Rego policies derived from Architecture Decision Records, capability tickets constrain every tool call, and the smart tools verify the ticket before acting. The execution plane is governed. There is a second plane that is not: the capability plane . Before an agent can plan or execute, it needs to know what it can do . In Claude Code, that answer arrives through skills : slash-command workflows that encapsulate reusable agentic patterns and make them invocable by any agent in the organization with a single /skill-name invocation. Skills are the distribution unit of the agentic workforce. An enterprise that governs plans but leaves capabilities ungoverned has solved the wrong half of the problem: a well-governed plan built on a poorly-governed skill is still a risk. This article asks: what makes a skill enterprise-valid? What policies must accompany it? How does a distribution mechanism the skills equivalent of a package manager enforce those policies? And how does the existing Platform Planning Gateway fit into the picture? The companion repository poc-agentic-platform https://github.com/owulveryck/poc-agentic-platform has been extended with a new POST /validate skill endpoint and a skill-governance/ Rego policy directory. The patterns are the same ones established for plan governance; the domain shifts from execution to capability. A Claude Code skill is a SKILL.md file. Its front matter is deliberately minimal: --- name: patch-payment description: "Applies targeted changes to the payment service, following platform ADRs for proxy and migration ordering." version: 1.0.0 argument-hint: " description of the change " --- Skill body Analyse the intent passed as $ARGUMENTS against the repository context. Call get platform guidelines for intent to retrieve the relevant ADR invariants. Produce a structured plan and submit it through lock in plan before using Edit. Skills are discovered automatically from ~/.claude/skills/