You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"shortDescription": "Search the web, read pages, and track news",
25
+
"longDescription": "Research the live web across multiple search and news sources, extract readable content from URLs, discover site links, and explore trending topics.",
Copy file name to clipboardExpand all lines: README.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,16 +165,25 @@ s1 update
165
165
s1 update --force # reinstall even if already on the latest version
166
166
```
167
167
168
-
## Claude Code Skill
168
+
## Agent skill and plugins
169
169
170
-
This repo also includes a [Claude Code](https://claude.com/claude-code) skill that lets Claude automatically use `s1` commands when you ask it to search the web, read URLs, check news, etc.
170
+
This repo includes an Agent Skill plus plugin manifests for Claude Code and
171
+
ChatGPT/Codex. The plugins connect to Search1API's hosted MCP server and keep
172
+
the `s1` CLI as a fallback, so the same research workflow works across hosts.
171
173
172
-
Install the skill:
174
+
Install the standalone skill:
173
175
174
176
```bash
175
177
npx skills add superagents-lab/search1api-cli
176
178
```
177
179
180
+
Developers can validate or test the plugin bundle from a local clone:
Copy file name to clipboardExpand all lines: skills/search1api/SKILL.md
+44-22Lines changed: 44 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,24 @@
1
1
---
2
2
name: search1api
3
3
description: >
4
-
Powerful web search, content crawling, news, sitemap, and trending topics via the search1api CLI (s1). This is far more capable than basic fetch or search tools — it supports 13+ search engines (Google, Bing, DuckDuckGo, Reddit, GitHub, YouTube, arXiv, Baidu, X, etc.), adapts to many websites for clean content extraction, and provides news aggregation across multiple sources. Use this skill whenever the user wants to search the web, look something up, research a topic, read or summarize a URL, check news, explore a site's links, see trending topics, or check API balance. Trigger on phrases like "search for", "look up", "find out about", "what's happening with", "any news on", "what does this link say", "read this page", "summarize this URL", "trending on GitHub", or when the user shares a bare URL. Even if the user doesn't say "search" explicitly, use this skill when they clearly need web information.
4
+
Live web search, page retrieval, news, sitemap discovery, and trending topics through Search1API. Use this skill whenever the user wants to search the web, look something up, research a topic, read or summarize a URL, check current news, explore a site's links, see trending topics, or check API balance. Trigger on phrases like "search for", "look up", "find out about", "what's happening with", "any news on", "what does this link say", "read this page", "summarize this URL", "trending on GitHub", or when the user shares a bare URL. Prefer the bundled Search1API MCP tools when available and fall back to the search1api CLI (`s1`).
To update an existing install, the user can run `s1 update`. Only suggest this if a command fails in a way that looks version-related — don't run it as part of a normal search task.
33
+
Do not install software or switch transports when a working Search1API tool is
34
+
already available. To update an existing CLI install, the user can run
35
+
`s1 update`. Only suggest this when a command fails in a version-related way.
27
36
28
-
Authentication is also required. Prefer browser login:
37
+
The remote MCP server handles authentication through the host's connection
38
+
flow. If the host reports that authentication is required, ask the user to
0 commit comments