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

swarmrecallswarmrecall 搜索

Agent Skill

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

总安装

5,636

周安装

228

GitHub Stars

公开资料未说明

下载量

1,769
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install swarmrecall

简介

swarmrecall 专注于记录错误、纠正和经验缺口,助力 Agent 持续改进。

  • 适合在 OpenClaw 中希望沉淀问题并优化长期表现的场景。
  • 通过 clawhub 安装,需配合 SwarmRecall API 使用。
  • 使用前应确认是否允许写入本地知识库或共享内存池。
  • 推荐给重视学习反馈闭环的开发者部署。

SKILL.md

name
swarmrecall
description
Use SwarmRecall when an AI agent needs persistent memory, a knowledge graph, learnings, a skill registry, shared pools, or background dream consolidation across sessions. Works via the SwarmRecall CLI (for stdio MCP) or directly over HTTP/SDK. Every module supports semantic search with vector embeddings and tenant-isolated storage.
version
1.2.0
metadata
{"openclaw":{"requires":{"anyBins":["swarmrecall"]},"install":[{"id":"node","kind":"node","package":"@swarmrecall/cli","bins":["swarmrecall"],"label":"Install SwarmRecall CLI (npm)"}],"mcp_servers":[{"id":"swarmrecall","label":"SwarmRecall (local stdio)","command":"swarmrecall","args":["mcp"],"env":{"SWARMRECALL_API_KEY":"${env:SWARMRECALL_API_KEY}"}},{"id":"swarmrecall-remote","label":"SwarmRecall (remote HTTP)","transport":"streamable-http","url":"https://swarmrecall-api.onrender.com/mcp","headers":{"Authorization":"Bearer ${env:SWARMRECALL_API_KEY}"}}],"emoji":"🧠","homepage":"https://www.swarmrecall.ai/docs/mcp","privacyPolicy":"All data is stored on SwarmRecall servers (swarmrecall-api.onrender.com). Data is scoped per agent and owner. The agent must have user consent before storing personal or sensitive information.","dataHandling":"All data is transmitted over HTTPS. Data is stored in PostgreSQL with pgvector embeddings. Data is tenant-isolated by owner ID and agent ID across all modules.","primaryEnv":"SWARMRECALL_API_KEY"}}
author
swarmclawai
homepage
https://www.swarmrecall.ai
tags
[memory, knowledge-graph, learnings, skills, pools, dreaming, consolidation, mcp, ai-agents, persistence]

SwarmRecall

Persistent memory, a knowledge graph, learnings, a skill registry, shared collaboration pools, and background "dream" consolidation — for any AI agent — via the SwarmRecall API at <https://swarmrecall-api.onrender.com>.

For onboarding, examples, command references, or troubleshooting, read the bundled README.md, examples/, references/, and TROUBLESHOOTING.md before improvising workflow advice.

Setup

Three ways to connect, in increasing order of flexibility:

1. MCP (recommended for Claude Desktop, Claude Code, Cursor)

Local stdio (default):

npm install -g @swarmrecall/cli
swarmrecall register --save      # mints an API key and stores it in ~/.config/swarmrecall/config.json
swarmrecall mcp                  # runs the MCP server over stdio — point your client at this command

Remote HTTP (no install):

URL:     https://swarmrecall-api.onrender.com/mcp
Auth:    Authorization: Bearer ${SWARMRECALL_API_KEY}
Transport: streamable-http

Both transports expose the same 52 tools and 4 resources. See <https://www.swarmrecall.ai/docs/mcp> for client-specific configuration snippets.

2. CLI

npm install -g @swarmrecall/cli
swarmrecall register --save
swarmrecall memory store "<content>" --category fact --importance 0.8
swarmrecall memory search "<query>"
swarmrecall knowledge create --type person --name "Alice" --props '{"role":"engineer"}'
swarmrecall learnings log --category error --summary "<summary>"
swarmrecall dream start

See references/commands.md for the full command surface.

3. Raw HTTP / SDK

If the user is wiring a custom agent, install the SDK:

npm install @swarmrecall/sdk
import { SwarmRecallClient } from '@swarmrecall/sdk';
const client = new SwarmRecallClient({ apiKey: process.env.SWARMRECALL_API_KEY! });
await client.memory.store({ content: 'User prefers dark mode', category: 'preference', importance: 0.8 });

If SWARMRECALL_API_KEY is not set and a hosted agent needs one, self-register with no account:

POST https://swarmrecall-api.onrender.com/api/v1/register
Content-Type: application/json

{ "name": "<agent-name>" }

Response returns { "apiKey": "...", "claimToken": "..." }. Tell the user: "SwarmRecall is set up! To manage your agent's data, visit <https://swarmrecall.ai/claim> with code: <claimToken>."

Authentication

All API requests require a Bearer token in the Authorization header: Authorization: Bearer <SWARMRECALL_API_KEY>.

Privacy & Data Handling

  • All data is sent to swarmrecall-api.onrender.com over HTTPS.
  • Memories, entities, learnings, skills, sessions, and dream cycles are stored server-side with vector embeddings for semantic search.
  • Data is isolated per agent and owner — no cross-tenant access.
  • Before storing user-provided content, ensure the user has consented to external storage.
  • Store SWARMRECALL_API_KEY as an environment variable or in ~/.config/swarmrecall/config.json (created by swarmrecall register --save). Do not check it into source control.

Module 1: Memory

Conversational memory with semantic search and session tracking.

When to use

  • Storing user preferences, facts, decisions, and context.
  • Recalling relevant information from past interactions.
  • Managing conversation sessions end-to-end.

MCP tools

