Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ coverage/
!.env.example
*.log
.cline/

__pycache__/
*.pyc
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Each plugin lives in `plugins/<slug>`. The directory name is the install keyword
| `typescript-lsp` | TypeScript language service `goto_definition` support. |
| `weather-metrics` | Demo weather tool plus runtime metrics hooks. |
| `web-search` | Exa-backed web search as a Cline tool. |
| `youdotcom` | You.com skills for web search, research, content extraction, MCP, and agent integrations. |

## Install From Source

Expand Down
21 changes: 21 additions & 0 deletions plugins/youdotcom/LICENSE.youdotcom-agent-skills
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 You.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
22 changes: 22 additions & 0 deletions plugins/youdotcom/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# You.com

You.com adds Cline skills for web search, research with citations, content extraction, and agent framework integrations.

## Cline Primitives

- Skills: `youdotcom-api` helps integrate You.com Research, Search, and Contents APIs using direct HTTP calls in any language.
- Skills: `youdotcom-cli` provides curl and jq workflows for search, research, and content extraction.
- Skills: `ydc-ai-sdk-integration`, `ydc-langchain-integration`, `ydc-crewai-mcp-integration`, `ydc-claude-agent-sdk-integration`, and `ydc-openai-agent-sdk-integration` guide You.com tool or MCP integration into common agent frameworks.
- Skills: `teams-anthropic-integration` helps add Anthropic Claude models to Microsoft Teams.ai apps, with optional You.com MCP search/content tools.

## Requirements

- `YDC_API_KEY` is required for Research, Contents, higher rate limits, and most MCP integrations. You.com Search has a limited free tier without an API key.
- Framework-specific skills may also require Anthropic, OpenAI, Microsoft Teams, crewAI, LangChain, Vercel AI SDK, Python, Node.js, Bun, curl, or jq depending on the requested integration path.
- Network access is required for live You.com API/MCP calls and package installation.

## Trust Boundaries

The plugin does not register an MCP server, install dependencies, call You.com, or write MCP settings at install time. It contributes bundled skills only. You.com API and MCP calls are user-requested runtime actions.

Bundled skill material is MIT licensed by You.com. See `LICENSE.youdotcom-agent-skills`.
10 changes: 10 additions & 0 deletions plugins/youdotcom/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import type { AgentPlugin } from "@cline/sdk"

const plugin: AgentPlugin = {
name: "youdotcom",
manifest: {
capabilities: ["skills"],
},
}

export default plugin
30 changes: 30 additions & 0 deletions plugins/youdotcom/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "youdotcom",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "You.com skills for web search, research, content extraction, MCP, and agent framework integrations.",
"exports": {
".": "./index.ts"
},
"cline": {
"plugins": [
{
"paths": [
"./index.ts"
],
"capabilities": [
"skills"
]
}
]
},
"peerDependencies": {
"@cline/sdk": "*"
},
"peerDependenciesMeta": {
"@cline/sdk": {
"optional": true
}
}
}
Loading