{
  "schemaVersion": "1.0",
  "item": {
    "slug": "people-memories",
    "name": "People Memories",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/charbeld/people-memories",
    "canonicalUrl": "https://clawhub.ai/charbeld/people-memories",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/people-memories",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=people-memories",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/people_memory.py",
      "extensions/people-memories/clawdbot.plugin.json",
      "extensions/people-memories/index.js"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/people-memories"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/people-memories",
    "agentPageUrl": "https://openagent3.xyz/skills/people-memories/agent",
    "manifestUrl": "https://openagent3.xyz/skills/people-memories/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/people-memories/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Purpose",
        "body": "Keep a short-lived, searchable memory vault about people you talk to so your assistant can recall follow-ups instantly. The skill handles:\n\nremember cues (voice or text) to persist comments, preferences, and context.\nSummaries + exports so you can package a person’s “fact card.”\nSearch, recall, and list commands for quick lookups.\nOptional auto-trigger from voice transcripts (when you say “remember …”)."
      },
      {
        "title": "Structure & storage",
        "body": "~/.clawdbot/people-memory.json now stores:\n\n{\n  \"people\": {\n    \"alex\": {\n      \"displayName\": \"Alex\",\n      \"notes\": [\n        {\n          \"timestamp\": \"2026-01-29T12:05:00Z\",\n          \"note\": \"Likes cats and doing late-night music practice\",\n          \"source\": \"voice\",\n          \"tags\": [\"pets\", \"music\"]\n        }\n      ]\n    }\n  },\n  \"index\": {\n    \"music\": [\"alex\"],\n    \"cats\": [\"alex\"]\n  }\n}\n\nNames are normalized (lowercase keys) but store the display name.\nEach note captures timestamp, note, source, and tags.\nAn index map keeps keywords → people for super-fast lookups."
      },
      {
        "title": "CLI commands",
        "body": "Use the bundled script to manage the database:\n\nskills/people-memories/scripts/people_memory.py <command> [options]\n\nremember --person Alex --note \"loves chai\" --tags drinks,preferences – adds a note.\nrecall --person Alex --limit 3 – reads the latest notes.\nsummarize --person Alex – prints fact card with counts, tags, last updates.\nsearch --query coffee – finds people whose notes mention “coffee”.\nexport --person Alex --format md --out ~/Desktop/alex.md – dumps the notes as Markdown (or JSON).\nlist – enumerates everyone stored plus note counts."
      },
      {
        "title": "Auto capture (voice/chat)",
        "body": "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."
      },
      {
        "title": "Reminders & automation",
        "body": "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."
      },
      {
        "title": "Enhancements in this version",
        "body": "Smart indexing – Tags + keyword extraction keep the lookup index updated so searches find matching people even when you reuse adjectives.\nSummaries & exports – Quickly produce a fact card or shareable Markdown/JSON of anyone’s notes.\nVoice integration + logging – transcripts feed the database so you don’t type commands manually.\nStructured data – normalized keys + timestamps plus tag metadata make it easy for other tools (cron, dashboards) to consume the memory store."
      },
      {
        "title": "Next steps / nice-to-haves",
        "body": "Add optional confirmation responses “Noted, saved for Alex.” via the runtime api.message helper.\nIntegrate with reminders/cron so tagged notes like birthday trigger alerts.\nBuild a simple watch UI (web or terminal) that previews the latest people cards.\n\nLet me know which direction to automate next (priority filters, notifications, cross-agent sync, etc.).\"}"
      }
    ],
    "body": "People memories skill\nPurpose\n\nKeep a short-lived, searchable memory vault about people you talk to so your assistant can recall follow-ups instantly. The skill handles:\n\nremember cues (voice or text) to persist comments, preferences, and context.\nSummaries + exports so you can package a person’s “fact card.”\nSearch, recall, and list commands for quick lookups.\nOptional auto-trigger from voice transcripts (when you say “remember …”).\nStructure & storage\n\n~/.clawdbot/people-memory.json now stores:\n\n{\n  \"people\": {\n    \"alex\": {\n      \"displayName\": \"Alex\",\n      \"notes\": [\n        {\n          \"timestamp\": \"2026-01-29T12:05:00Z\",\n          \"note\": \"Likes cats and doing late-night music practice\",\n          \"source\": \"voice\",\n          \"tags\": [\"pets\", \"music\"]\n        }\n      ]\n    }\n  },\n  \"index\": {\n    \"music\": [\"alex\"],\n    \"cats\": [\"alex\"]\n  }\n}\n\nNames are normalized (lowercase keys) but store the display name.\nEach note captures timestamp, note, source, and tags.\nAn index map keeps keywords → people for super-fast lookups.\nCLI commands\n\nUse the bundled script to manage the database:\n\nskills/people-memories/scripts/people_memory.py <command> [options]\n\nremember --person Alex --note \"loves chai\" --tags drinks,preferences – adds a note.\nrecall --person Alex --limit 3 – reads the latest notes.\nsummarize --person Alex – prints fact card with counts, tags, last updates.\nsearch --query coffee – finds people whose notes mention “coffee”.\nexport --person Alex --format md --out ~/Desktop/alex.md – dumps the notes as Markdown (or JSON).\nlist – enumerates everyone stored plus note counts.\nAuto capture (voice/chat)\n\nThe 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.\n\nReminders & automation\n\nEvent 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.\n\nEnhancements in this version\nSmart indexing – Tags + keyword extraction keep the lookup index updated so searches find matching people even when you reuse adjectives.\nSummaries & exports – Quickly produce a fact card or shareable Markdown/JSON of anyone’s notes.\nVoice integration + logging – transcripts feed the database so you don’t type commands manually.\nStructured data – normalized keys + timestamps plus tag metadata make it easy for other tools (cron, dashboards) to consume the memory store.\nNext steps / nice-to-haves\nAdd optional confirmation responses “Noted, saved for Alex.” via the runtime api.message helper.\nIntegrate with reminders/cron so tagged notes like birthday trigger alerts.\nBuild a simple watch UI (web or terminal) that previews the latest people cards.\n\nLet me know which direction to automate next (priority filters, notifications, cross-agent sync, etc.).\"}"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/charbeld/people-memories",
    "publisherUrl": "https://clawhub.ai/charbeld/people-memories",
    "owner": "charbeld",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/people-memories",
    "downloadUrl": "https://openagent3.xyz/downloads/people-memories",
    "agentUrl": "https://openagent3.xyz/skills/people-memories/agent",
    "manifestUrl": "https://openagent3.xyz/skills/people-memories/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/people-memories/agent.md"
  }
}