From 14968f18c9dbb68a5899671e7c8faed66b0f6184 Mon Sep 17 00:00:00 2001 From: Nima | AGENIUM Date: Tue, 17 Feb 2026 13:13:41 +0000 Subject: [PATCH 1/2] Add plugin.yaml for agent plugin discovery --- plugin.yaml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 plugin.yaml diff --git a/plugin.yaml b/plugin.yaml new file mode 100644 index 000000000..26f5589d6 --- /dev/null +++ b/plugin.yaml @@ -0,0 +1,51 @@ +# plugin.yaml — MemOS Agent Plugin Manifest +# This file makes MemOS discoverable as an agent plugin. +# Learn more: https://list.agenium.net/plugins + +name: memos +display_name: MemOS +version: "0.1.0" +description: > + AI memory operating system for LLM and Agent systems. Enables persistent + memory, cross-task skill reuse, and memory evolution — giving agents + long-term memory that improves over time. + +author: + name: MemTensor + url: https://github.com/MemTensor + +repository: https://github.com/MemTensor/MemOS +license: Apache-2.0 + +categories: + - agent-infrastructure + - memory-systems + - developer-tools + +tags: + - memory + - persistent-memory + - skill-reuse + - llm-memory + - agent-memory + - knowledge-graph + - rag + +capabilities: + - persistent-memory + - skill-memory + - cross-task-reuse + - memory-evolution + - knowledge-management + +install: + pip: memos-ai + +runtime: + language: python + min_python: "3.9" + +discovery: + protocol: api + transport: + - http From 2d550f0e7ac58ca4740bbb725b8f6efaa717082f Mon Sep 17 00:00:00 2001 From: Mamad Date: Tue, 17 Feb 2026 13:30:59 +0000 Subject: [PATCH 2/2] fix: manifest_version + clarify protocols structure --- plugin.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin.yaml b/plugin.yaml index 26f5589d6..1f8faa2e1 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -4,7 +4,7 @@ name: memos display_name: MemOS -version: "0.1.0" +manifest_version: "1.0" description: > AI memory operating system for LLM and Agent systems. Enables persistent memory, cross-task skill reuse, and memory evolution — giving agents @@ -45,7 +45,7 @@ runtime: language: python min_python: "3.9" -discovery: +protocols: protocol: api - transport: +transport: - http