***

title: Agent Skills
og:title: You.com Agent Skills | Build with Agents
og:description: Install pre-built agent skills to integrate You.com's web search and content extraction into your framework of choice—Vercel AI SDK, Claude, OpenAI, crewAI, CLI and more.
---------------------

For clean Markdown of any page, append .md to the page URL. For a complete documentation index, see https://you.com/docs/build-with-agents/llms.txt. For full documentation content, see https://you.com/docs/build-with-agents/llms-full.txt.

## Overview

[Agent Skills](https://agentskills.io/what-are-skills) are pre-built instructions that tell an agent how to perform a specific task. Skills can also bundle scripts, templates, and reference materials.
Think of it as a complex, structured and highly repeatable prompt that tells an Agent to do a specific thing in a specific way.

Skills follow a [standard specification](https://agentskills.io/specification) and work with any agent that supports this spec. This includes popular coding agents like Cursor, Claude Code and Codex and tools like [OpenClaw](https://docs.openclaw.ai/tools/skills).

<Launch>
  Have an idea for a Skill? We'd love for you to 

  [contribute](https://github.com/youdotcom-oss/agent-skills/issues)

  .
</Launch>

## Available Skills

We have an ever-growing set of Skills specific to building with You.com APIs using popular tools and frameworks. **Check them out on GitHub:** [youdotcom-oss/agent-skills](https://github.com/youdotcom-oss/agent-skills)

<CardGroup cols={1}>
  <Card title="ydc-ai-sdk-integration" icon="fa-brands fa-node-js">
    Integrate Vercel AI SDK applications with real-time web search and content extraction.
  </Card>

  <Card title="youdotcom-cli" icon="fa-regular fa-terminal">
    Enable your agents to use a universal CLI tool to interact with our APIs.
  </Card>

  <Card title="ydc-claude-agent-sdk-integration" icon="fa-regular fa-robot">
    Connect Claude Agent SDK to You.com's MCP server.
  </Card>

  <Card title="ydc-openai-agent-sdk-integration" icon="fa-regular fa-bolt">
    Add You.com MCP tools to OpenAI Agents SDK using Hosted MCP or Streamable HTTP modes.
  </Card>

  <Card title="ydc-crewai-mcp-integration" icon="fa-regular fa-users">
    Integrate You.com's remote MCP server with crewAI agents for real-time web search and content extraction via `MCPServerHTTP` or `MCPServerAdapter`.
  </Card>

  <Card title="ydc-langchain-integration" icon="fa-regular fa-link">
    Integrate LangChain.js and Python agents with You.com's web search, research, and content extraction tools.
  </Card>

  <Card title="teams-anthropic-integration" icon="fa-brands fa-microsoft">
    Add Anthropic's Claude models to Microsoft Teams.ai applications, with optional You.com MCP integration for web search and content extraction.
  </Card>
</CardGroup>

## Prerequisites

Before using any skill, you'll need a You.com API key.

1. Get your key at [you.com/platform](https://you.com/platform)
2. Set the environment variable:

```bash
export api_key="your-api-key-here"
```

## Installation

### Install All Skills

The fastest way to get started—installs all skills at once:

```bash
# Using npm
npx skills add youdotcom-oss/agent-skills

# Using Bun (recommended)
bunx skills add youdotcom-oss/agent-skills
```

### Install Individual Skills

```bash
# Install a single skill
# Find the full list in our GitHub repo
npx skills add youdotcom-oss/agent-skills --skill youdotcom-cli

# Install multiple specific skills
npx skills add youdotcom-oss/agent-skills --skill youdotcom-cli --skill ydc-ai-sdk-integration
```

## Usage

Once installed, your AI coding agent will automatically activate the relevant skill when you describe what you want. For example:

* "Add You.com CLI tools to my bash agent"
* "Integrate Vercel AI SDK with You.com tools"
* "Set up Claude Agent SDK with You.com MCP"
* "Configure OpenAI Agents SDK with You.com MCP"
* "Integrate You.com MCP with my crewAI agents"
* "Set up LangChain agents with You.com tools"
* "Add You.com to my Teams app with Anthropic"

Each skill provides step-by-step instructions, code templates, and validation checklists tailored to the framework.

## Resources

<CardGroup cols={2}>
  <Card title="GitHub Repository" icon="fa-brands fa-github" href="https://github.com/youdotcom-oss/agent-skills">
    Source code and all available skills
  </Card>

  <Card title="API Keys" icon="fa-regular fa-key" href="https://you.com/platform">
    Get your You.com API key
  </Card>
</CardGroup>