Org Skills
How to use it

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.

What works here

Support in Claude Code

KindSupported
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
Install

Run these once, in your project

Node.js 20 or newer. Every command is safe to re-run — it overwrites what it installed before.

  1. 1Skills for your stack
    npx skills add AGCO-Global/org-skills -a claude-code

    Interactive picker. Add --skill <name> … to pick up front, or -g to install for every project.

  2. 2Agents
    npx -y github:AGCO-Global/org-skills add agent code-reviewer test-writer --tool claude

    Generates a Claude subagent from each agent. Read-only agents are generated with disallowedTools so they cannot write to Azure DevOps.

  3. 3Instructions
    npx -y github:AGCO-Global/org-skills add instructions typescript secure-coding --tool claude

    Becomes a path-scoped rule file — it applies only to files matching its globs.

  4. 4Azure DevOps MCP
    npx -y github:AGCO-Global/org-skills add mcp azure-devops --org <your-ado-org> --tool claude

    Writes .mcp.json. The shipped config is read-only; see the server README before granting writes.

Where files land

What gets written to your repo

KindPath
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
Day to day

Using it once it is installed

Skills fire on their own

Ask normally — "add a swipe-to-dismiss gesture to this card". The matching skill loads from its description; you never name it.

Call an agent by name

Ask for the code reviewer, or the build triage agent. Each runs as a subagent with only the tools its job needs.

Instructions are always on

They apply to every file matching their globs, with no prompt needed.

Check what loaded

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.

Worth knowing

Gotchas

/plugin does not work in the VS Code extension

It 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.

Agents cannot hold a conversation

A subagent runs once and returns. Our agents put questions in an "Open questions" section of their output instead of waiting for an answer.

Next

Pick the skills for your stack

npx skills add AGCO-Global/org-skills