Skip to main content

What is a Skill?

Skills are knowledge for AI agents, not tools. They are markdown-based instruction files that agents load automatically when a task matches the skill’s purpose. The agent then follows the skill’s guidance to make better API calls — choosing the right parameters, writing effective queries, and avoiding common mistakes. Skills work across agent environments: Claude Code, Cursor, Windsurf, Cline, GitHub Copilot, and any platform that supports instruction files. Skills are installed with the Skill Comand Line Interface (CLI). Read more here.

Install the Linkup Skill

Teach your agent how to use Linkup with our official Skill. Redirects to source code repository with SKILL.md file.

The Linkup Skill

The linkup-search skill teaches agents how to use the Linkup API effectively. Instead of relying on generic tool descriptions, agents get structured guidance on:
  • Query construction — A 3-step reasoning framework: what inputs do I have? Where does the data live? Do I need to chain steps?
  • Depth selection — When to use standard vs deep, with decision rules and worked examples
  • Output types — Choosing between searchResults, sourcedAnswer, and structured based on the use case
  • Effective prompting — Keyword-style for simple lookups, instruction-style for complex extraction
  • Scraping and fetch — When to scrape within search vs use the /fetch endpoint directly
  • Advanced patterns — LinkedIn extraction, parallel multi-query coverage, sequential search chains
  • MCP setup — Configuration for Claude Code, VS Code, Cursor, and Claude Desktop

Installation

npx skills add LinkupPlatform/skills
This installs the skill into your project. Agents will automatically reference it when handling web search, content extraction, or research tasks via Linkup.

Supported environments

EnvironmentHow it works
Claude CodeSkill is loaded automatically when relevant
CursorLoaded via .cursor/rules/
WindsurfLoaded via .windsurfrules
Cline / GitHub CopilotLoaded from project-level instruction files

How It Works

When an agent encounters a task that involves web search, company research, or content extraction:
  1. The agent detects it has access to Linkup tools (via MCP or SDK)
  2. The skill’s instructions are loaded into the agent’s context
  3. The agent follows the skill’s reasoning framework to decide depth, query style, and output type
  4. The result: more accurate queries, fewer wasted API calls, better results
No manual invocation needed — skills activate when relevant.

Example

Without the skill, an agent might write:
query: "Tell me about Datadog"
depth: "standard"
With the skill, the agent reasons through the framework and writes:
query: "Find Datadog's pricing page. Scrape it. Extract plan names, per-host prices, and included features for each tier."
depth: "deep"
The skill teaches agents to be specific about what to retrieve, where to look, and how to chain steps — the same way an experienced developer would use the API.

Resources

Facing issues? Reach out to our engineering team at [email protected] or via our Discord or book a 15 minutes call with a member of our technical team.