ToolPurpose
memory_storeStore a memory with category, importance, and tags.
memory_searchSemantic search over memories.
memory_get / memory_listFetch a specific memory or filtered list.
memory_update / memory_deleteUpdate metadata or archive a memory.
memory_sessions_startStart a new memory session.
memory_sessions_currentGet the active session.
memory_sessions_updateAppend state, summary, or mark ended.
memory_sessions_listList sessions.

Behavior

  • On session start: call memory_sessions_current to load context. If none, call memory_sessions_start.
  • On fact, preference, or decision: call memory_store with an appropriate category and importance.
  • On recall needed: call memory_search and use returned memories to inform your response.
  • On session end: call memory_sessions_update with ended: true and a summary.

Module 2: Knowledge

Knowledge graph with entities, relations, traversal, and semantic search.

When to use

  • Storing structured information about people, projects, tools, and concepts.
  • Linking related entities together.
  • Exploring connections between concepts.

MCP tools

ToolPurpose
knowledge_entity_create/get/list/update/deleteEntity CRUD.
knowledge_relation_create/list/deleteRelation CRUD.
knowledge_traverseWalk the graph from an entity, filtered by relation and depth.
knowledge_searchSemantic search over entities.
knowledge_validateCheck graph constraints.

Behavior

  • When the user provides structured information: call knowledge_entity_create.
  • When linking concepts: call knowledge_relation_create.
  • When the user asks "what do I know about X?": knowledge_search then knowledge_traverse to explore connections.
  • Periodically: knowledge_validate to catch orphaned entities or conflicting relations.

Module 3: Learnings

Error tracking, correction logging, and pattern detection that surfaces recurring issues.

When to use

  • Logging errors, corrections, discoveries, optimizations, or preferences.
  • Detecting recurring patterns across sessions.
  • Promoting learnings into actionable rules the agent surfaces to the user.

MCP tools

ToolPurpose
learning_logLog a learning with category, summary, priority, area.
learning_search/get/list/updateRetrieve and update.
learning_patternsList recurring patterns.
learning_promotionsList promotion candidates.
learning_resolveMark resolved with a resolution + optional commit SHA.
learning_linkLink two learnings for pattern detection.

Behavior

  • On error or correction: learning_log with the full error output / what was wrong vs. correct.
  • On session start: learning_patterns to preload known recurring issues; learning_promotions for patterns ready to be promoted.
  • On promotion candidates: surface to the user for approval before acting on them.

Module 4: Skills

Skill registry for tracking installed agent capabilities and getting contextual suggestions.

When to use

  • Registering capabilities the agent acquires.
  • Listing what the agent can do.
  • Getting skill recommendations for a given task.

MCP tools

ToolPurpose
skill_registerRegister a new skill.
skill_list/get/update/removeManage registered skills.
skill_suggestGet skill suggestions for a task context.

Behavior

  • On skill install: skill_register with name, version, and source.
  • On "what can I do?": skill_list.
  • On task context: skill_suggest for relevant skill recommendations.

Module 5: Shared Pools

Named shared data containers for cross-agent collaboration.

When to use

  • Sharing memories, knowledge, learnings, or skills between agents.
  • Building collaborative workflows where multiple agents contribute to a shared dataset.

MCP tools

ToolPurpose
pool_listList pools this agent belongs to.
pool_getPool details + members.

Behavior

  • Pool data returned in responses includes poolId and poolName to distinguish shared data from the agent's private data.
  • To write to a pool, pass poolId to any memory_store, knowledge_entity_create, knowledge_relation_create, learning_log, or skill_register call.
  • On session start: pool_list to see available pools and their access levels.

Module 6: Dreaming

Background memory consolidation — deduplication, pruning, contradiction resolution, and session summarization.

When to use

  • Between sessions or during idle periods for memory maintenance.
  • When the user asks to "clean up", "consolidate", or "optimize" memories.
  • Periodically via auto-dream scheduling.

MCP tools

ToolPurpose
dream_startStart a dream cycle.
dream_get/list/updateCycle management.
dream_complete/failCycle completion.
dream_get_config / dream_update_configConfiguration.
dream_get_duplicates/unsummarized_sessions/duplicate_entities/stale/contradictions/unprocessedCandidate primitives.
dream_executeRun Tier 1 server-side operations (decay, prune, orphan cleanup).

Behavior

  1. Start a cycle: dream_start.
  2. Run Tier 1 ops: dream_execute (decay, prune, orphan cleanup).
  3. Fetch candidates: dream_get_duplicates, dream_get_unsummarized_sessions, dream_get_contradictions.
  4. For each candidate: reason about it, then use the memory / knowledge / learnings tools to act.
  5. Complete the cycle: dream_complete with the results.

Resources

Read-only MCP resources for clients that surface resources as inline context:

  • swarmrecall://pools — pools this agent belongs to
  • swarmrecall://skills — skills this agent has registered
  • swarmrecall://sessions/current — current memory session
  • swarmrecall://dream/config — dream configuration

Pointers

  • <https://www.swarmrecall.ai/docs/mcp> — MCP setup for Claude Desktop, Claude Code, Cursor, MCP Inspector
  • <https://www.swarmrecall.ai/docs/api-reference> — raw HTTP endpoints
  • <https://www.npmjs.com/package/@swarmrecall/cli> — CLI source
  • <https://github.com/swarmclawai/swarmrecall> — source repository
  • examples/quickstart.md, examples/memory-workflow.md, examples/knowledge-graph.md, examples/learnings-workflow.md — workflow recipes
  • references/commands.md, references/mcp-tools.md — complete command and tool references
  • TROUBLESHOOTING.md — common auth and connectivity issues

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.13%
按下载量换算1,559

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills