For the
SKILL.md format and how the core harness loads git-backed skills on demand, see Setup Skills in the TrueForge docs. This page covers the governance TrueFoundry adds on top: the versioned Skills Registry, RBAC, version pinning, and audit trails.Why centralized skills matter
In Claude Managed Agents or LangSmith Managed Deep Agents, skills are files you commit to agent repos or upload via API. There is no shared registry, no version pinning independent of code deploys, and no access control per skill. TrueFoundry Skills Registry provides:What a skill contains
A skill is a directory rooted at aSKILL.md file with YAML frontmatter (name + description) and a markdown body with instructions.
description field is what the agent sees upfront to decide whether a skill is relevant. The full body is loaded only when the agent picks the skill (progressive disclosure).
Versioning and production stability
Skills are versioned artifacts in the Skills Registry:- Pin a specific version on a production agent for guaranteed behavior
- Test new versions in staging or playground before promoting
- Roll back instantly if a skill change causes regressions
- Audit history of what changed, when, and by whom
How skills are used at runtime
At run time, the harness:- Exposes skill metadata (
name,description) to the model at startup - When the model determines a skill is relevant, loads the full
SKILL.mdbody - The agent follows the skill’s instructions and accesses supporting files as needed
Preload Skill / MCP tools into agent context
For each skill, you can configure Preload Skill / MCP tools into agent context. When enabled:- Full
SKILL.mdis preloaded into the agent’s context at startup - The agent does not need an extra turn to read the skill
- Uses more context space upfront
Skills + MCP tools
Skills and MCP tools are complementary:- Skills define how to handle a task (the procedure, decision logic, formatting rules)
- MCP tools provide the actions and data needed to execute it
Access control
Skills inherit access control from their parent Repository in the Skills Registry. See Repositories for the shared repository concept, storage backing, and access-control model.- Creators and admins publish and manage skills
- Teams and users with read access can attach skills to agents
- End-users invoking an agent get implicit access to attached skills
Getting started
- Publish or import skills in the Skills Registry.
- Select skills while creating/editing an agent in the builder.
- Pin versions for production agents.
- Validate behavior in playground before promoting to broad usage.