用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Kxiandaoyan/Memoh-v2 --skill agent-reach命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.
Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-reach |
| description | Give your AI Agent eyes to see the entire internet. Search + read 10+ platforms with one install. |
| install | pip install git+https://github.com/Panniantong/agent-reach.git |
安装后你就能搜索和阅读全网内容。
pip install git+https://github.com/Panniantong/agent-reach.git
agent-reach read <URL> — 读取任意网页、GitHub、B站、YouTube、RSSagent-reach search-github "query" — 搜索 GitHub 仓库agent-reach doctor — 查看所有平台状态运行 agent-reach configure 进行交互式配置,或者读取以下指南:
| 功能 | 指南文件 |
|---|---|
| 全网搜索 + Reddit搜索 + Twitter搜索 | agent_reach/guides/setup-exa.md |
| Reddit 完整阅读 | agent_reach/guides/setup-reddit.md |
| Twitter 高级(时间线/线程) | agent_reach/guides/setup-twitter.md |
| 小红书 | agent_reach/guides/setup-xiaohongshu.md |
| 微信公众号 | agent_reach/guides/setup-wechat.md |
| 视频语音转文字 | agent_reach/guides/setup-groq.md |
每个指南里有详细的步骤说明,你(Agent)可以照着做,只有需要人类操作的部分(登录、复制 key)才需要问用户。
如果你的 Agent 平台支持 MCP:
pip install agent-reach[mcp]
python -m agent_reach.integrations.mcp_server
提供 8 个工具:read_url, read_batch, detect_platform, search, search_reddit, search_github, search_twitter, get_status
from agent_reach import AgentReach
import asyncio
eyes = AgentReach()
# 读取
result = asyncio.run(eyes.read("https://github.com/openai/gpt-4"))
# 搜索
results = asyncio.run(eyes.search("AI agent framework"))
# 健康检查
print(eyes.doctor_report())