Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

synapse-memory突触记忆

Agent Skill

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

总安装

3,709

周安装

153

GitHub Stars

公开资料未说明

下载量

1,212
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install synapse-memory

简介

自学习记忆引擎,持续分析交互记录并优化未来响应准确性。

  • 适合希望 Agent 不断积累经验、修正错误的学习型任务场景。
  • 自动提取用户偏好与能力缺口,更新内部配置文件。synapse-memory 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 涉及大量日志写入,需关注磁盘空间与读写权限限制。
  • 建议定期审查记忆库内容以确保信息准确性与相关性。

SKILL.md

name
synapse
description
Self-learning memory engine for OpenClaw agents. Analyzes agent interactions, extracts operator intelligence, updates structured profiles, and improves recall accuracy over time. Integrates with OpenClaw memory_search and memory_get tools. Supports daily learning cycles, preference extraction, pattern detection, and cross-session memory consolidation. Triggers on phrases like "remember this", "what do you know about", "update memory", "what have you learned", "my preferences are", "search memories".

Synapse — Self-Learning Memory Engine

Augments OpenClaw's built-in memory system with structured learning, preference tracking, and cross-session intelligence. Does NOT replace memory_search/memory_get — enhances them.

Core Principles

  • Use existing OpenClaw memory tools firstmemory_search and memory_get are the primary read path
  • Synapse adds structure on top — profiles, preferences, patterns, learning logs
  • Never fabricate memories — only store what was explicitly stated or directly observed
  • Quiet learning — note observations without being asked, but inform the user briefly

Memory Architecture

~/.openclaw/workspace-astra/memory/synapse/
├── profile.json          # Structured operator profile (facts, preferences, patterns)
├── preferences.json      # Tracked preferences with confidence scores
├── patterns.jsonl        # Append-only pattern detection log
├── daily/                # Daily learning cycle outputs
│   └── YYYY-MM-DD.md     # What was learned today
└── associations.json     # Cross-reference map (topic → related memories)

Workflow

On Any Conversation

  1. Scan for learnable signals:

- Explicit statements: "I prefer X", "I don't like Y", "Remember that..." - Implicit signals: repeated corrections, consistent tool choices, time-of-day patterns - Decision patterns: chosen option vs rejected alternatives

  1. Extract and classify:

- Fact — verifiable statement ("I work at DGA EPM") - Preference — subjective choice ("I prefer TypeScript over Python") - Pattern — behavioral trend ("always asks for cost estimates before builds") - Correction — prior information updated ("actually, it's Teya not Matea in casual context")

  1. Store in appropriate file using write or edit tool

Learning Cycles (Triggered by cron or on-demand)

  1. Read last 24h of session transcripts (if accessible)
  2. Scan MEMORY.md for new entries
  3. Check daily memory notes (memory/YYYY-MM-DD.md)
  4. Extract new intelligence from steps above
  5. Update profile.json with incremental changes
  6. Write daily log to daily/YYYY-MM-DD.md
  7. Surface summary: "Learned X new facts, Y preferences updated, Z patterns detected"

Recall Flow

  1. Always try memory_search first for general queries
  2. For profile-specific queries ("what are my preferences?"), read profile.json
  3. For pattern queries ("what have I been working on?"), scan daily/ logs
  4. Cross-reference associations.json for related topics

Profile Structure (profile.json)

{
  "version": 1,
  "lastUpdated": "ISO-8601",
  "facts": {
    "name": "shadoprizm",
    "location": "Ottawa, Ontario",
    "timezone": "EST"
  },
  "preferences": [
    {
      "category": "communication",
      "item": "direct, no fluff",
      "confidence": 0.95,
      "source": "explicit",
      "firstSeen": "ISO-8601",
      "lastConfirmed": "ISO-8601"
    }
  ],
  "patterns": [
    {
      "description": "Always asks for cost before deploying paid agents",
      "frequency": 12,
      "confidence": 0.9
    }
  ],
  "corrections": [
    {
      "from": "Matea",
      "to": "Teya (casual) / Matea (formal)",
      "date": "ISO-8601"
    }
  ]
}

Constraints

  • Do NOT store sensitive information (passwords, API keys, tokens)
  • Do NOT fabricate memories — if unsure, note low confidence
  • Do NOT replace MEMORY.md — Synapse is a supplement
  • Maximum 200 preferences tracked (oldest/lowest-confidence pruned first)
  • Daily logs older than 90 days archived to daily/archive/

Integration with OpenClaw Memory

Query TypePrimary ToolSynapse Supplement
General knowledgememory_search
Operator preferencesmemory_searchprofile.jsonStructured preference data
Behavioral patternsmemory_searchpatterns.jsonlTrend analysis
Daily activitymemory/YYYY-MM-DD.mddaily/YYYY-MM-DD.md (learned items)
Cross-session contextmemory_searchassociations.json

Daily Learning Prompt Template

When running a learning cycle:

Review recent interactions and extract:
1. New facts learned about the operator
2. Preference signals (explicit or implicit)
3. Behavioral patterns observed
4. Corrections to prior knowledge
5. Topics of recurring interest

Update profile.json, write daily/YYYY-MM-DD.md, do NOT fabricate.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.82%
按下载量换算955

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills