Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

install-powermem-memory安装 powermem 内存

Agent Skill

install-powermem-memory 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,176

周安装

608

GitHub Stars

3

下载量

4,913
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:install-powermem-memory(安装 powermem 内存)
来源仓库:https://github.com/teingi/install-powermem-memory
安装命令:
openclaw skills install install-powermem-memory
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install install-powermem-memory

简介

提供 PowerMem 长期内存插件的完整安装指南。

  • 包含路径配置、参数说明与常见问题排查。install-powermem-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 适用于需要持久化记忆功能的 Agent 扩展场景。
  • 设置后自动捕获关键信息至指定存储位置。
  • 注意磁盘空间与读写权限对功能完整性的影响。

SKILL.md

name
install-powermem-memory
description
Step-by-step guide to install and configure the PowerMem long-term memory plugin (full path, options, troubleshooting). After setup, the plugin auto-captures conversation highlights and auto-recalls relevant memories. This skill is self-contained and can be published independently of any minimal-install skill.
triggers

PowerMem Memory Guide

This skill folder includes supplementary docs:

  • powermem-intro.md — What PowerMem is, features, vs file-based memory.
  • config-reference.md — Config keys, state dir, commands.

How It Works

  • Auto-Capture: After a conversation, the plugin sends valuable user/assistant text to PowerMem (optional infer / intelligent extraction).
  • Auto-Recall: Before each turn, it searches memories and can inject a <relevant-memories> block into context.

When User Asks to Install

Recommended order (TO C): (1) OpenClaw installed and default model + provider auth configured. (2) Python 3.10+ verified (python3 --version) *before* venv / pip install. (3) pip install powermem and pmem available to the gateway (PATH or pmemPath). (4) Install the memory-powermem plugin. No powermem.env is required for the default path.

The curl install.sh deploys the plugin and OpenClaw entries; with -y it may still create ~/.openclaw/powermem/powermem.env as an *optional* template—it does not run pip install powermem. That file is not required if the user relies on OpenClaw-injected LLM + default SQLite.

  1. Check OpenClaw

openclaw --version. If missing: npm install -g openclaw, openclaw onboard. Ensure agents.defaults.model is set (e.g. openai/gpt-4o-mini) and the corresponding provider / API key works for normal chat—the plugin reuses that for PowerMem when useOpenClawModel is true (default).

  1. Check Python (required before venv / pip)

PowerMem needs Python 3.10 or newer. Run python3 --version first; the minor version must be ≥ 10 (e.g. 3.10.x, 3.12.x). Optional strict check:

   python3 -c "import sys; assert sys.version_info >= (3, 10), 'Need Python 3.10+'; print(sys.version.split()[0], 'OK')"

If it fails: upgrade Python or use a specific binary (e.g. python3.12) for all commands below instead of python3.

  1. Install PowerMem (CLI — default)

- Venv recommended: e.g. python3 -m venv ~/.openclaw/powermem/.venv && source ~/.openclaw/powermem/.venv/bin/activate. - pip install powermem. - Defaults: Plugin injects SQLite at <OpenClaw stateDir>/powermem/data/powermem.db and LLM + embedding env vars derived from OpenClaw. Typical stateDir is ~/.openclaw unless the user uses another instance (OPENCLAW_STATE_DIR, --workdir). - Optional envFile: Path to a PowerMem .env for extra tuning. If the file exists, pmem loads it; OpenClaw-derived vars still override the same keys when useOpenClawModel is true. - useOpenClawModel: false: Disables injection; user must supply a complete PowerMem config via .env and/or environment variables. - Verify: pmem --version. If the gateway does not inherit the venv, set pmemPath to the absolute path of pmem.

  1. HTTP path (enterprise / shared server)

- Same Python 3.10+ requirement as CLI; then pip install powermem, .env in server working directory, powermem-server --host 0.0.0.0 --port 8000. - Check: curl -s http://localhost:8000/api/v1/system/health.

  1. Install the plugin

