people-memoriesCapture 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.
Install via ClawdBot CLI:
clawdbot install charbeld/people-memoriesKeep 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.)."}
Generated Mar 1, 2026
Helps professionals remember client preferences, birthdays, and meeting follow-ups, ensuring personalized interactions without manual note-taking. Ideal for salespeople, consultants, or executives who manage multiple relationships and need quick recall of details during calls or meetings.
Allows healthcare providers to store patient preferences, reminders for follow-ups, and personal context to improve patient care and communication. Useful in clinics or telemedicine where recalling patient details enhances trust and efficiency without accessing formal EHR systems.
Enables event planners or hotel staff to capture guest preferences, dietary restrictions, and special requests from conversations, streamlining service delivery. This ensures personalized experiences for clients or guests based on stored notes from prior interactions.
Assists tutors or mentors in tracking student interests, learning preferences, and progress notes from sessions, facilitating tailored guidance. Useful for educators who work with multiple students and need to recall personal details to enhance engagement and support.
Offer the skill as a cloud-based service with tiered plans for individuals and teams, including features like advanced search, export options, and integrations. Revenue comes from monthly or annual subscriptions, with premium tiers for voice transcription and automation.
Provide a free version with basic note-taking and recall, while charging for advanced features such as voice auto-capture, reminders, and cross-platform sync. Monetize through in-app purchases or one-time upgrades for power users and small businesses.
Sell customized versions to corporations for internal use, integrating with existing CRM or communication tools like Slack or Teams. Revenue is generated through licensing fees, support contracts, and training services for large-scale deployment.
💬 Integration Tip
Integrate with voice assistants like Siri or Google Assistant for hands-free note capture, and sync with calendar apps to automate reminders based on tagged events.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection