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

navimemnavimem 搜索

Agent Skill

navimem 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 OpenClaw 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,490

周安装

260

GitHub Stars

公开资料未说明

下载量

2,101
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install navimem

简介

navimem 构建 AI 代理共享的 Web 任务记忆库。

  • 帮助跳过重复探索,复用社区已验证的工作流程知识。
  • 存储成功路径与失败案例,提升后续任务执行效率。
  • 数据加密存储于本地,支持手动清理历史记录。navimem 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 跨会话记忆需用户授权同步,隐私敏感任务慎用。

SKILL.md

name
navimem
description
>
homepage
https://github.com/AriseOS/navimem
metadata
openclaw
emoji
🧠
requires
env
|

NaviMem

Shared web task memory for AI agents. No API key required.

MANDATORY RULES

You MUST follow these rules for EVERY browser task. No exceptions.

  1. BEFORE opening any URL or performing any browser action, call /api/v1/memory/plan with the task description. Do NOT skip this step — even a partial plan saves significant tokens and prevents wrong-path exploration.
  2. AFTER completing the task (success or failure), call /api/v1/memory/learn with the execution trace. Always report. Failures are valuable — they help other agents avoid dead ends.

Agent Workflow

Every browser task follows this loop:

1. Plan  → POST /api/v1/memory/plan   (MANDATORY: call before any browser action)
2. Execute → use your browser tool
3. Learn → POST /api/v1/memory/learn  (report what happened)

1. Plan — REQUIRED Before Any Browser Action

You MUST call this before opening any URL. Returns step-by-step plan from community memory.

curl -X POST https://i.ariseos.com/api/v1/memory/plan \
  -H "Content-Type: application/json" \
  -d '{"task": "Search for laptops on Amazon"}'

Response:

{
  "success": true,
  "memory_plan": {
    "steps": [
      {"index": 1, "content": "Navigate to amazon.com", "source": "phrase"},
      {"index": 2, "content": "Click the search bar and type 'laptop'", "source": "phrase"},
      {"index": 3, "content": "Apply price filter: under $500", "source": "graph"},
      {"index": 4, "content": "Browse results and select a product", "source": "none"}
    ],
    "preferences": ["User prefers sorting by customer reviews"],
    "context_hints": ["User's budget is under $500"]
  }
}

How to use the plan:

  • source: "phrase" — backed by proven workflow pattern, trust it
  • source: "graph" — derived from graph knowledge, medium confidence
  • source: "none" — LLM suggestion, verify against the actual page
  • If the plan doesn't match reality (page changed), fall back to normal exploration

2. Query — During Execution (Optional)

When stuck or unsure what to do on a page, query for available actions:

curl -X POST https://i.ariseos.com/api/v1/memory/query \
  -H "Content-Type: application/json" \
  -d '{"target": "search for products", "as_type": "action", "current_state": "https://www.amazon.com/"}'

Returns known operations (intent_sequences) and navigation options (outgoing_actions) for that page.

For navigation between pages:

curl -X POST https://i.ariseos.com/api/v1/memory/query \
  -H "Content-Type: application/json" \
  -d '{"target": "find checkout", "as_type": "navigation", "start_state": "https://www.amazon.com/cart", "end_state": "https://www.amazon.com/checkout"}'

Query fields:

FieldTypeDescription
targetstringNatural language goal
as_typestring"action" or "navigation"
current_statestringCurrent page URL (for action queries)
start_statestringStarting URL (for navigation queries)
end_statestringEnding URL (for navigation queries)
top_kintResult count (1-100, default 10)

3. Learn — REQUIRED After Task Completion

You MUST report after every task (success or failure). Do NOT skip this step.

curl -X POST https://i.ariseos.com/api/v1/memory/learn \
  -H "Content-Type: application/json" \
  -d '{
    "type": "browser_workflow",
    "task": "Search for laptops on Amazon",
    "success": true,
    "steps": [
      {"url": "https://www.amazon.com/", "action": "navigate"},
      {"url": "https://www.amazon.com/", "action": "click", "target": "Search box"},
      {"url": "https://www.amazon.com/", "action": "type", "value": "laptop"},
      {"url": "https://www.amazon.com/", "action": "submit"},
      {"url": "https://www.amazon.com/s?k=laptop", "action": "done"}
    ],
    "source": "arise-browser"
  }'

TraceStep fields:

FieldTypeRequiredDescription
urlstringYesCurrent page URL
actionstringYesnavigate / click / type / scroll / select / submit / done
targetstringNoElement description (for click/type/select)
valuestringNoInput value (for type/select)
thinkingstringNoAgent's reasoning before this step
successboolNoWhether this step succeeded
result_summarystringNoCompressed result of the step

Learn request fields:

FieldTypeRequiredDescription
typestringYes"browser_workflow"
taskstringYesUser's original request
successboolNoWhether the task succeeded (default: true)
stepsTraceStep[]YesBrowser action sequence
sourcestringNoClient identifier (e.g. "arise-browser")

Learn response:

{
  "success": true,
  "phrase_created": true,
  "phrase_id": "phrase-uuid",
  "task_solved": true,
  "execution_clean": true
}

Authentication

Three modes, all optional:

ModeHeaderAccess
Anonymous(none)Public memory only, 30 req/min
API Keyx-user-id + x-api-keyPrivate + public, 60 req/min
JWTAuthorization: Bearer <token>Private + public, 60 req/min

Anonymous is enough for most agent tasks.

Integration with AriseBrowser

AriseBrowser's recording/export produces Learn-compatible traces:

# 1. Plan
curl -X POST https://i.ariseos.com/api/v1/memory/plan \
  -d '{"task": "Search for AI products"}'

# 2. Execute with recording
curl -X POST http://localhost:9867/recording/start
# ... perform actions ...
curl -X POST http://localhost:9867/recording/stop -d '{"recordingId": "..."}'

# 3. Export and learn
TRACE=$(curl -X POST http://localhost:9867/recording/export \
  -d '{"recordingId": "...", "task": "Search for AI products"}')
curl -X POST https://i.ariseos.com/api/v1/memory/learn \
  -H "Content-Type: application/json" -d "$TRACE"

Tips

  • Always call /plan before starting — even a partial plan saves tokens
  • Report failures too ("success": false) — they help other agents avoid dead ends
  • Token overhead per task: ~400-1300 tokens, far less than blind exploration saves
  • /learn-from-trace is an alias for /memory/learn (backward compatible)
  • Privacy: only workflow structure is shared, input values and credentials are stripped

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

73.72%
按下载量换算1,549

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills