A shared toolkit of AI agent utilities for the team, including reusable skills, custom agent definitions, MCP server install helpers, and sample configurations.
.
├── skills/ # Reusable skills, installed via agent-config-kit
├── custom-agents/ # Custom agent definitions for GitHub Copilot and Claude Code
├── mcp/ # Install helpers and configuration for common MCP servers
├── configs/ # Sample / reference agent configurations
├── packages/agent-config-kit/ # agent-kit — the CLI that installs the skills/MCP servers declared below
├── packages/agent-kit/ # PyPI meta-package (ol-agent-kit): agent-config-kit[cli] + witan + witan-code
└── agent-config.toml # This repo's own manifest for agent-kit
Setup for this repo's own MCP servers and skills is driven by
agent-config-kit (agent-kit) and the
manifest at agent-config.toml — a single declarative
file that installs MCP servers, skills, and hooks into whichever coding-agent
platforms it detects (Claude Code, Pi, GitHub Copilot, OpenCode, ...).
uv tool install 'agent-config-kit[cli]'To also pull in the witan and
witan-code MCP servers in one shot,
install the ol-agent-kit meta-package
instead — it depends on all three and carries no code of its own (agent-kit
was already taken on PyPI, hence the ol- prefix on this one; the console
script is still agent-kit either way):
uv tool install ol-agent-kitagent-kit apply agent-config.toml # everything, every detected platform
agent-kit apply agent-config.toml --profile python # just the python profile (+ universal)
agent-kit apply agent-config.toml --dry-run # preview without writing
agent-kit validate agent-config.toml # check for drift
agent-kit profiles agent-config.toml # list profiles + entry countsagent-config.toml's [profiles.*] tables mirror the skills/ category
layout — pick the profile matching your specialty (python,
infrastructure, containers, dagster, process, ...) to install the
universal baseline plus just the skills relevant to your work. Selecting no
profile installs the whole catalog, including the toolhive-swe MCP
servers below — they aren't part of any profile, so a --profile run
skips them.
Run agent-kit apply agent-config.toml --scope project instead of the default
global scope to register servers/skills in the current project only
rather than user-wide.
This registers the skill catalog plus the toolhive-swe
remote MCP server (one entry per environment tier). It does not register
witan or witan-code —
those own their own registration lifecycle via witan setup (see their
READMEs), so they aren't duplicated in this manifest.
See skills/ for the full skill catalog and
packages/agent-config-kit/README.md
for the full manifest schema, remote skill/hook sources, and profile
composition.
See mcp/ for per-server install scripts and configuration
snippets, including witan and
witan-code.
See custom-agents/ for agent definitions and setup
instructions for GitHub Copilot and Claude Code.
agent-kit isn't specific to this repo — any project or team can write its own
agent-config.toml manifest to declare MCP servers, skills, and hooks, then
run agent-kit apply to install them into whichever coding-agent platforms are
detected locally. For local, personal use, point [skills] at paths on
disk; for team use, point at a shared repo (this one, or your own) via a
git+https://... source so everyone applies the same manifest:
[skills]
my-local-skill = "skills/my-local-skill/SKILL.md"
team-skill = "git+https://github.com/mitodl/agent-kit.git#subdirectory=skills/process/dependency-updates/SKILL.md"See packages/agent-config-kit/README.md
for the full manifest format, apply/validate/profiles command
reference, and how remote (https:///git+) skill and hook sources are
fetched and cached.
- Add new skills under
skills/<category>/<skill-name>/— follow the skill authoring guide or use thecreating-skillsskill. - Register the skill in
agent-config.toml's[skills]table (and add it to the relevant[profiles.*]entry) soagent-kit applypicks it up. - Add new custom agents under
custom-agents/<platform>/— follow the agent authoring guide. - Add MCP install helpers under
mcp/servers/<server-name>/— follow the MCP guide. - Open a PR with a brief description of what the addition does and why it's useful.