跳转到正文
报告库
用途分类 / 内容写作

Writing Fragments Skill 安全审计

作者说它能做什么(原文)

Writing, explore: mine raw fragments, no structure yet.

第三方安全检查结论

发现安全风险

已检查文件
2
发现的风险
1
会不会运行危险命令?检查是否下载程序后直接运行、让他人远程控制电脑,或藏起要运行的命令。未发现风险
会不会泄露文件和密钥?检查是否发送含密码或密钥的文件,以及代码里是否直接写了密钥。未发现风险
会不会删除文件或一直在后台运行?检查是否大范围删除文件、改写磁盘,或设置自动启动。发现 1 项风险
中风险

对话内容会在逐条确认前被静默、持久地写入文件

原文依据:5 处
发现了什么

技能要求捕获用户最初提示以及对话双方产生的片段,并指示不要为每个片段征求许可。片段还可能包括“抱怨、坦白”等私人内容。虽然用户需要先选择路径,但选择路径并不等于批准之后每一段内容落盘。

为什么需要注意

敏感、未完成或本不打算保存的内容,以及模型提出但用户尚未认可的文字,可能进入持久文档。由于格式不标注片段来自用户还是模型,之后也可能难以判断内容的来源和认可状态。

该技能的用途确实是把写作片段保存到用户指定的 Markdown 文件,因此写文件本身属于其声明功能,并非隐藏行为。不过,启用后它会从首次提示开始收集对话双方产生的内容,并且明确要求逐片段静默追加、无需逐次许可。若对话中出现用户原本不想保存的坦白、引语或其他敏感内容,它们仍可能被持久化。用户可要求作者提供排除敏感内容、写入前预览或显式确认的选项,并将保存路径限制在专用文件中。

SKILL.md:11来自说明文档打开原文件
As fragments emerge from either side of the conversation, append them to a single markdown file.If the user did not pass a path, ask once where to save the document, then remember it for the rest of the session.Capture fragments from the very first thing the user says, including the initial prompt.
查看另外 4 个位置
SKILL.md:35来自说明文档打开原文件
- A list of related observations that hang together by feel.- A complaint, a confession, a punchline.- A **leading word**: a compact metaphor or coinage the whole piece can hang on (one term that names the idea, the way _tracer bullets_ or _fog of war_ names a whole pattern).
SKILL.md:69来自说明文档打开原文件
Fragments are separated by a horizontal rule (`\n---\n`). No headings inside the body. No tags. No order beyond the order they were added.
SKILL.md:73来自说明文档打开原文件
Append silently. Don't ask permission for each fragment. Mention what you added in passing ("adding that"), but don't interrupt the conversation with save dialogs.Before every write: re-read the file from disk. The user may have edited, reordered, or deleted fragments between turns, so preserve their changes. Never overwrite the file; only append (or, if the user asks, edit a specific fragment in place).
SKILL.md:13来自说明文档打开原文件
If the user did not pass a path, ask once where to save the document, then remember it for the rest of the session.Capture fragments from the very first thing the user says, including the initial prompt.
会不会绕过安全保护?检查是否跳过网站安全验证、开放过多文件权限,或取消操作前的确认。未发现风险
会不会误导 AI 或隐藏内容?检查工作说明是否要求 AI 忽略你的指令、干扰检查结果,或夹带看不见的文字。未发现风险
会不会偷偷改推广链接或收款方?检查是否强制替换推广链接或收款对象,同时要求隐瞒更改。未发现风险

Skill 逻辑拆解

3 个说明模块

该技能用于进行不设提纲的写作访谈,并把对话中产生的片段持续追加到一个 Markdown 文件;它明确排除文章结构和大纲工作。

查看原文
SKILL.md:9来自说明文档打开原文件
This is pure **explore**: widen the space of what could be written without committing to structure. Committing is _exploit_, a separate skill's job. Run a grilling session that produces fragments, interviewing the user relentlessly about whatever they want to write about. Imposing phases, outlines, or article structure is out of scope here.As fragments emerge from either side of the conversation, append them to a single markdown file.

如果用户没有提供保存路径,技能会询问一次;首次创建文档时只写一个工作标题,后续片段使用水平线分隔。

查看原文
SKILL.md:13来自说明文档打开原文件
If the user did not pass a path, ask once where to save the document, then remember it for the rest of the session.Capture fragments from the very first thing the user says, including the initial prompt.On first write, put a single H1 at the top with a working title (it can change later) and nothing else: no metadata, no TOC, no date.
SKILL.md:69来自说明文档打开原文件
Fragments are separated by a horizontal rule (`\n---\n`). No headings inside the body. No tags. No order beyond the order they were added.

每次写入前,技能要求重新读取文件并保留用户在磁盘上的修改;通常只能追加,只有用户明确要求时才就地编辑特定片段。

查看原文
SKILL.md:75来自说明文档打开原文件
Before every write: re-read the file from disk. The user may have edited, reordered, or deleted fragments between turns, so preserve their changes. Never overwrite the file; only append (or, if the user asks, edit a specific fragment in place).The user can say "cut the last one", "rewrite that one sharper", "merge those two" at any time. Treat those as first-class instructions.

配置同时禁止模型隐式调用该技能,因此其文件写入流程应只在用户显式选择该技能后启动。

查看原文
SKILL.md:2来自说明文档打开原文件
---name: writing-fragmentsdescription: "Writing, explore: mine raw fragments, no structure yet."disable-model-invocation: true---
agents/openai.yaml:4来自说明文档打开原文件
  short_description: "Mine raw writing fragments"policy:  allow_implicit_invocation: false
从这里开始 · 工作说明SKILL.md
writing-fragments
连线表示工作说明包含的模块,不是实际运行顺序。点击模块可查看原文。
文件与检查记录2 个文件

检查范围与遗漏

逐文件查看涉及的内容

下方列出本次涉及的原文范围;纳入检查不代表已查清所有问题。

  • SKILL.md已纳入全文
  • agents/openai.yaml已纳入全文

这份报告只针对上方版本。我们看了拿到的代码和说明文件,没有实际运行 Skill,也没有检查它另外安装的软件包。因此,这不是“保证安全”的承诺;换了版本或使用环境,结果也可能不同。

  • SKILL.md工作说明
  • agents/openai.yaml配套文件

代码和说明中提到的操作

读取文件
SKILL.md:75来自说明文档打开原文件
Before every write: re-read the file from disk. The user may have edited, reordered, or deleted fragments between turns, so preserve their changes. Never overwrite the file; only append (or, if the user asks, edit a specific fragment in place).
读取了多少行
86
文件校验值(用于核对版本)
3028f161622908c9302949bd68dd4a2ad28e7497b36dd6e2f94e988dec0ea0f3