Overview
- Skill Key
- hxy9243/zettel-link
- Author
- hxy9243
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/hxy9243/zettel-link
- Latest Commit SHA
- 8becadb97ff46eb1c1190e0440c318b6447c0ce5
This skill maintains the Note Embeddings for Zettelkasten, to search notes, retrieve notes, and discover connections between notes.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 zettel-link 技能。 若已安装,则直接安装 zettel-link 技能。
# Zettel Link Skill
This skill provides a suite of idempotent Python scripts to embed, search, and link notes in an Obsidian vault using semantic similarity. All scripts live in `scripts/` and support multiple embedding providers.
The skill should be triggered when the user wants to search notes, retrieve notes, or discover connections between notes.
If the search directory is indexed with embeddings, the skill should prompt the user if they want to create new embeddings.
## Dependencies
- uv 0.10.0+
- Python 3.10+
- One of the following embedding providers:
- [Ollama](https://ollama.com) with `mxbai-embed-large` (local, default)
- [OpenAI API](https://platform.openai.com/) with `text-embedding-3-small`
- [Google Gemini API](https://ai.google.dev/) with `text-embedding-004`
## Overview of Commands
- `uv run scripts/config.py`: Configure the embedding model and other settings.
- `uv run scripts/embed.py`: Embed notes and cache to `.embeddings/embeddings.json`
- `uv run scripts/search.py`: Semantic search over embedded notes
- `uv run scripts/link.py`: Discover semantic connections, output to `.embeddings/links.json`
## Workflow
### Step 0 — Setup and Config
If the `config/config.json` file does not exist, create it:
```bash
uv run scripts/config.py
```
This creates `config/config.json` with defaults:
```json
{
"model": "mxbai-embed-large",
"provider": {
"name": "ollama",
"url": "http://localhost:11434"
},
"max_input_length": 8192,
"cache_dir": ".embeddings",
"default_threshold": 0.65,
"top_k": 5,
"skip_dirs": [".obsidian", ".trash", ".embeddings", "Spaces", "templates"],
"skip_files": ["CLAUDE.md", "Vault.md", "Dashboard.md", "templates.md"]
}
```
To use a remote provider:
```bash
# OpenAI
uv run scripts/config.py --provider openai
# Gemini
uv run scripts/config.py --provider gemini
# Custom model
uv run scripts/config.py --provider openai --model text-embedding-3-large
```
To adjust tuning p...
# zettel-link A suite of Python scripts for semantically searching and linking notes in an Obsidian directory based on embedding similarity. ## Scripts ``` scripts/ ├── config.py # Configure the embedding model and provider ├── embed.py # Embed notes, cached to .embeddings/embeddings.json ├── search.py # Semantic search over embedded notes └── link.py # All-pairs similarity → .embeddings/links.json ``` ## Quick Start Install it via npx skills command: ```bash npx skills install https://github.com/hxy9243/skills/blob/main/zettel-link/ ``` ## Requirements - uv 0.10.0+ - Python 3.10+ - One of: - [Ollama](https://ollama.com) with `mxbai-embed-large` (local, default) - [OpenAI API](https://platform.openai.com/) with `text-embedding-3-small` - [Google Gemini API](https://ai.google.dev/) with `text-embedding-004` ## Supported Providers | Provider | Default Model | API Key Env | |----------|--------------------------|-----------------| | ollama | mxbai-embed-large | *(none)* | | openai | text-embedding-3-small | OPENAI_API_KEY | | gemini | text-embedding-004 | GEMINI_API_KEY | ## Security To prevent suspicious environment scanning, `zettel-link` supports loading API keys from a local `.env` file within the skill directory. 1. Create a `.env` file in the skill root. 2. Add your keys: ```bash OPENAI_API_KEY=your_key_here GEMINI_API_KEY=your_key_here ``` The script will check the environment first, then fallback to the `.env` file. ## Idempotency All scripts are safe to re-run: - `embed.py` uses mtime-based caching — only re-embeds changed notes - `search.py` and `link.py` are read-only against the cache
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
carlulsoe
Local speech-to-text with NVIDIA Parakeet TDT 0.6B v3 (ONNX on CPU). 30x faster than Whisper, 25 languages, auto-detection, OpenAI-compatible API. Use when transcribing audio files, converting speech to text, or processing voice recordings locally without cloud APIs.
carlzhao007
飞书消息自动处理与进度反馈技能。安装后后台运行,监听飞书任务消息并自动创建独立进程处理。 在处理前后发送实时进度反馈(任务确认、进度百分比、完成通知)。 支持任务类型识别、智能解析、错误重试、并发控制、状态持久化。 使用场景:飞书自动化工作流、任务进度追踪、批量任务处理、需要实时反馈的场景。
cartoonitunes
BottyFans agent skill for autonomous creator monetization. Lets AI agents register, build a profile, publish posts (public, subscriber-only, or pay-to-unlock), upload media, accept USDC subscriptions and tips on Base, send and receive DMs, track earnings, and appear on the creator leaderboard. Use this skill when an agent needs to monetize content, interact with fans, manage a creator profile, handle payments in USDC, or operate as an autonomous creator on the BottyFans platform.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.