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

seem-skill看起来技巧

Agent Skill

seem-skill 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,868

周安装

101

GitHub Stars

公开资料未说明

下载量

840
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seem-skill

简介

构建多轮对话中的高级情景记忆管理系统。seem-skill 属于开发类 Skill,可作为该场景下的辅助能力补充。

  • 使用事实图与 PPR 检索增强上下文理解能力。
  • 支持结构化存储与快速检索过往交互记录。
  • 通过 clawhub 命令安装至 OpenClaw 宿主系统。
  • 记忆容量与性能表现取决于底层存储配置。

SKILL.md

name
SEEM
version
0.1.0
description
Advanced episodic memory system for multi-turn conversations. Store and retrieve structured conversation memories with fact graph, PPR retrieval, and three recall modes (Lite/Pro/Max). Supports hybrid retrieval (dense + sparse), dynamic memory integration, and fact deduplication.
metadata
{"openclaw":{"emoji":"🧠","requires":{"bins":["python3","pip"],"env":["LLM_API_KEY","MM_ENCODER_API_KEY"]},"primaryEnv":"LLM_API_KEY"}}

SEEM Skill

Structured Episodic & Entity Memory for multi-turn conversations.

Quick Start

from seem_skill import SEEMSkill, SEEMConfig, RecallMode

config = SEEMConfig()
skill = SEEMSkill(config)

# Store conversation
memory_id = skill.store({
    "text": "Lena asked about Scottish Terriers",
    "speaker": "Alice"
})

# Recall (default: LITE mode — facts + episodic memory, no raw chunks)
result = skill.recall({"text": "What did Lena ask?"}, top_k=3)
# result = {"memories": [...], "facts": [...]}

# Recall with raw chunks
result = skill.recall({"text": "What did Lena ask?"}, mode=RecallMode.PRO)

# Recall with backfill
result = skill.recall({"text": "What did Lena ask?"}, mode=RecallMode.MAX)

Recall Modes

ModeFactsEpisodic MemoryRaw ChunksBackfill
Lite (default)✅ (summary + events)
Pro✅ (top_k)
Max✅ (top_k + backfill ≤ 2×top_k)
  • Lite: Lightest context. Facts + structured memory only. Best for LLM agents that want concise context.
  • Pro: Includes raw observation text for the top_k retrieved chunks.
  • Max: Full context with backfill from associated memories (up to 2×top_k chunks).

Retrieval Strategies

StrategyMethodBest For
DPRDense vector similaritySimple keyword-matching queries
Hybrid RRFDense + BM25 sparse fusionMixed keyword + semantic queries
PPRPersonalized PageRank over knowledge graphMulti-hop, entity-rich queries

Default strategy is configured in config.py (currently ppr).

Configuration

Environment Variables (Recommended)

export LLM_API_KEY="sk-xxx"
export LLM_BASE_URL="https://api.deepseek.com"
export LLM_MODEL="deepseek-chat"

export MM_ENCODER_API_KEY="sk-xxx"
export MM_ENCODER_BASE_URL="https://api.siliconflow.cn/v1"
export MM_ENCODER_MODEL="Qwen/Qwen3-Embedding-8B"

Unified Configuration File

All default settings are centralized in seem_skill/config.py:

LLM_CONFIG = {
    "base_url": "https://api.deepseek.com",
    "model": "deepseek-chat",
}

EMBEDDING_CONFIG = {
    "base_url": "https://api.siliconflow.cn/v1",
    "model": "Qwen/Qwen3-Embedding-8B",
}

Custom Configuration

Override defaults programmatically:

config = SEEMConfig(
    llm_api_key="your-key",
    llm_model="custom-model",
    retrieve_strategy=RetrieveStrategy.PPR,
    top_k_facts=10,
    ppr_damping=0.6,
)

Key Parameters

ParameterDefaultDescription
retrieve_strategyhybrid_rrfDPR / Hybrid RRF / PPR
top_k_chunks3Number of chunks to retrieve
top_k_facts5Number of fact triples to retrieve
top_k_candidates3Integration candidate count
rrf_rank_constant30RRF smoothing constant
ppr_damping0.5PPR teleport probability
backfill_chunks5Max additional chunks per backfill
enable_fact_graphTrueBuild fact graph on store
entity_similarity_threshold0.9Entity linking threshold
enable_integrationTrueDynamic memory integration
integration_window3Batch size for deferred integration

Operations

Store

python scripts/cli_memory.py store --text "Your message" --speaker user
python scripts/cli_memory.py store --dialogue-id "D1:1" --speaker "Alice" --text "Message"

Recall

python scripts/cli_memory.py recall --query "Your query" --mode lite
python scripts/cli_memory.py recall --query "Your query" --mode pro --strategy ppr --top-k 5
python scripts/cli_memory.py recall --query "Your query" --mode max --top-k-facts 10

Facts (Knowledge Graph)

python scripts/cli_memory.py facts               # Show all fact triples
python scripts/cli_memory.py facts --entity 小米   # Filter by entity

Display (Detailed)

python scripts/cli_memory.py display
python scripts/cli_memory.py display --dialogue-id "D1:1"

View (Compact 5W1H)

python scripts/cli_memory.py view

Stats

python scripts/cli_memory.py stats

Clear

python scripts/cli_memory.py clear --yes

Features

  • Episodic Memory Extraction: LLM extracts structured summary + events (5W1H) from each turn
  • Fact Graph Construction: Extracts subject-predicate-object triples, builds NetworkX knowledge graph
  • Fact Deduplication: Two-stage dedup — normalized exact match (O(1)) + embedding similarity (threshold 0.93)
  • PPR Retrieval: Personalized PageRank over entity-fact-chunk graph for graph-aware retrieval
  • Three Recall Modes: Lite/Pro/Max controlling context granularity
  • Dynamic Integration: Auto-merges related memories (MODERATE or STRONG coherence)
  • Hybrid Retrieval: Dense (vector) + Sparse (BM25) with RRF fusion
  • Entity Linking: Embedding-based entity normalization (threshold 0.9)
  • Multimodal Support: Images participate in embedding and retrieval
  • LRU Cache: Reduces repeated embedding computation
  • NetworkX Graph: Full graph algorithms available (PPR, connected components, etc.)

Architecture

Store Pipeline:

  1. Chunk storage (raw observation)
  2. Episodic extraction (LLM) → summary + events
  3. Fact extraction from events → subject-predicate-object triples
  4. Fact deduplication (exact match + embedding similarity)
  5. Entity node creation and fact graph construction (NetworkX)
  6. Multimodal embedding
  7. Candidate retrieval (dense similarity)
  8. Integration judgment (LLM, MODERATE or STRONG → integrate)
  9. Memory merge/insert

Recall Pipeline:

  1. Query encoding
  2. Strategy routing (DPR / Hybrid RRF / PPR)
  3. Chunk retrieval (strategy-specific, returns top_k chunks with scores)
  4. Fact retrieval (vector similarity, returns top_k facts)
  5. Result assembly (mode-dependent):

- LITE: structured memory (summary + events) + facts - PRO: + raw chunks (top_k) - MAX: + backfill chunks (up to 2×top_k)

Graph Structure (NetworkX DiGraph):

  • Node types: entity, chunk
  • Edge types: entity_chunk (entity → chunk), fact (entity ↔ entity), synonymy (entity ↔ entity)
  • Fact deduplication: normalized exact match + embedding similarity (threshold 0.93)

File Structure

SEEM/
├── SKILL.md              # This file
├── README.md             # Quick reference
├── config.py             # Unified configuration (LLM + Embedding)
├── requirements.txt      # Python dependencies
├── __init__.py           # Package entry point
├── core/
│   ├── __init__.py
│   ├── seem_skill.py     # Core implementation (SEEMSkill class)
│   ├── schema.py         # Data structures (SEEMConfig, RecallMode, etc.)
│   ├── prompts.py        # LLM prompts
│   └── utils.py          # LLM client, embedding, BM25, cache
├── scripts/
│   └── cli_memory.py     # CLI: store, recall, facts, display, view, stats, clear
├── data/                 # Persistent storage (auto-created)
└── tests/

Dependencies

  • openai>=1.0.0 — LLM and embedding API client
  • numpy>=1.21.0 — Vector operations
  • networkx>=3.0 — Knowledge graph, PPR, connected components
  • scipy>=1.0 — Required by nx.pagerank()
  • rank-bm25>=0.2.2 — BM25 sparse retrieval
  • nltk>=3.8.0 — Tokenization

When to Use SEEM

  • Multi-turn conversations need structured context preservation
  • Complex event relationships exist across dialogue turns
  • Need entity-centric retrieval (fact graph + PPR)
  • Want control over context granularity (Lite/Pro/Max modes)
  • Dynamic memory integration is valuable

Troubleshooting

API Key Errors

Error: Missing API keys

Set environment variables or update config.py:

export LLM_API_KEY="sk-xxx"
export MM_ENCODER_API_KEY="sk-xxx"

PPR Requires scipy

ModuleNotFoundError: No module named 'scipy'
pip install scipy networkx

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.25%
按下载量换算590

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills