Skip to main content
ClaudeWave
Skill1.1k estrellas del repoactualizado 1mo ago

research-add-items

Research Add Items supplements an existing research outline by appending new investigation subjects to an outline.yaml file. Use this skill when you need to expand a research project's scope by adding more topics or items to investigate, either by manually specifying them, leveraging web search suggestions, or combining both approaches. The skill automatically locates the outline file, merges new items while preventing duplicates, and updates the file in place.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/Weizhena/Deep-Research-skills /tmp/research-add-items && cp -r /tmp/research-add-items/skills/research-zh/research-add-items ~/.claude/skills/research-add-items
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Research Add Items - 补充调研对象

## 触发方式
`/research-add-items`

## 执行流程

### Step 1: 自动定位Outline
在当前工作目录查找 `*/outline.yaml` 文件,自动读取。

### Step 2: 并行获取补充来源
同时进行:
- **A. 询问用户**:需要补充哪些items?有具体名称吗?
- **B. 询问是否需要Web Search**:是否启动agent搜索更多items?

### Step 3: 合并更新
- 将新items追加到outline.yaml
- 展示给用户确认
- 避免重复
- 保存更新后的outline

## 输出
更新后的 `{topic}/outline.yaml` 文件(原地修改)