Agent skill

embedding-service

文本向量化(Embedding)基础服务。将自然语言转换为高维稠密向量,为语义搜索、聚类分析、推荐系统等下游任务提供核心数据支持。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill embedding-service-lin-a1-skills-agent --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 1 KB
Bundled scripts: none
Path: skills/ai-ml/embedding-service-lin-a1-skills-agent/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## 功能 将输入文本转换为高维向量表示,用于语义相似度计算、聚类分析等下游任务。 ## 调用方式 ```python from services.embedding_service.client import EmbeddingServiceClient client = EmbeddingServiceClient() # 单个文本向量化 vector = client.embed_query("人工智能") # -> list[float] # 多个文本向量化 texts = ["机器学习", "深度学习", "自然语言处理"] vectors = client.embed_documents(texts) # -> list[list[float]] ``` ## 返回格式 ```json { "object": "list", "data": [ { "object": "embedding", "index": 0, "embedding": [-0.031, -0.016, -0.007, ...] } ], "model": "Qwen/Qwen3-Embedding-0.6B" } ```

What's inside
Steps it walks through
  1. 功能
  2. 调用方式
  3. 返回格式
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the embedding-service skill do?

文本向量化(Embedding)基础服务。将自然语言转换为高维稠密向量,为语义搜索、聚类分析、推荐系统等下游任务提供核心数据支持。

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill embedding-service-lin-a1-skills-agent --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.

Keep going