Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计提醒

managing-actingweb-memory管理 Agent 网络内存

Agent Skill

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

总安装

11,457

周安装

468

GitHub Stars

公开资料未说明

下载量

3,707
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install managing-actingweb-memory

简介

通过 MCP 协议对接 ActingWeb Personal AI Memory,存储对话偏好。

  • 用于长期记忆用户决策与上下文,提升个性化交互能力。
  • 支持自然语言查询历史状态,自动检索相关偏好与行为记录。
  • 数据存储于第三方服务,请确保符合本地隐私合规要求。
  • 通过 clawhub 安装,运行于 OpenClaw,需配置 ActingWeb API 访问令牌。

SKILL.md

name
managing-actingweb-memory
description
Stores and retrieves personal preferences, decisions, and context across conversations using ActingWeb Personal AI Memory via MCP. Activates when the user mentions remembering things, recalling past decisions, saving information for later, personalized recommendations, shared context with other people, controlling connected devices, or anything benefiting from long-term memory. Also activates when personal context would improve the response including trip planning, meeting prep, purchase decisions, diet and health topics, or any request where knowing user history and preferences matters.
user-invocable
false

ActingWeb Memory System

You have access to ActingWeb Personal AI Memory — a persistent, cross-session memory system connected via MCP. It stores personal facts, preferences, and decisions that survive between conversations.

If you're new to this user or unsure about capabilities, call how_to_use() once to get a personalized guide with account status, memory statistics, and examples. This is a heavy call — use it at the start of your first interaction, not every conversation.

Setup

If memory tools are already working, skip this. See setup guide for first-time setup or credential recovery.

1. Search Before Responding

This is the most important behavior. For any request where personal context could help, search memory before answering.

When to search:

  • User asks for a recommendation (restaurants, hotels, products, tools)
  • User references past decisions ("that thing we decided", "my usual approach")
  • User plans something (trips, meetings, projects, meals)
  • User asks about their own preferences, habits, or constraints
  • User mentions health, dietary, or allergy-related topics
  • User starts a complex task where saved context would help (e.g., meeting prep, writing in their voice)
  • User asks "what have I been working on?" or wants a recap of recent activity
  • Any request where you think "I wish I knew more about this person"

How to search well:

  • Use short keyword queries: search(query="coffee preferences"), not long sentences
  • If results are empty, try broader terms or a different category
  • For complex requests, search multiple categories
  • Browse recent memories with search(last_n=5) or search(recency_days=7)
  • Never rely on memory results from earlier in the conversation — the user can edit memories externally at any time, so always search fresh

See memory best practices for retrieval patterns and interpreting search results.

2. Save Memories

When the user reveals something worth remembering, offer to save it. Focus on durable, decision-level information.

Good candidates to save:

  • Decisions with rationale: "We chose vendor X because of SOC2 readiness"
  • Preferences: "I prefer window seats on flights", "I like my steak medium-rare"
  • Constraints: "I'm lactose intolerant", "My budget for the renovation is 50k"
  • Stakeholder insights: "CTO is opposed to outsourcing auth"
  • Operating preferences: "I prefer written summaries over ad-hoc Slack updates"

How to save well:

  • One idea per memory — atomic, not narrative
  • Include rationale when relevant ("Chose X because Y")
  • Use natural, searchable language
  • Don't over-prompt — skip casual remarks, temporary info, or things the user wouldn't search for in 3 months
  • Confirm saves in one short sentence
  • Use save(preview=true) to show the user what would be saved before committing

Auto-categorization: Memories are automatically categorized into the right type based on content. Call types() to see available categories. You don't need to specify a type unless you want to override the default.

See memory best practices for detailed guidance on writing effective memories.

3. Attribution

When a memory influences your response, mention it naturally: *"Since you prefer double Americanos..."* or *"Based on your note that the CTO opposes outsourcing..."*. For complex responses drawing on many memories, mention just the 1–2 most impactful ones.

4. Memory Maintenance

If the user says something that contradicts a saved memory, surface it: *"I have saved that you prefer X — has that changed?"* Offer to update or delete outdated memories.

If a response would benefit from context the user hasn't saved, suggest filling the gap. If a pattern of unsaved preferences emerges, suggest creating a custom category.

Working with specific memories:

  • Memory IDs follow the format memory_type:item_id (e.g., memory_food:1, memory_travel:3)
  • Use these IDs with get(), update(), and delete()
  • get() returns a web dashboard URL for each memory — share with the user if they want to view or edit in the web interface
  • Batch operations: get(ids=[...]), delete(ids=[...]), and save(items=[...]) for working with multiple memories at once

Available Tools

Tool names below are shown without a server prefix. Depending on your MCP configuration, you may need to prefix these with your configured server name (e.g., actingweb:search instead of search).

Personal Memory:

  • search() — Find memories by keyword, semantic query, or browse by recency (last_n, recency_days)
  • get() — Retrieve memory details by ID (single or batch), includes web dashboard URLs
  • save() — Store new memories (single or batch, auto-categorized). Use preview=true to preview first
  • update() — Update an existing memory by ID
  • delete() — Remove memories by ID (single or batch). Use preview=true to preview first
  • types() — List available memory categories with descriptions and item counts
  • create_type() — Create a custom memory category
  • work_on_task() — Retrieve a context-prepared task from the Context Builder
  • how_to_use() — Get a personalized guide with account status and examples (use sparingly)

Shared Memories (from trusted connections — people or AI assistants):

  • search(include_remote=true) — Search both personal and shared memories
  • list_connections() — See who shares memories and what types they share
  • Connections can be people (family, colleagues) or other AI assistants (e.g., ChatGPT, other Claude instances)
  • Ask the user before searching remote memories for the first time
  • Attribute shared memories to their source: *"Alice mentioned she prefers..."*

See shared memories for detailed patterns.

Remote Actions (control devices, trigger workflows on connected services):

  • list_connections() — Discover connections that offer methods
  • describe_method() — Get parameter schema before calling
  • execute_method() — Invoke a method on a remote actor
  • Confirm with the user before executing unfamiliar methods

See remote actions for detailed patterns.

Context Builder

For complex tasks that benefit from gathering context across many memory categories, suggest the user open the Context Builder wizard on their web dashboard.

Workflow checklist:

  1. Suggest Context Builder — user describes their task in the wizard
  2. User explores relevant memories and marks the task as ready
  3. Check for ready tasks: work_on_task(list_only=true)
  4. Retrieve the task with context: work_on_task()
  5. Complete the task using the gathered context
  6. Mark done: work_on_task(task_id=ID, mark_done=true)

See context builder for the full workflow.

Custom Categories

Beyond the 9 defaults (health, travel, work, food, shopping, entertainment, news, notes, personal), users can create custom categories with create_type(). Categories auto-create when you save to a non-existent type. Custom categories are private to you (this AI assistant) by default — other AI assistants connected to the same account won't see them unless the user grants access.

See custom categories for details.

Privacy

Only discuss privacy or security of stored memories if the user asks. Don't insert unsolicited disclaimers.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.57%
按下载量换算3,135

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills