Use the catalog in Claude Code
Skills, agents, instructions and MCP servers all work in Claude Code. Skills load automatically when a prompt matches; agents are subagents you call by name.
Support in Claude Code
| Kind | Supported |
|---|---|
| Skills | All 57, loaded automatically when relevant |
| Agents | All 8, as subagents |
| Instructions | 12 rule files, path-scoped |
| MCP servers | Azure DevOps, read-only by default |
Run these once, in your project
Node.js 20 or newer. Every command is safe to re-run — it overwrites what it installed before.
- 1Skills for your stack
npx skills add AGCO-Global/org-skills -a claude-codeInteractive picker. Add
--skill <name> …to pick up front, or-gto install for every project. - 2Agents
npx -y github:AGCO-Global/org-skills add agent code-reviewer test-writer --tool claudeGenerates a Claude subagent from each agent. Read-only agents are generated with
disallowedToolsso they cannot write to Azure DevOps. - 3Instructions
npx -y github:AGCO-Global/org-skills add instructions typescript secure-coding --tool claudeBecomes a path-scoped rule file — it applies only to files matching its globs.
- 4Azure DevOps MCP
npx -y github:AGCO-Global/org-skills add mcp azure-devops --org <your-ado-org> --tool claudeWrites
.mcp.json. The shipped config is read-only; see the server README before granting writes.
What gets written to your repo
| Kind | Path |
|---|---|
| Skills | .claude/skills/ — or ~/.claude/skills/ with --user |
| Agents | .claude/agents/<name>.md |
| Instructions | .claude/rules/<name>.md |
| MCP | .mcp.json in the project root |
Using it once it is installed
Ask normally — "add a swipe-to-dismiss gesture to this card". The matching skill loads from its description; you never name it.
Ask for the code reviewer, or the build triage agent. Each runs as a subagent with only the tools its job needs.
They apply to every file matching their globs, with no prompt needed.
If a skill did not fire, the description did not match your wording — say what you are working on more concretely, or name the skill.
Gotchas
/plugin does not work in the VS Code extensionIt reports "not available in this environment". Use the installer commands above, or the shell commands claude plugin marketplace add AGCO-Global/org-skills and claude plugin install org-agents@org-skills --scope project.
A subagent runs once and returns. Our agents put questions in an "Open questions" section of their output instead of waiting for an answer.
Pick the skills for your stack
npx skills add AGCO-Global/org-skills