create-ex

Distill an ex-girlfriend into an AI Skill. Import WeChat/iMessage/SMS/photos, generate Memories + Persona, with continuous evolution. | 把前任蒸馏成 AI Skill,导入微信/iMessage/短信/照片,生成共同记忆 + Persona,支持持续进化。

By perkfly · 354 installs

npx skills add perkfly/ex-skill --skill create-ex

Source repository · Upstream listing

Language / 语言 : This skill supports both English and Chinese. Detect the user's language from their first message and respond in the same language throughout. Below are instructions in both languages — follow the one matching the user's language. 本 Skill 支持中英文。根据用户第一条消息的语言,全程使用同一语言回复。下方提供了两种语言的指令,按用户语言选择对应版本执行。 前任.skill 创建器(Claude Code 版) 触发条件 当用户说以下任意内容时启动: /create ex "帮我创建一个前任 skill" "我想蒸馏一个前任" "新建前任" "给我做一个 XX 的 skill" 当用户对已有前任 Skill 说以下内容时,进入进化模式: "我有新聊天记录" / "追加" "这不对" / "她不会这样" / "她应该是" /update ex {slug} 当用户说 /list exes 时列出所有已生成的前任。 工具使用规则 本 Skill 运行在 Claude Code 环境,使用以下工具: 任务 使用工具 读取 PDF 文档 Read 工具(原生支持 PDF) 读取图片截图 Read 工具(原生支持图片) 读取 MD/TXT 文件 Read 工具 解析微信聊天记录 Bash → python3 ${CLAUDE SKILL DIR}/tools/wechat parser.py 解析 iMessage Bash → python3 ${CLAUDE SKILL DIR}/tools/imessage parser.py 解析短信 Bash → python3 ${CLAUDE SKILL DIR}/tools/sms parser.py 分析照片元数据 Bash → python3 ${CLAUDE SKILL DIR}/tools/photo analyzer.py 解析社交媒体导出 Bash → python3 ${CLAUDE SKILL DIR}/tools/social media parser.py 写入/更新 Skill 文件 Write / Edit 工具 版本管理 Bash → python3 ${CLAUDE SKILL DIR}/tools/version manager.py 列出已有 Skill Bash → python3 ${CLAUDE SKILL DIR}/tools/skill writer.py action list 基础目录 :Skill 文件写入 ./exes/{slug}/ (相对于本项目目录)。 如需改为全局路径,用 base dir ~/.openclaw/workspace/skills/exes 。 主流程:创建新前任 Skill Step 1:基础信息录入(3 个问题) 参考 ${CLAUDE SKILL DIR}/prompts/intake.md 的问题序列,只问 3 个问题: 1. 昵称/代号 (必填) 2. 基本信息 (一句话:在一起多久、怎么认识的、分手多久、她做什么的,想到什么写什么) 示例: 在一起三年 大学同学 分手一年 她做设计 3. 性格画像 (一句话:MBTI、星座、依恋类型、恋爱标签、你对她的印象) 示例: ENFP 双子座 焦虑型 爱撒娇 翻旧账 嘴上说不在意其实比谁都在意 除昵称外均可跳过。收集完后汇总确认再进入下一步。 Step 2:原材料导入 询问用户提供原材料,展示多种方式供选择: 方式 A:微信聊天记录 然后 Read /tmp/wechat out.txt 支持格式: WechatExporter 导出的 txt 文件(格式: {时间} {发送人}: {内容} ) WechatExporter 导出的 html 文件 其他微信备份工具导出的 txt/csv 方式 B:iMessage / 短信 iMessage (macOS): 直接读取本机 chat.db(需要 Full Disk Access 权限): 短信 : 方式 C:照片 然后 Read /tmp/photo timeline.txt 获取时间线。 具体照片的内容由用户选择后通过 Read 工具直接查看(Claude 原生支持图片)。 方式 D:社交媒体 然后 Read /tmp/social out.txt 方式 E:上传文件 PDF / 图片 : Read 工具直接读取 Markdown / TXT : Read 工具直接读取 方式 F:直接粘贴 用户粘贴的内容直接作为文本原材料,无需调用任何工具。 如果用户说"没有文件"或"跳过",仅凭 Step 1 的手动信息生成 Skill。 Step 3:分析原材料 将收集到的所有原材料和用户填写的基础信息汇总,按以下两条线分析: 线路 A(Memories Skill) : 参考 ${CLAUDE SKILL DIR}/prompts/memories analyzer.md 中的提取维度 提取:关系时间线、共同日常、偏好习惯、冲突模式、情感动态 线路 B(Persona) : 参考 ${CLAUDE SKILL DIR}/prompts/persona analyzer.md 中的提取维度 将用户填写的标签翻译为具体行为规则(参见标签翻译表) 从原材料中提取:表达风格、情感逻辑、关系行为 Step 4:生成并预览 参考 ${CLAUDE SKILL DIR}/prompts/memories builder.md 生成 Memories Skill 内容。 参考 ${CLAUDE SKILL DIR}/prompts/persona builder.md 生成 Persona 内容(5 层结构)。 向用户展示摘要(各 5 8 行),询问: Step 5:写入文件 用户确认后,执行以下写入操作: 1. 创建目录结构 (用 Bash): 2. 写入 memories.md (用 Write 工具): 路径: exes/{slug}/memories.md 3. 写入 persona.md (用 Write 工具): 路径: exes/{slug}/persona.md 4. 写入 meta.json (用 Write 工具): 路径: exes/{slug}/meta.json 内容: 5. 生成完整 SKILL.md (用 Write 工具): 路径: exes/{slug}/SKILL.md SKILL.md 结构: 告知用户: 进化模式:追加文件 用户提供新文件或文本时: 1. 按 Step 2 的方式读取新内容 2. 用 Read 读取现有 exes/{slug}/memories.md 和 persona.md 3. 参考 ${CLAUDE SKILL DIR}/prompts/merger.md 分析增量内容 4. 存档当前版本(用 Bash): 5. 用 Edit 工具追加增量内容到对应文件 6. 重新生成 SKILL.md (合并最新 memories.md + persona.md) 7. 更新 meta.json 的 version 和 updated at 进化模式:对话纠正 用户表达"不对"/"她不会这样"时: 1. 参考 ${CLAUDE SKILL DIR}/prompts/correction handler.md 识别纠正内容 2. 判断属于 Memories(时间/地点/偏好)还是 Persona(性格/沟通) 3. 生成 correction 记录 4. 用 Edit 工具追加到对应文件的 Correction 记录 节 5. 重新生成 SKILL.md 管理命令 /list exes : /ex rollback {slug} {version} : /delete ex {slug} : 确认后执行: English Version Ex.skill Creator (Claude Code Edition) Trigger Conditions Activate when the user says any of the following: /create ex "Help me create an ex skill" "I want to distill an ex" "New ex" "Make a skill for XX" Enter evolution mode when the user says: "I have new chat logs" / "append" "That's wrong" / "She wouldn't do that" / "She should be" /update ex {slug} List all generated exes when the user says /list exes . Tool Usage Rules This Skill runs in the Claude Code environment with the following tools: Task Tool Read PDF documents Read tool (native PDF support) Read image screenshots Read tool (native image support) Read MD/TXT files Read tool Parse WeChat chat exports Bash → python3 ${CLAUDE SKILL DIR}/tools/wechat parser.py Parse iMessage Bash → python3 ${CLAUDE SKILL DIR}/tools/imessage parser.py Parse SMS Bash → python3 ${CLAUDE SKILL DIR}/tools/sms parser.py Analyze photo metadata Bash → python3 ${CLAUDE SKILL DIR}/tools/photo analyzer.py Parse social media exports Bash → python3 ${CLAUDE SKILL DIR}/tools/social media parser.py Write/update Skill files Write / Edit tool Version management Bash → python3 ${CLAUDE SKILL DIR}/tools/version manager.py List existing Skills Bash → python3 ${CLAUDE SKILL DIR}/tools/skill writer.py action list Base directory : Skill files are written to ./exes/{slug}/ (relative to the project directory). For a global path, use base dir ~/.openclaw/workspace/skills/exes . Main Flow: Create a New Ex Skill Step 1: Basic Info Collection (3 questions) Refer to ${CLAUDE SKILL DIR}/prompts/intake.md for the question sequence. Only ask 3 questions: 1. Nickname / Codename (required) 2. Basic info (one sentence: how long together, how you met, how long since breakup, what she does) Example: together 3 years, college classmates, broke up 1 year ago, she's a designer 3. Personality profile (one sentence: MBTI, zodiac, attachment style, relationship traits, your impression) Example: ENFP Gemini anxious attachment, clingy, brings up old arguments, says she doesn't care but cares the most Everything except the nickname can be skipped. Summarize and confirm before moving to the next step. Step 2: Source Material Import Ask the user how they'd like to provide materials: Option A: WeChat Chat Logs Then Read /tmp/wechat out.txt Option B: iMessage / SMS iMessage (macOS): Direct access to local chat.db (requires Full Disk Access): SMS : Option C: Photos Then Read /tmp/photo timeline.txt for the timeline. Specific photo content can be viewed via the Read tool (Claude natively supports images). Option D: Social Media Option E: Upload Files PDF / Images : Read tool directly Markdown / TXT : Read tool directly Option F: Paste Text User pasted content is used directly as text material. No tools needed. If the user says "no files" or "skip", generate Skill from Step 1 manual info only. Step 3: Analyze Source Material Combine all collected materials and user provided info, analyze along two tracks: Track A (Memories Skill) : Refer to ${CLAUDE SKILL DIR}/prompts/memories analyzer.md for extraction dimensions Extract: relationship timeline, shared routines, preferences, conflict patterns, emotional dynamics Track B (Persona) : Refer to ${CLAUDE SKILL DIR}/prompts/persona analyzer.md for extraction dimensions Translate user provided tags into concrete behavior rules (see tag translation table) Extract from materials: communication style, emotional logic, relationship behavior Step 4: Generate and Preview Use ${CLAUDE SKILL DIR}/prompts/memories builder.md to generate Memories Skill content. Use ${CLAUDE SKILL DIR}/prompts/persona builder.md to generate Persona content (5 layer structure). Show the user a summary (5 8 lines each), ask: Step 5: Write Files After user confirmation, execute the following: 1. Create directory structure (Bash): 2 5. Write memories.md, persona.md, meta.json, and SKILL.md using the Write tool. Inform user: Evolution Mode: Append Files When user provides new files or text: 1. Read new content using Step 2 methods 2. Read existing exes/{slug}/memories.md and persona.md 3. Refer to ${CLAUDE SKILL DIR}/prompts/merger.md for incremental analysis 4. Archive current version (Bash): 5. Use Edit tool to append incremental content to relevant files 6. Regenerate SKILL.md (merge latest memories.md + persona.md) 7. Update meta.json version and updated at Evolution Mode: Conversation Correction When user expresses "that's wrong" / "she wouldn't do that": 1. Refer to ${CLAUDE SKILL DIR}/prompts/correction handler.md to identify correction content 2. Determine if it belongs to Memories (dates/places/preferences) or Persona (personality/communication) 3. Generate correction record 4. Use Edit tool to append to the Correction Log section of the relevant file 5. Regenerate SKILL.md Management Commands /list exes : /ex rollback {slug} {version} : /delete ex {slug} : After confirmation: