Using the Coveo skills marketplace
Using the Coveo skills marketplace
With the Coveo skills marketplace, you can browse, install, and manage prebuilt skills for your AI agents. By connecting a marketplace to your AI platform, you give your agents access to a growing library of capabilities without building them from scratch.
This article covers how to connect the Coveo skills marketplace to GitHub Copilot and Anthropic Claude, and how to add a skill to your agent configuration.
Prerequisites
-
GitHub Copilot CLI or Claude Code (version 1.0.33 or later) installed and authenticated.
-
Access to the Coveo skills marketplace repository (for example,
coveo/doc_skills_marketplaceon GitHub).
Connect Coveo skills marketplace to your AI platform
GitHub Copilot
To connect Coveo skills marketplace to GitHub Copilot:
-
Add the Coveo skills marketplace to your CLI:
copilot plugin marketplace add coveo/doc_skills_marketplace -
Browse the available plugins:
copilot plugin marketplace browse doc_skills_marketplace -
Install a plugin from the marketplace:
copilot plugin install knowledge-base-search@doc_skills_marketplace
Claude Code
To connect Coveo skills marketplace to Claude Code:
-
Add the Coveo skills marketplace to your CLI:
/plugin marketplace add coveo/doc_skills_marketplace -
Browse the available plugins by running
/pluginand selecting the Discover tab. -
Install a plugin from the marketplace:
/plugin install knowledge-base-search@doc_skills_marketplace
To configure the marketplace for your entire team, add it to the .claude/settings.json file in your repository:
{
"extraKnownMarketplaces": {
"doc_skills_marketplace": {
"source": {
"source": "github",
"repo": "coveo/doc_skills_marketplace"
}
}
}
}
Add a skill from the marketplace
After connecting the Coveo skills marketplace, you can install plugins directly from the marketplace.
GitHub Copilot
copilot plugin install knowledge-base-search@doc_skills_marketplace
To verify the plugin is installed:
copilot plugin list
Claude Code
/plugin install knowledge-base-search@doc_skills_marketplace
To verify the plugin is installed, run /plugin and select the Installed tab.
The installed plugin is immediately available to your agent. You don’t need to rebuild or redeploy your agent configuration.
What’s next
-
Browse the Coveo skills marketplace catalog to discover available skills.
-
Explore creating custom skills to share with your team through the marketplace.