원클릭으로
save
Save the current conversation to GitMemo. Use when the user says "save", "保存会话", "save conversation", or "/save".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Save the current conversation to GitMemo. Use when the user says "save", "保存会话", "save conversation", or "/save".
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | save |
| description | Save the current conversation to GitMemo. Use when the user says "save", "保存会话", "save conversation", or "/save". |
Save the current conversation as a Markdown file in the GitMemo repository.
~/.gitmemo/conversations/{YYYY-MM}/{MM-DD}-{title_summary}.md where title_summary is a short Chinese description (max 20 chars) of the conversation topic.---
title: {conversation title}
date: {YYYY-MM-DDTHH:MM:SS±HH:MM}
model: {model name}
messages: {message count}
---
# {conversation title}
> **提问**:{user's core question, preferably verbatim}
---
## 回答摘要
{Structured summary of the answer: what was decided, why, what changed, risks/limits, and next steps if relevant.}
## 关键结论
- {key takeaway 1}
- {key takeaway 2}
## 涉及文件
- `{path/to/file1}`
- `{path/to/file2}`
## 原始对话
### User (HH:MM:SS)
{user message}
### Assistant (HH:MM:SS)
{assistant response}
涉及文件 can be omitted if no files were discussed or modified.## 追加问答:{short title} to the existing file instead of creating a new file.Time: date must include an explicit timezone offset (ISO 8601), e.g. 2026-04-01T18:30:00+08:00. Before writing, run date +"%Y-%m-%dT%H:%M:%S%z" on the user’s machine and normalize %z to ±HH:MM. Do not use bare YYYY-MM-DD HH:MM:SS (ambiguous; often wrong vs local clock by a fixed number of hours). Match heading HH:MM:SS to the same local time intent as frontmatter date.
Include ALL messages from the current conversation in the 原始对话 section when they add value.
Preserve code blocks with original language tags.
Filter sensitive info (API keys, passwords) and replace them with ***.
Match the user's language unless they explicitly asked for another language.
New file: Use the Write tool to create the file.
Existing file (append mode):
First use the Read tool to read the existing file content.
Then:
回答摘要 / 关键结论 / 涉及文件 if the new turn changed the conclusion.messages count in the frontmatter to reflect the new total.Do NOT tell the user "I have saved the conversation" and save silently.