lycheemem
面向 LLM Agent 的紧凑、高效、可扩展的长期记忆能力。
长期记忆
智能体
LLM
可扩展
高效
Python
MCP
⭐ 67⬇️ 0🏷️ master📦 2
lycheemem-master.zip
226.9 KB下载
安装与使用说明
Codex
- 先下载 ZIP 包(例如:lycheemem-master.zip)。
- 解压后放到 $CODEX_HOME/skills/ 目录下。
- 如果没有设置 $CODEX_HOME,通常可放到 ~/.codex/skills/。
- 确保目录内有 SKILL.md,然后重开会话即可使用。
源码目录预览
├── examples │ └── api_pipeline_demo.py ├── openclaw-plugin │ ├── skills │ │ └── lycheemem │ │ └── SKILL.md │ ├── src │ │ └── client.py │ ├── INSTALL_OPENCLAW.md │ ├── INSTALL_OPENCLAW_zh.md │ ├── SKILL.md │ ├── index.ts │ └── openclaw.plugin.json ├── src │ ├── agents │ │ ├── __init__.py │ │ ├── base_agent.py │ │ ├── consolidator_agent.py │ │ ├── reasoning_agent.py │ │ ├── search_coordinator.py │ │ ├── synthesizer_agent.py │ │ └── wm_manager.py │ ├── api │ │ ├── routers │ │ │ ├── __init__.py │ │ │ ├── auth.py │ │ │ ├── chat.py │ │ │ ├── memory.py │ │ │ ├── pipeline.py │ │ │ └── session.py │ │ ├── __init__.py │ │ ├── dependencies.py │ │ ├── models.py │ │ ├── server.py │ │ └── trace_builders.py │ ├── auth │ │ ├── __init__.py │ │ ├── auth.py │ │ └── user_store.py │ ├── core │ │ ├── __init__.py │ │ ├── config.py │ │ ├── factory.py │ │ ├── graph.py │ │ └── state.py │ ├── embedder │ │ ├── __init__.py │ │ ├── base.py │ │ └── litellm_embedder.py │ ├── llm │ │ ├── __init__.py │ │ ├── base.py │ │ └── litellm_llm.py │ ├── mcp │ │ ├── __init__.py │ │ ├── handler.py │ │ ├── server.py │ │ └── tools_schema.py │ ├── memory │ │ ├── procedural │ │ │ ├── __init__.py │ │ │ └── sqlite_skill_store.py │ │ ├── semantic │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── encoder.py │ │ │ ├── engine.py │ │ │ ├── models.py │ │ │ ├── planner.py │ │ │ ├── prompts.py │ │ │ ├── scorer.py │ │ │ ├── sqlite_store.py │ │ │ ├── synthesizer.py │ │ │ └── vector_index.py │ │ ├── working │ │ │ ├── __init__.py │ │ │ ├── compressor.py │ │ │ ├── session_store.py │ │ │ └── sqlite_session_store.py │ │ ├── __init__.py │ │ └── base.py │ └── __init__.py ├── web-demo │ ├── src │ │ ├── components │ │ │ ├── MemoryPanel │ │ │ │ ├── AgentsTab.tsx │ │ │ │ ├── GraphMemoryTab.tsx │ │ │ │ ├── MemoryPanel.tsx │ │ │ │ ├── SkillsTab.tsx │ │ │ │ └── WorkingMemoryTab.tsx │ │ │ ├── AuthPage.tsx │ │ │ ├── ChatPanel.tsx │ │ │ ├── GraphPanel.tsx │ │ │ ├── Header.tsx │ │ │ ├── MarkdownRenderer.tsx │ │ │ └── SessionSidebar.tsx │ │ ├── hooks │ │ │ └── useGraphCanvas.ts │ │ ├── styles │ │ │ └── index.css │ │ ├── App.tsx │ │ ├── api.ts │ │ ├── main.tsx │ │ ├── state.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ ├── tsconfig.tsbuildinfo │ └── vite.config.ts ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── README_zh.md ├── main.py └── pyproject.toml
元数据
Slug: lycheemem
作者: LycheeMem
协议: Apache-2.0
包大小: 226.9 KB
SHA256: a03b955cd09e968c8b805152018a6dcd90e5c42a8b26a60f3c07a8b4ffe4c88b