A curated registry of Claude Code skills, agents, and tools with a smart search MCP server. The Provectus Way of assembling AI capabilities for your project.
Connect the MCP server to Claude Code, search for capabilities using natural language, and install them into your project with a single command.
Works best with AWOS — the AI Workflow Orchestration System for spec-driven development. AWOS drives the SDLC pipeline from spec to implementation; Recruitment provisions the right skills, agents, and tools for each task. Use the built-in
/awos:hirecommand to fully automate capability provisioning — it searches, selects, and installs everything your project needs in one step.
Claude Code CLI:
claude mcp add awos-recruitment --transport http --scope project https://recruitment.awos.provectus.pro/mcpWe recommend
--scope projectso the MCP config is stored in.mcp.jsonand shared with your team. If you don't need that, change the scope (e.g.--scope user).
Or add to .mcp.json manually:
{
"mcpServers": {
"awos-recruitment": {
"type": "url",
"url": "https://recruitment.awos.provectus.pro/mcp"
}
}
}Once connected, Claude Code gains access to the search_capabilities tool — search the registry using natural language with an optional type filter (skill, agent, tool).
Install discovered capabilities directly into your project:
npx @provectusinc/awos-recruitment <command> <names...>| Command | Description |
|---|---|
skill <names...> |
Install skills into .claude/skills/ |
mcp <names...> |
Install MCP server definitions into .mcp.json |
agent <names...> |
Install agents into .claude/agents/ (auto-installs referenced skills) |
Examples:
npx @provectusinc/awos-recruitment skill modern-python-development
npx @provectusinc/awos-recruitment mcp context7 playwright
npx @provectusinc/awos-recruitment agent test-agent| Document | Description |
|---|---|
| Development Guide | Prerequisites, setup, commands, and project structure |
| Contributing to the Registry | How to add skills, MCP definitions, and agents |
| Philosophy | Why "Recruitment" and the vision behind the project |
