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.
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.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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
- Overview
- Arguments
- Process
- Step 1: Discover Content
- Step 2: Check Status
- Step 3: Compute Embeddings
- Step 4: Export for MCP
- Output Formats
- Status Mode (--status)
- Embed Mode (default)
- Export Mode (--export)
- Rate Limiting
- Error Handling
- Integration
Check what needs embedding Embed all new/changed items Force re-embed everything Embed only skills Export for MCP server
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.
