Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计通过

research-note-wrap研究笔记包装

Agent Skill

research-note-wrap 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

15

下载量

79
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:research-note-wrap(研究笔记包装)
来源仓库:https://github.com/leonsong09/research-note-wrap
仓库路径:skills/research-note-wrap
安装命令:
npx skills add https://github.com/leonsong09/research-note-wrap --skill research-note-wrap
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/leonsong09/research-note-wrap --skill research-note-wrap

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索的研究类 Agent 工作流。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 建议确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • research-note-wrap 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

research-note-wrap

Overview

Summarize the current session, or today's related sessions for a given topic, into an Obsidian Markdown note that is easy to review later. Prioritize core problems, comparative analysis, and clear conclusions over code detail or process narration.

Core Rules

  • Write in Simplified Chinese by default.
  • Prioritize logical conclusions over coding details.
  • Do not produce a chronological 流水账.
  • Use tables first when comparing multiple problems, hypotheses, conclusions, impacts, or next actions.
  • After the tables, provide a short 关键结论 section.
  • Only include code-level details when they are truly necessary to support the conclusion.
  • If you mention a file, function, method, or code path, explain in Chinese:

- what it does - why it matters - how it supports the conclusion

  • Default to writing the note file after confirmation; do not stop at chat-only output unless the user explicitly asks not to write a file.

Scope Decision

Default scope

If the user says things like:

  • 总结调研
  • 输出结论
  • 总结分析
  • 输出笔记
  • 调研纪要
  • 分析纪要
  • 会话结论

Then summarize the current session only.

Cross-session scope

If the user says things like:

  • 总结今天会话关于 xx 的分析
  • 汇总今天关于 xx 的调研
  • 总结今天相关会话中的 xx 问题

Then collect today's related sessions about the given topic and synthesize them into one note.

If the user explicitly provides another time range, follow that range. Otherwise, 近期 defaults to 当天.

Output Location Decision

Before writing the file:

  1. Check whether the current project's AGENTS.md explicitly defines a default output directory for research / analysis summary notes.
  2. If AGENTS.md already defines it, follow that path directly.
  3. If it does not define a path, ask the user for the output directory the first time.
  4. Once the user gives a path, use it for the current task. Suggest adding it to AGENTS.md if this is a recurring workflow.

Confirmation Workflow

Do not write the file immediately after the first draft. Use this confirmation sequence:

Step 1: Draft the main problems

Extract and compress the discussion into a high-density problem summary. Prefer a table like this:

## 问题对比表
| 问题 | 现象/信号 | 核心判断 | 当前结论 | 影响 |
|---|---|---|---|---|
| 问题 A | ... | ... | ... | ... |

Then ask the user to confirm whether these are the right 主要问题.

Step 2: Draft the conclusions

After the user confirms the problem framing, present the conclusions. Prefer a compact table first, then a short conclusion block:

## 结论对比表
| 主题 | 结论 | 依据 | 风险/边界 |
|---|---|---|---|
| xx | ... | ... | ... |

## 关键结论
1. ...
2. ...
3. ...

Then ask the user to confirm whether these are the right 结论.

Step 3: Write the note file

Only after both confirmations:

  • finalize title
  • finalize file path
  • write the markdown file
  • report the saved path back to the user

Output Structure

Use this structure by default. Keep it concise and dense.

---
title: <标题>
date: <YYYY-MM-DD>
project: <项目名或路径>
tags: [research, summary]
source: <current-session | today-topic-synthesis>
---

# <标题>

## 问题对比表
| 问题 | 现象/信号 | 核心判断 | 当前结论 | 影响 |
|---|---|---|---|---|
| ... | ... | ... | ... | ... |

## 结论对比表
| 主题 | 结论 | 依据 | 风险/边界 |
|---|---|---|---|
| ... | ... | ... | ... |

## 关键结论
1. ...
2. ...
3. ...

## 必要实现位点(仅在真的重要时)
| 位点 | 逻辑/作用 | 为什么关键 |
|---|---|---|
| `path:line` / `symbol` | 它负责什么 | 它如何支撑结论 |

## 未决项 / 后续建议
| 项目 | 说明 |
|---|---|
| ... | ... |

File Naming

Default filename format:

YYYY-MM-DD-<topic>.md

Examples:

  • 2026-03-30-dsa-sidecar-pinned-ref.md
  • 2026-03-30-hqchart-data-contract.md
  • 2026-03-30-session-research.md

If the topic is unclear, use a short neutral fallback such as session-research.

Follow-up Research After Initial Output

If the user says things like:

  • 再调研 xx 输出到文件中去
  • 补充分析 xx 并写入笔记

Then:

  1. Reuse the current note file by default.
  2. Add a new section such as:
## 追加专题:xx
  1. Only create a new file if the user explicitly asks for a separate note.

Writing Guidance

Good

  • Compress repeated discussion into one row or one conclusion.
  • Prefer contrast and synthesis.
  • Keep wording human-readable and Chinese-first.
  • Explain technical references in plain Chinese.

Avoid

  • Long process transcripts
  • Tool chatter
  • Repeating the same conclusion in multiple bullets
  • Dumping file paths or function names without explanation
  • Overusing multi-level bullet lists when a table is clearer

Final Checklist

Before writing the file, verify:

  • The scope is correct: current session or today's related sessions.
  • The output path follows AGENTS.md, or has been explicitly confirmed with the user.
  • The user has confirmed both:

- 主要问题 - 核心结论

  • Tables carry the dense comparison content.
  • 关键结论 appears after the tables.
  • Code-level references, if any, are explained in Chinese.
  • The filename matches YYYY-MM-DD-topic.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.85%
按下载量换算27

Claude

30.17%
按下载量换算24

Cursor

19.68%
按下载量换算16

Gemini CLI

9.42%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills