Create a simple local embedding index for notes using vector embeddings. Enables semantic search and similarity matching for note collections.
Scanned 9/7/2026
Install to Claude Code
npx -y skills add jiayaoqijia/cryptoskill --skill xspoonai-official-vector-notes-indexer --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Xspoonai Official Vector Notes Indexer?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jiayaoqijia-xspoonai-official-vector-notes-indexer)More formats (shields.io, HTML) on the badges page.
---
name: vector-notes-indexer
track: ai-productivity
version: 0.1.0
summary: Create local embedding index for notes
---
## Description
Create a simple local embedding index for notes using vector embeddings. Enables semantic search and similarity matching for note collections.
## Inputs
```json
{
"notes": ["Note texts to index"],
"model": "embedding model name",
"index_path": "Path to save index"
}
```
## Outputs
```json
{
"ok": true,
"data": {
"indexed": 10,
"index_size": "5.2MB"
}
}
```
## Usage
### Demo Mode
```bash
python scripts/main.py --demo
```
### Create Index
```bash
echo '{"notes":["Note 1","Note 2"],"model":"sentence-transformers"}' | python3 scripts/main.py
```
## Examples
### Example 1: Index Notes
```bash
$ echo '{"notes":["Meeting notes about Q1 planning","Project status update"],"model":"sentence-transformers","index_path":"./notes_index"}' | python3 scripts/main.py
{
"ok": true,
"data": {
"indexed": 2,
"index_size": "1.2MB"
}
}
```
## Error Handling
When an error occurs, the skill returns:
```json
{
"ok": false,
"error": "Error description",
"details": {
"notes": "Notes list is required"
}
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!