소스 정보
- 저장소
- ZHangZHengEric/Sage
- 최근 소스 활동
- 2026년 5월 26일 09:56
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 1,203
- 포크
- 98
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ZHangZHengEric/Sage --skill deep-research-agent명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.
Generate Excalidraw diagrams from natural language descriptions. Use when asked to "create a diagram", "make a flowchart", "visualize a process", "draw a system architecture", "create a mind map", or "generate an Excalidraw file". Supports flowcharts, relationship diagrams, mind maps, and system architecture diagrams. Outputs .excalidraw JSON files that can be opened directly in Excalidraw.
智能对话分析与记忆整理助手。获取并压缩指定 Agent 的对话记录,用于在用户授权/触发条件满足时,将信息分类写入 USER.md / AGENT.md / MEMORY.md(含索引与 memory/ 日志)/ IDENTITY.md / SOUL.md。
SKILL.md 표시 중
SOC 직업 분류 기준
| name | deep-research-agent |
| description | 深度研究技能,用于系统性调研与分析。适用于研究、调研、竞品分析、市场分析或结构化信息收集等需求。 |
以增量方式开展系统化研究并输出。
1. 大纲 → 2. 初始化 → 3. 研究 → 4. 更新 → 5. JSON → 6. HTML
研究前先向用户展示大纲:
获得用户确认后再继续。
运行初始化脚本,使用绝对路径创建工作目录:
python skills/deep-research-agent/scripts/init_research.py <absolute_template_path> <absolute_project_path>
用法: python init_research.py <absolute_template_path> <absolute_project_path>
模板(研究方向模板):
不同研究类型使用对应的 Markdown 模板:
模板统一放在 deep-research-agent/templates 目录下,初始化时只需选择对应模板文件路径。
创建内容:
report.md - 复制选定模板(位于项目目录)materials/ - 原始资料与笔记目录(包含 raw/ 与 notes/)重要: 不要用 mkdir 或 Write tool 手动创建目录,必须通过初始化脚本生成结构。
搜索并立即保存:
每条有价值的信息都要 先保存到 materials 目录:
file_write(
file_path="{project_path}/materials/raw/source_001.md",
content="""## 来源: [标题]
- URL: [链接]
- 时间: [日期]
### 关键信息
- [要点1]
- [要点2]
### 数据
- [数据点]
### 引用原文
> [原文摘录]
"""
)
研究策略:
materials/当某一节内容充足时,立即更新报告:
file_update(
file_path="{project_path}/report.md",
operations=[{
"update_mode": "search_replace",
"search_pattern": "## 1. 研究背景与目标\n\n{研究背景说明}",
"replacement": """## 1. 研究背景与目标
### 1.1 研究背景
[基于materials/中的资料,撰写详细背景]
[包含数据支撑、引用来源]
### 1.2 研究目标
[具体目标]
### 1.3 研究范围
[范围界定]"""
}]
)
更新规则:
[在此填写...]、{占位符} 等)在生成最终输出前,必须执行以下检查:
report.md 中是否还有未填充的模板占位符(如 {研究背景说明}、{在此填写...}、[请填写...] 等)检查通过后,生成包含结构化数据的 research_data.json:
{
"topic": "...",
"created_at": "...",
"outline": {...},
"materials_count": 15,
"sections_completed": ["1.1", "1.2", "3.1"],
"key_findings": [...],
"sources": [...]
}
{user_specified_project_path}/
├── report.md # 主报告(增量更新)
├── report.html # 阅读友好的 HTML 版本
├── research_data.json # 结构化数据
└── materials/
├── raw/ # 原始来源
├── notes/ # 按章节整理的笔记
└── ...
materials/research_data.json 与报告保持一致scripts/md_to_html.py 生成。
python skills/deep-research-agent/scripts/md_to_html.py /absolute/path/report.md--out 指定输出路径。模板位置:deep-research-agent/templates。无需在此列出具体模板名称。