TopRank Skills

Home / Claw Skills / Recherche / Local Memory Search
Official OpenClaw rules 36%

Local Memory Search

Local Memory Search

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Local Memory Search 技能。 若已安装,则直接安装 Local Memory Search 技能。

Overview

Skill Key
dagangtj/local-memory-search
Author
dagangtj
Source Repo
openclaw/skills
Version
-
Source Path
skills/dagangtj/local-memory-search
Latest Commit SHA
da92cf9aa889bb2fb34850aa10b94040f82766de

Extracted Content

SKILL.md excerpt

# Local Memory Search

Lightweight semantic search for OpenClaw memory files. No external API needed.

## Usage

```bash
python3 search.py "your query"
```

Build index:
```bash
python3 search.py --build
```

## Features

- Searches MEMORY.md and memory/*.md
- TF-IDF based semantic matching
- Zero external dependencies
- Fast local execution
- Returns top snippets with file path and line numbers

## How It Works

1. Builds inverted index of all memory files
2. Uses TF-IDF scoring for relevance
3. Returns ranked results with context

## Requirements

- Python 3.8+
- No pip packages needed (uses stdlib only)

Related Claw Skills