npx skills add smithery/neversight --skill linkup
trancong12102/pi-skills · Archived
linkup
Real-time web search and content retrieval via the Linkup API. Use when up-to-date information from the web, source-backed answers, or direct page content retrieval is required.
Installation
npx skills add trancong12102/pi-skills --skill linkup
Stronger alternatives
This repository is archived — consider an actively maintained alternative.
Retrieve and explore DeepWiki-generated documentation for public GitHub repositories. Use when …
5 installsGuidance for writing git commit messages that follow the Conventional Commits 1.0.0 specificati…
4 installsRetrieve up-to-date documentation for software libraries, frameworks, and components via the Co…
4 installsRemote-control tmux sessions for interactive CLIs (python, gdb, etc.) and long-running/backgrou…
3 installsSimilar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Also in this package
Other skills from trancong12102/pi-skills.
npx skills add trancong12102/pi-skills
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md3,020 B -
docs
SUMMARY.md191 B
History
- First seen on skills.sh
- First recorded snapshot · 6 installs
SKILL.md
Linkup
Overview
The Linkup skill uses the Linkup API via curl to perform web searches and fetch webpage content directly. Preferred over the Linkup MCP server for real-time information and source-backed answers.
Workflow
Step 1: Run a Web Search
curl -s -X POST \
-H "Authorization: Bearer $LINKUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "QUERY",
"depth": "standard",
"outputType": "sourcedAnswer"
}' \
"https://api.linkup.so/v1/search"
Parameters:
q(required): Natural language search query.depth(optional): Search depth (standardordeep).outputType(optional): Response format (e.g.,sourcedAnswerfor an answer +
sources, or searchResults for raw results).
includeDomains(optional): Array of domains/URLs to include.excludeDomains(optional): Array of domains/URLs to exclude.includeImages(optional): Include image results when set totrue.maxResults(optional): Limit the number of returned results.
Step 2: Fetch Page Content (Optional)
curl -s -X POST \
-H "Authorization: Bearer $LINKUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/article",
"renderJs": false
}' \
"https://api.linkup.so/v1/fetch"
Parameters:
url(required): The webpage to fetch and extract content from.renderJs(optional): Whether to render JavaScript content (defaultfalse).
Examples
Source-backed answer with citations
curl -s -X POST \
-H "Authorization: Bearer $LINKUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "What changed in the latest Node.js release?",
"depth": "standard",
"outputType": "sourcedAnswer",
"maxResults": 5
}' \
"https://api.linkup.so/v1/search"
Raw search results for deeper research
curl -s -X POST \
-H "Authorization: Bearer $LINKUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"q": "EU AI Act compliance checklist",
"depth": "deep",
"outputType": "searchResults",
"includeDomains": ["ec.europa.eu", "eur-lex.europa.eu"]
}' \
"https://api.linkup.so/v1/search"
Fetch the content of a specific URL
curl -s -X POST \
-H "Authorization: Bearer $LINKUP_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://example.com/docs",
"renderJs": true
}' \
"https://api.linkup.so/v1/fetch"
Tips
- Use
outputType: sourcedAnswerfor concise answers with citations. - Use
outputType: searchResultsfor full result lists or manual synthesis. - Prefer
depth: standardfor quick lookups anddepth: deepfor multi-source research. - Use
includeDomains/excludeDomainsto control where sources come from.