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 compatible with the Vercel skills CLI (npx skills)
├── 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
Install all skills from this repo into your project:
npx skills add mitodl/agent-kitInstall a specific skill:
npx skills add mitodl/agent-kit --skill uv-python-workflowInstall globally (user-level, available in all projects):
npx skills add mitodl/agent-kit --globalBrowse available skills without installing:
npx skills add mitodl/agent-kit --listSee skills/ for the full skill catalog.
See mcp/ for per-server install scripts and configuration snippets.
See custom-agents/ for agent definitions and setup
instructions for GitHub Copilot and Claude Code.
- Add new skills under
skills/<category>/<skill-name>/— follow the skill authoring guide or use thecreating-skillsskill. - 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.