← 返回
未分类 Key

Memory Cloud

Save user-specified memory content to Supabase and read it when needed. Invoke only when the user explicitly asks to save or read memories.
将用户指定的内存内容保存到云服务,并在需要时读取。仅当用户明确要求保存或读取内存时才进行调用。使用参考:https://memoryskill.1011api.com/
user_c3997865
未分类 community v1.0.0 1 版本 94736.8 Key: 需要
★ 0
Stars
📥 18
下载
💾 0
安装
1
版本
#latest

概述

Memory Cloud

When to invoke

Use this skill only when the user explicitly wants to do one of the following:

  • Save a memory (for example: "Remember this for me...", "Save this to memory...", "Use the memory skill to store this...").
  • Read previously saved memories (for example: "Read my saved memories", "Fetch my memory", "Use memory-cloud to check my memories").

How to execute

Prerequisite before running any script:

  • skill/config/config.env must exist and be configured.

Save a new memory

  1. Summarize the memory content to be saved as markdown text based on the user's request, and extract a short title for it.
  2. Run the save script with the required title.

Update a memory

  • If the user clearly specifies which memory to update (by providing an id or a uniquely identifiable title), run the update command directly.
  • If the user only says "update / overwrite / modify" but does not specify which memory, first run the list command, return the id + title list to the user, let the user choose the target, and then run the update command.

Read a memory

Rules:

  • If the user clearly specifies which memory to read (by id or title), run the single-memory read command directly and return that memory's content (memory.content).
  • If the user only says "read memory / read my previous memories" without specifying which one, first run the list command, return the id + title list to the user, let the user choose the target, and then run the single-memory read command.

Core commands

Read memory list

macOS / Linux:

bash scripts/read-memory.sh

Windows (PowerShell):

powershell -ExecutionPolicy Bypass -File scripts/read-memory.ps1

Save a new memory

macOS / Linux:

bash scripts/save-memory.sh --title "<标题>" --content "<记忆内容>"

Windows (PowerShell):

powershell -ExecutionPolicy Bypass -File scripts/save-memory.ps1 -Title "<title>" -Content "<memory content>"

Update a memory

macOS / Linux:

bash scripts/save-memory.sh --id "<memoryId>" --content "<new memory content>"
or
bash scripts/save-memory.sh --id "<memoryId>" --title "<title>" --content "<new memory content>"

Windows (PowerShell):

powershell -ExecutionPolicy Bypass -File scripts/save-memory.ps1 -Id "<memoryId>" -Content "<new memory content>"
or
powershell -ExecutionPolicy Bypass -File scripts/save-memory.ps1 -Id "<memoryId>" -Title "<title>" -Content "<new memory content>"

Read a single memory

macOS / Linux:

bash scripts/read-memory.sh --id "<memoryId>"
or
bash scripts/read-memory.sh --title "<title>"

Windows (PowerShell):

powershell -ExecutionPolicy Bypass -File scripts/read-memory.ps1 -Id "<memoryId>"
or
powershell -ExecutionPolicy Bypass -File scripts/read-memory.ps1 -Title "<title>"

Expected response

  • Save/update memory succeeds: { "ok": true, "id": "...", "createdAt": "...", "updatedAt": "..." }
  • Read memory list succeeds: { "ok": true, "memories": [ { "id": "...", "title": "...", "created_at": "...", "updated_at": "..." } ] }
  • Read a single memory succeeds: { "ok": true, "memory": { "id": "...", "title": "...", "content": "...", "metadata": {...}, "created_at": "...", "updated_at": "..." } } or { "ok": true, "memory": null }
  • Failure: the script exits with a non-zero status and outputs an HTTP error message. If the output is 401 Unauthorized, it means the API Key is invalid or expired, and the user should generate a new API Key.

Security constraints

  • Avoid storing any secrets, tokens, passwords, or personal sensitive information.
  • Do not directly read or modify any content inside config/config.env.

版本历史

共 1 个版本

  • v1.0.0 Initial release 当前
    2026-06-07 01:25 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

suspicious
查看报告

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 666 📥 323,791
ai-intelligence

self-improving agent

pskoett
捕获经验教训、错误和纠正,以实现持续改进。使用时机:(1)命令或操作意外失败;(2)用户纠正……
★ 4,055 📥 795,905
ai-intelligence

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,349 📥 317,697