embedding
Standalone embedding service for semantic search. Runs as persistent FastAPI server for millisecond-latency embeddings. Supports model swapping via env vars. Use when you need vectors for any database (ArangoDB, Pinecone, etc).
npx skills add majiayu000/claude-skill-registry --skill embedding --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Embedding Skill Standalone embedding service for semantic search across any database. ## Architecture ``` ┌─────────────────────────────────────────┐ │ embedding service (:8602) │ │ Model: EMBEDDING_MODEL env var │ │ Device: auto (CPU/GPU) │ └───────────────────┬─────────────────────┘ │ ┌───────────────┼───────────────┐ ▼ ▼ ▼ memory edge-verifier your-project skill searches ArangoDB/etc ``` ## Quick Start ```bash # Start the service (first run loads model ~5-10s) ./run.sh serve # Embed text (CLI) ./run.sh embed --text "your query here" # Embed via HTTP (after service is running) curl -X POST http://127.0.0.1:8602/embed -H "Content-Type: application/json" \ -d '{"text": "your query here"}' ``` ## Commands | Command | Description | | --------------------------------- | ------------------------------------------- | | `./run.sh serve` | Start persistent FastAPI server | | `./run.sh embed --text "..."` | Embed single text (uses service if running) | | `./run.sh embed --file input.txt` | Embed file contents | | `./run.sh info` | Show model, device, service status | ## Configuration | Variable | Default | Description | | ----------------------- | ----------------------- | --------------
- Architecture
- Quick Start
- Commands
- Configuration
- Swapping Models
- API Endpoints
- POST /embed
- POST /embed/batch
- GET /info
- Integration Examples
- ArangoDB Semantic Search
- From Memory Skill
- Cold Start
Start the service (first run loads model ~5-10s) Embed text (CLI) Embed via HTTP (after service is running) curl -X POST http://127.0.0.1:8602/embed -H "Content-Type: application/json" \ Use a different model for this project export EMBEDDING_MODEL="nomic-ai/nomic-embed-text-v1" Or for GPU-accelerated export EMBEDDING_MODEL="intfloat/e5-large-v2" export EMBEDDING_DEVICE="cuda" export EMBEDDING_SERVICE_URL="http://127.0.0.1:8602"
What does the embedding skill do?
Standalone embedding service for semantic search. Runs as persistent FastAPI server for millisecond-latency embeddings. Supports model swapping via env vars. Use when you need vectors for any database (ArangoDB, Pinecone, etc).
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill embedding --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
