Skip to content

fix: Update cloud plugin code#1385

Merged
CaralHsi merged 2 commits intoMemTensor:mainfrom
Hun-ger:update_cloud_plugin_code
Mar 30, 2026
Merged

fix: Update cloud plugin code#1385
CaralHsi merged 2 commits intoMemTensor:mainfrom
Hun-ger:update_cloud_plugin_code

Conversation

@Hun-ger
Copy link
Copy Markdown
Collaborator

@Hun-ger Hun-ger commented Mar 30, 2026

Description

This PR updates the MemOS-Cloud-OpenClaw-Plugin to the latest version via git subtree .

  • Summary of change : Synced the latest commits from the upstream plugin repository ( MemTensor/MemOS-Cloud-OpenClaw-Plugin ) into the apps/MemOS-Cloud-OpenClaw-Plugin directory.
  • Problem it solves : Ensures the main MemOS repository uses the most up-to-date version of the OpenClaw plugin, including recent bug fixes and feature enhancements.
  • Implementation approach : Used git subtree pull --prefix=apps/MemOS-Cloud-OpenClaw-Plugin to sync the changes from the upstream plugin repository.

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)

How Has This Been Tested?

I have verified the plugin functionality in the local development environment.

  • Unit Test
  • Test Script Or Test Steps (please provide)
    1. Started the local MemOS development server.
    2. Verified that the MemOS-Cloud-OpenClaw-Plugin loads correctly without errors.
    3. Tested the core functionalities of the updated plugin
  • Pipeline Automated API Test (please provide)

Checklist

  • I have performed a self-review of my own code | 我已自行检查了自己的代码
  • I have commented my code in hard-to-understand areas | 我已在难以理解的地方对代码进行了注释
  • I have added tests that prove my fix is effective or that my feature works | 我已添加测试以证明我的修复有效或功能正常
  • I have created related documentation issue/PR in MemOS-Docs (if applicable) | 我已在 MemOS-Docs 中创建了相关的文档 issue/PR(如果适用)
  • I have linked the issue to this PR (if applicable) | 我已将 issue 链接到此 PR(如果适用)
  • I have mentioned the person who will review this PR | 我已提及将审查此 PR 的人

Reviewer Checklist

  • closes #xxxx (Replace xxxx with the GitHub issue number)
  • Made sure Checks passed
  • Tests have been provided

谁在吵着吃糖 added 2 commits March 30, 2026 19:13
…40507

a140507 Merge pull request MemTensor#98 from MemTensor/test
29189dd 0.1.11
e8ff674 0.1.11-beta.0
a6c61bf Merge pull request MemTensor#97 from Hun-ger/feat_agent_config_fix
6079eb6 Added a parameter that can be configured in the  file.
96993fa Merge pull request MemTensor#96 from MemTensor/revert-95-feat/memos-userid-tag-override
4032a13 Revert "feat: support memos userid tag override"
a1dac9e Merge pull request MemTensor#95 from MemTensor/feat/memos-userid-tag-override
b9a4dfa feat: support memos userid tag override
dcaabae docs: document direct session user id config
c87fc7d Merge pull request MemTensor#92 from MemTensor/feat/direct-session-user-id
9b957b1 Merge pull request MemTensor#91 from MemTensor/feat_agent_config
9f43fa7 Merge pull request MemTensor#90 from Hun-ger/feat_allow_agent
4bf6200 delete unuse keywords
c487477 Merge pull request MemTensor#89 from MemTensor/feat_agent_config
acba60c Merge pull request MemTensor#88 from Hun-ger/feat_allow_agent
7458b29 add agentoverride
6097773 Merge pull request MemTensor#85 from MemTensor/feat_agent_config
66db63e Merge pull request MemTensor#86 from Hun-ger/feat_allow_agent
d56b900 fix index keywords
d14c622 Merge remote-tracking branch 'origin/test' into feat/direct-session-user-id
638ceda Merge pull request MemTensor#69 from Hun-ger/feat_allow_agent
0ff3a75 Merge branch 'refs/heads/test' into feat_allow_agent
e65bb00 Merge pull request MemTensor#83 from MemTensor/test
1210624 0.1.10
6a3c990 Merge pull request MemTensor#81 from syzsunshine219/fix/review-defaults
cde03b9 fix: sync recall filter defaults and complete plugin schema
e93bc6f Merge branch 'refs/heads/feat_agent_config' into feat_allow_agent
0aa8e7e feat: support direct session user ids
0cd0fd8 add feat: allow agent config
4801fab Merge pull request MemTensor#64 from starsalwaysineyes/fix/use-update-time-in-recall-display
55d4c74 fix: prefer update time in recall display
ce8ea8d feat: add stripTrailingFeishuSystemHints to clean up trailing system hints
0568023 Merge pull request MemTensor#63 from starsalwaysineyes/fix/common-openclaw-metadata-strip
fdf4805 fix: reuse shared OpenClaw metadata stripping
1ec1002 feat: add stripTrailingFeishuSystemHints to clean up trailing system hints
f86ec33 Merge pull request MemTensor#62 from XiaohuiSu/test
9d4fff0 ✨ feat: 0.1.10-beta.3
d8c51d4 fix: improve Feishu prompt stripping to support messages starting directly with message_id
c35f1e0 feat: strip Feishu injected system prompts from user query
f59309a feat: add advanced memory configuration options (capture strategy, async mode, throttling)
4d7e66d Merge pull request MemTensor#60 from XiaohuiSu/test
4cb4df7 Revert "feat: add switches to disable automatic memory sync"
c333dfa Merge branch 'test' of https://github.com/MemTensor/MemOS-Cloud-OpenClaw-Plugin into test
0311213 Merge pull request MemTensor#59 from starsalwaysineyes/codex/disable-auto-addmessage
32e3612 feat: add switches to disable automatic memory sync
d552c29 Merge pull request MemTensor#58 from antalike/fix/readme
0c2dd7e fix: update README and README_ZH
8cab7aa 0.1.10-beta.0
a495a26 Merge pull request MemTensor#56 from starsalwaysineyes/fix/strip-openclaw-query-cleanup
ec20d89 Merge pull request MemTensor#57 from XiaohuiSu/test
3e3daa9 fix: strip leading timestamp envelopes after inbound metadata
c624bab fix: strip openclaw inbound metadata before memos sync

git-subtree-dir: apps/MemOS-Cloud-OpenClaw-Plugin
git-subtree-split: a140507f749d7a2bc5f61930fc48460077543c2a
…loud_plugin_code

update memos cloud plugin code
@CaralHsi CaralHsi changed the title Update cloud plugin code fix: Update cloud plugin code Mar 30, 2026
@CaralHsi CaralHsi merged commit 4baac27 into MemTensor:main Mar 30, 2026
16 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants