Capture short personal notes about people you mention, store them in a lightweight DB, and recall those details whenever you ask about them later. Use when you want to remember preferences, reminders, or the context around a person without digging through past chats.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install people-memories或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install people-memories⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/people-memories/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: people-memories description: Capture short personal notes about people you mention, store them in a lightweight DB, and recall those details whenever you ask about them later. Use when you want to remember preferences, reminders, or the context around a person without digging through past chats. ---
Keep a short-lived, searchable memory vault about people you talk to so your assistant can recall follow-ups instantly. The skill handles:
remember cues (voice or text) to persist comments, preferences, and context.~/.clawdbot/people-memory.json now stores:
{
"people": {
"alex": {
"displayName": "Alex",
"notes": [
{
"timestamp": "2026-01-29T12:05:00Z",
"note": "Likes cats and doing late-night music practice",
"source": "voice",
"tags": ["pets", "music"]
}
]
}
},
"index": {
"music": ["alex"],
"cats": ["alex"]
}
}
timestamp, note, source, and tags.index map keeps keywords → people for super-fast lookups.Use the bundled script to manage the database:
skills/people-memories/scripts/people_memory.py <command> [options]
remember --person Alex --note "loves chai" --tags drinks,preferences – adds a note.recall --person Alex --limit 3 – reads the latest notes.summarize --person Alex – prints fact card with counts, tags, last updates.search --query coffee – finds people whose notes mention “coffee”.export --person Alex --format md --out ~/Desktop/alex.md – dumps the notes as Markdown (or JSON). list – enumerates everyone stored plus note counts.The extensions/people-memories extension listens to /voice-chat transcripts. When you say something like “remember Alex likes cats,” it automatically runs the remember command and logs the note. The index updates in the background, and we keep confirmations quiet unless you explicitly ask for them.
Event metadata (type + date) is attached whenever a note mentions birthdays or anniversaries. A helper cron job runs python3 skills/people-memories/scripts/people_memory.py reminders --days 0 --window 7 --format message each morning and delivers the resulting digest over Telegram so you’re nudged about the next week’s birthdays/anniversaries without manual effort. If you prefer a different cadence or channel, rerun the command yourself or update the schedule.
api.message helper.birthday trigger alerts.Let me know which direction to automate next (priority filters, notifications, cross-agent sync, etc.)."}
安装 People Memories 后,可以对 AI 说这些话来触发它
Help me get started with People Memories
Explains what People Memories does, walks through the setup, and runs a quick demo based on your current project
Use People Memories to capture short personal notes about people you mention, store them i...
Invokes People Memories with the right parameters and returns the result directly in the conversation
What can I do with People Memories in my documents & notes workflow?
Lists the top use cases for People Memories, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/people-memories/ 目录(个人级,所有项目可用),或 .claude/skills/people-memories/(项目级)。重启 AI 客户端后,用 /people-memories 主动调用,或让 AI 根据上下文自动发现并使用。
People Memories 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
People Memories 可免费安装使用。请查阅仓库了解许可证信息。
Capture short personal notes about people you mention, store them in a lightweight DB, and recall those details whenever you ask about them later. Use when you want to remember preferences, reminders, or the context around a person without digging through past chats.
People Memories 属于「Documents & Notes」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my documents & notes tasks using People Memories
Identifies repetitive steps in your workflow and sets up People Memories to handle them automatically