Agent skill · Content & Marketing

embed-content

Use when you need to manage project embeddings - embed skills, agents, commands, and MCP tools for semantic discovery. Handles rate limiting, incremental updates, and status reporting. Do NOT use if you just want to search for content - use the semantic router directly instead.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill pop-embed-content --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/ai-llm/pop-embed-content/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

# Embed Content ## Overview Manage embeddings for project-local content including skills, agents, commands, and MCP tools. Enables semantic search and discovery of project-specific items. **Core principle:** Make project content discoverable via semantic search. **Trigger:** `/popkit:project embed` command or auto-invoked by generators ## Arguments | Flag | Description | | --------------- | ------------------------------------------------------------- | | `--status` | Show embedding status without embedding | | `--force` | Re-embed all content (ignore cache) | | `--export` | Export embeddings to .claude/tool_embeddings.json | | `--type <type>` | Only embed specific type: `skill`, `agent`, `command`, `tool` | ## Process ### Step 1: Discover Content Scan project for embeddable items: ```python import sys from pathlib import Path # No longer needed - install popkit-shared instead from embedding_project import scan_project_items # Scan locations: # - .claude/skills/*/SKILL.md → project-skill # - .claude/agents/*/AGENT.md → project-agent # - .claude/commands/*.md → project-command # - .generated/skills/*/SKILL.md → generated-skill # - .generated/agents/*/AGENT.md → generated-agent # - M

What's inside
Steps it walks through
  1. Overview
  2. Arguments
  3. Process
  4. Step 1: Discover Content
  5. Step 2: Check Status
  6. Step 3: Compute Embeddings
  7. Step 4: Export for MCP
  8. Output Formats
  9. Status Mode (--status)
  10. Embed Mode (default)
  11. Export Mode (--export)
  12. Rate Limiting
  13. Error Handling
  14. Integration
Ships with 1 file
  • metadata.json
Commands it runs
Check what needs embedding
Embed all new/changed items
Force re-embed everything
Embed only skills
Export for MCP server
More from claude-skill-registry
All skills →
About this skill
What does the embed-content skill do?

Use when you need to manage project embeddings - embed skills, agents, commands, and MCP tools for semantic discovery. Handles rate limiting, incremental updates, and status reporting. Do NOT use if you just want to search for content - use the semantic router directly instead.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill pop-embed-content --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