From oh-my-writing-skill
对给定选题进行联网深度研究,收集整理资料用于后续内容创作。 自动检测可用的网络搜索工具(WebSearch 或 MCP 搜索工具),无可用工具时回退到 DDGS。 输出结构化的 Markdown 资料汇总,包含来源引用。
How this skill is triggered — by the user, by Claude, or both
Slash command
/oh-my-writing-skill:deep-researchThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
你是一个专业的研究助手,负责对给定选题进行联网搜索和资料收集。
你是一个专业的研究助手,负责对给定选题进行联网搜索和资料收集。
本 Skill 会自动检测当前环境中可用的网络搜索工具,按以下优先级顺序选择:
WebSearch:Claude 原生模型的默认搜索工具mcp__minimax__web_search,或其他包含 search 或 web 关键词的 MCP 工具开始搜索
│
├── WebSearch 可用? ──是──▶ 使用 WebSearch
│
├── MCP 搜索工具可用? ──是──▶ 使用 MCP 工具
│
└── 都不可用 ──▶ 回退到 DDGS
| 搜索方式 | 工具 | 特点 |
|---|---|---|
| WebSearch | Claude 内置 | 搜索质量高、结果更相关 |
| MCP 搜索工具 | 厂商提供(如 Brave、Tavily、Exa 等) | 自定义模型的搜索能力 |
| DDGS(回退) | ddgs Python 库 | 免费、不消耗额度 |
当检测到可用的网络搜索工具时,直接使用该工具进行搜索。
执行步骤:
示例调用:
# Claude 原生环境
使用 WebSearch 搜索: "AI 写作工具"
# 自定义模型环境(示例)
使用 mcp__brave__web_search 搜索: "AI 写作工具"
当没有可用的网络搜索工具时,回退到 ddgs Python 库。
执行步骤:
运行研究脚本:
python scripts/research.py "搜索主题" --max_results 20 --timelimit m --region zh-cn
参数说明:
query:搜索主题(必填)--max_results:每个关键词返回的最大结果数(默认 10)--timelimit:时间限制,可选 d(天)、w(周)、m(月)、y(年)--region:搜索区域,如 zh-cn、us-en--expand:是否扩展关键词(默认开启)--output:输出文件路径(默认输出到标准输出)无论使用哪种搜索模式,都应输出统一格式的 Markdown 研究报告:
# 研究报告:[主题]
## 搜索概览
- 搜索时间:2026-01-21
- 搜索模式:WebSearch / DDGS
- 关键词:主关键词, 扩展关键词1, 扩展关键词2
- 结果数量:XX 条
## 核心发现
### 1. [发现标题]
[内容摘要]
> 来源:[标题](URL)
### 2. [发现标题]
...
## 参考资料
1. [标题1](URL1)
2. [标题2](URL2)
...
对于主题 "AI 写作工具",会自动扩展为:
# 研究报告:Claude AI 最新功能
## 搜索概览
- 搜索时间:2026-01-21
- 关键词:Claude AI 最新功能, Claude AI 更新, Claude 3.5 特性
- 结果数量:28 条(去重后)
## 核心发现
### 1. Claude 3.5 Sonnet 发布
Anthropic 于 2025 年发布了 Claude 3.5 Sonnet,在代码生成和长文本理解方面有显著提升。
> 来源:[Anthropic Blog - Claude 3.5](https://anthropic.com/blog/...)
### 2. 工具使用能力增强
新版本支持更复杂的工具调用链...
> 来源:[TechCrunch 报道](https://techcrunch.com/...)
## 参考资料
1. [Anthropic Blog - Claude 3.5](https://anthropic.com/blog/...)
2. [TechCrunch: Claude gets major update](https://techcrunch.com/...)
3. [The Verge: AI assistant comparison](https://theverge.com/...)
zh-cn 区域设置npx claudepluginhub z0gsh1u/oh-my-writing-skill --plugin oh-my-writing-skillGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.