internet-reach

internet-reach is a skill for Claude Code, Codex from Mousaee/agent-search. It costs 71 tokens per session (932 once invoked), scanned A, original, MIT.

A skill for accessing information from internet platforms such as X, Reddit, LinkedIn, and Xiaohongshu. It provides platform-specific ways to search or read public content.

In plain words
What is it for?
Use it to search X or Reddit, read public LinkedIn pages, check platform availability, or access supported Chinese social platforms.
Why use it?
It gives the agent a defined route for checking online posts, profiles, company pages, and other platform content.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is zsh scripts/doctor.sh.

Good fit Use it to search X or Reddit, read public LinkedIn pages, check platform availability, or access supported Chinese social platforms.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/Mousaee/agent-search
agentmods
npx agentmods add skills/mousaee/agent-search/internet-reach

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for internet-reach

README.md
[![agentmods](https://agentmods.dev/badge/skills/mousaee/agent-search/internet-reach.svg)](https://agentmods.dev/skills/mousaee/agent-search/internet-reach)
Your own site
<a href="https://agentmods.dev/skills/mousaee/agent-search/internet-reach"><img src="https://agentmods.dev/badge/skills/mousaee/agent-search/internet-reach.svg" alt="Measured on agentmods" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 932 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.00932
Opus 5 $0.00036 $0.00466
Sonnet 5 $0.00014 $0.00186
Haiku 4.5 $0.00007 $0.00093

Measured 7d ago against content hash a498fb2caefd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

internet-reach scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://r.jina.ai/https://x.com/user/status/123"
skills/internet-reach/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Internet Reach — 互联网平台访问

健康检测

zsh scripts/doctor.sh

平台命令速查

Twitter/X(bird CLI)

# 搜索推文
bird search "query" --json -n 10

# 读单条推文
bird read https://x.com/user/status/123 --json

# 读用户时间线
bird timeline @username --json -n 20

# 备用:Jina Reader(无需 Cookie)
curl -s "https://r.jina.ai/https://x.com/user/status/123"

Cookie 配置见 docs/cookie-setup.md

Reddit(零依赖)

# 读子版块热帖
curl -s "https://www.reddit.com/r/python/hot.json?limit=10" \
  -H "User-Agent: agent-search/1.0"

# 读帖子+评论
curl -s "https://www.reddit.com/r/python/comments/POST_ID.json" \
  -H "User-Agent: agent-search/1.0"

# 搜索
curl -s "https://www.reddit.com/search.json?q=query&limit=10" \
  -H "User-Agent: agent-search/1.0"

本地电脑直接访问,服务器可能需要代理。

LinkedIn(Jina Reader,零配置)

# 读公开 Profile
curl -s "https://r.jina.ai/https://linkedin.com/in/username"

# 读公司页面
curl -s "https://r.jina.ai/https://linkedin.com/company/xxx"

Boss直聘(Jina Reader,零配置)

curl -s "https://r.jina.ai/https://www.zhipin.com/job_detail/xxx"

小红书(需要 Docker + MCP,按需启用)

# 启用
docker run -d --name xiaohongshu-mcp -p 18060:18060 xpzouying/xiaohongshu-mcp
mcporter config add xiaohongshu http://localhost:18060/mcp

# 使用
mcporter call 'xiaohongshu.search_feeds(keyword: "query")'
mcporter call 'xiaohongshu.get_feed_detail(feed_id: "xxx", xsec_token: "yyy")'

抖音(需要 MCP,按需启用)

mcporter call 'douyin.parse_douyin_video_info(share_link: "https://v.douyin.com/xxx/")'

详见 https://github.com/yzfly/douyin-mcp-server

YouTube / B站(yt-dlp)

# 视频信息
yt-dlp --dump-json "URL"

# 字幕提取
yt-dlp --write-sub --write-auto-sub --sub-lang "zh-Hans,zh,en" --skip-download -o "/tmp/%(id)s" "URL"

# 搜索
yt-dlp --dump-json "ytsearch5:query"

GitHub(gh CLI)

gh search repos "query" --sort stars --limit 10
gh repo view owner/repo
gh search code "query" --language python
gh issue list -R owner/repo --state open

RSS(feedparser)

python3 -c "
import feedparser
d = feedparser.parse('https://example.com/feed')
for e in d.entries[:5]:
    print(f'{e.title} — {e.link}')
"

Read the full file on GitHub · 133 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 7d ago First seen · 133 lines · 71 tokens per session scan A a498fb2caefd

Subscribe to this mod's changes

internet-reach is a skill published in the GitHub repository Mousaee/agent-search (19 stars, last pushed 6mo ago), licensed MIT. It adds 71 tokens to every session and 932 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

opencli-sitemap-author

Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.

jackwener/OpenCLI · 67 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

interactive-login

How to complete browser/interactive logins (aws / gh / glab / gcloud). The platform backgrounds the login poller so it survives the human's browser round-trip — and when that does NOT work.

yc-software/qm · 46 tokens

pinchtab-mcp

Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.

pinchtab/pinchtab · 52 tokens

azure-messaging-webpubsub-java

Build real-time web applications with Azure Web PubSub SDK for Java. Use when implementing WebSocket-based messaging, live updates, chat applications, or server-to-client push notifications.

microsoft/skills · 43 tokens

google-safe-browsing

Prevent and fix Google Safe Browsing "Dangerous site" flags. Use when launching a public web app, buying/picking a domain, building a login or signup page, or when any site shows a red "Dangerous site" / "Deceptive site" warning in Chrome, Brave, Safari, Firefox, or Edge. Triggers on "dangerous site", "deceptive…

davidondrej/skills · 105 tokens