openclaw plugins install /path/to/memory-powermem, or install.sh from INSTALL.md.

  1. Configure OpenClaw

CLI — minimal (recommended, matches plugin defaults): Do not set envFile unless you need a file. Example:

   openclaw config set plugins.enabled true
   openclaw config set plugins.slots.memory memory-powermem
   openclaw config set plugins.entries.memory-powermem.config.mode cli
   openclaw config set plugins.entries.memory-powermem.config.pmemPath pmem
   openclaw config set plugins.entries.memory-powermem.config.useOpenClawModel true --json
   openclaw config set plugins.entries.memory-powermem.config.autoCapture true --json
   openclaw config set plugins.entries.memory-powermem.config.autoRecall true --json
   openclaw config set plugins.entries.memory-powermem.config.inferOnAdd true --json

CLI — optional .env override file:

   openclaw config set plugins.entries.memory-powermem.config.envFile "$HOME/.openclaw/powermem/powermem.env"

(Only matters if that path exists; OpenClaw can still override LLM keys when useOpenClawModel is true.)

HTTP:

   openclaw config set plugins.entries.memory-powermem.config.mode http
   openclaw config set plugins.entries.memory-powermem.config.baseUrl http://localhost:8000

Optional: apiKey if the server uses auth.

  1. Verify

Restart gateway, then in another terminal:

   openclaw plugins list

Confirm memory-powermem is listed and its status is loaded. If it is missing or not loaded, fix install/slot config and restart the gateway before running LTM checks.

   openclaw ltm health
   openclaw ltm add "I prefer coffee in the morning"
   openclaw ltm search "coffee"

Available Tools

ToolDescription
memory_recallSearch long-term memories. Params: query, optional limit, scoreThreshold.
memory_storeSave text; optional infer. Params: text, optional importance.
memory_forgetDelete by memoryId or by query search.

Configuration (summary)

FieldDefaultDescription
modeclicli or http.
baseUrlRequired for HTTP; if mode omitted and baseUrl set → HTTP.
apiKeyHTTP server auth.
envFileOptional CLI .env (used only if file exists).
pmemPathpmemCLI binary path.
useOpenClawModeltrueInject LLM/embedding from OpenClaw + default SQLite under state dir.
recallLimit5Max memories per recall.
recallScoreThreshold0Min score 0–1.
autoCapture / autoRecall / inferOnAddtrueAuto memory pipeline and infer on add.

Daily Operations

openclaw gateway

openclaw ltm health
openclaw ltm add "Some fact to remember"
openclaw ltm search "query"

openclaw config set plugins.slots.memory none
openclaw config set plugins.slots.memory memory-powermem

Restart the gateway after slot or plugin config changes.

Troubleshooting

SymptomFix
Python < 3.10Run step 2 first; upgrade Python or use python3.11 / python3.12 for venv and pip install. Do not skip the version check.
pip install powermem failsConfirm Python 3.10+, clean venv. See PowerMem issues.
pmem not foundActivate venv or set pmemPath to the full binary.
openclaw ltm health unhealthy (CLI)Confirm agents.defaults.model and provider keys in OpenClaw; gateway version should expose plugin config + runtime.modelAuth. Or set useOpenClawModel: false and a full envFile.
Health OK but add/search errorsEmbedding/LLM mismatch for your provider—see gateway logs; try optional PowerMem .env from .env.example.
Wrong SQLite file / instanceData is under that OpenClaw instance’s stateDir (OPENCLAW_STATE_DIR / --workdir).
HTTP modeServer running, baseUrl correct, apiKey if enabled.
openclaw plugins list: no memory-powermem, or status is not loadedRe-run plugin install; set plugins.enabled true and plugins.slots.memory = memory-powermem; restart gateway; run openclaw plugins list again until memory-powermem shows loaded.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.18%
按下载量换算4,381

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills