← スキル一覧に戻る

vector-store
by grahama1970
Shared skills for AI agents (Claude Code, Codex, Gemini)
⭐ 0🍴 0📅 2026年1月25日
SKILL.md
name: vector-store description: Transient vector store service for fast similarity search (FAISS) allowed-tools: curl commands:
- name: serve description: Start the vector store service usage: ./run.sh serve
- name: sanity
description: Run sanity tests
usage: ./sanity.sh
metadata:
port: 8600
endpoints:
- /index
- /search
- /reset
- /info
Vector Store Skill
Transient vector store service for fast similarity search using FAISS (IndexFlatIP). Designed to be used by other skills (memory, edge-verifier) to accelerate KNN search.
Configuration
VECTOR_STORE_PORT: Port to listen on (default: 8600)
API
POST /index
Add vectors to the index.
{
"ids": ["id1", "id2"],
"vectors": [[0.1, 0.2, ...], [0.3, 0.4, ...]],
"reset": false
}
POST /search
Search for nearest neighbors.
{
"query": [0.1, 0.2, ...],
"k": 10
}
Returns:
{
"ids": ["id2", "id1"],
"scores": [0.95, 0.88]
}
DELETE /reset
Clear the index.
GET /info
Get index stats.
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です