对话内容会在逐条确认前被静默、持久地写入文件
原文依据:5 处技能要求捕获用户最初提示以及对话双方产生的片段,并指示不要为每个片段征求许可。片段还可能包括“抱怨、坦白”等私人内容。虽然用户需要先选择路径,但选择路径并不等于批准之后每一段内容落盘。
敏感、未完成或本不打算保存的内容,以及模型提出但用户尚未认可的文字,可能进入持久文档。由于格式不标注片段来自用户还是模型,之后也可能难以判断内容的来源和认可状态。
该技能的用途确实是把写作片段保存到用户指定的 Markdown 文件,因此写文件本身属于其声明功能,并非隐藏行为。不过,启用后它会从首次提示开始收集对话双方产生的内容,并且明确要求逐片段静默追加、无需逐次许可。若对话中出现用户原本不想保存的坦白、引语或其他敏感内容,它们仍可能被持久化。用户可要求作者提供排除敏感内容、写入前预览或显式确认的选项,并将保存路径限制在专用文件中。
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 个位置
- 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).Fragments are separated by a horizontal rule (`\n---\n`). No headings inside the body. No tags. No order beyond the order they were added.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).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.