skill-builder
Automatically detect source types and build AI skills using Skill Seekers. Use when the user wants to create skills from documentation, repos, PDFs,…
它会碰到什么
逐条看命中(1 条严重或高危)
- 高
SKILL.md:16identity-config-write- Installed as the Skill Seekers plugin? Nothing to do — the plugin's bundled `.mcp.json` starts the server automatically (it still needs step 1).
这一栏是扫描器报的事实,不是结论。命中多不等于有毒(安全工具、规则库、示例脚本本来就会包含危险写法),命中少也不等于干净。它和你手上的凭据、文件、网络有什么关系,需要你自己看。
技能内容
Skill Builder
This skill uses the Skill Seekers MCP server, which provides 40 tools for converting knowledge sources into AI-ready skills. If the MCP tools are not available, use the CLI fallback at the bottom of this file instead — do not stop.
Prerequisites
The MCP tools below only work when the Skill Seekers MCP server is connected:
- Install the package:
pip install "skill-seekers[mcp]" - Connect the server:
- Installed as the Skill Seekers plugin? Nothing to do — the plugin's bundled
.mcp.jsonstarts the server automatically (it still needs step 1). - Installed standalone (e.g. copied into
~/.claude/skills/)? Register the server once:claude mcp add skill-seekers -- python -m skill_seekers.mcp.server_fastmcp
If tools like scrape_docs or package_skill are not in your tool list, the server is not connected. Tell the user about the two steps above, and use the CLI fallback in the meantime.
When to Use This Skill
Use this skill when the user:
- Wants to create an AI skill from a documentation site, GitHub repo, PDF, video, or other source
- Needs to convert documentation into a format suitable for LLM consumption
- Wants to update or sync existing skills with their source documentation
- Needs to export skills to vector databases (Weaviate, Chroma, FAISS, Qdrant)
- Asks about scraping, converting, or packaging documentation for AI
Source Type Detection
Automatically detect the source type from user input:
| Input Pattern | Source Type | Tool to Use |
|---------------|-------------|-------------|
| https://... (not GitHub/YouTube) | Documentation | scrape_docs |
| owner/repo or github.com/... | GitHub | scrape_github |
| *.pdf | PDF | scrape_pdf |
| YouTube/Vimeo URL or video file | Video | scrape_video |
| Local directory path | Codebase | scrape_codebase |
| .ipynb, .html, .yaml (OpenAPI), .adoc, .pptx, .rss, *.1-.8 | Various | scrape_generic |
| JSON config file | Unified | Use config with scrape_docs |
Recommended Workflow
- Detect source type from the user's input
- Generate or fetch config using
generate_configorfetch_configif needed - Estimate scope with
estimate_pagesfor documentation sites - Scrape the source using the appropriate scraping tool
- Enhance with
enhance_skillif the user wants AI-powered improvements - Package with
package_skillfor the target platform - Export to vector DB if requested using
export_to_*tools
Available MCP Tools
Config Management
generate_config— Generate a scraping config from a URLlist_configs— List available preset configsvalidate_config— Validate a config file
Scraping (use based on source type)
scrape_docs— Documentation sitesscrape_github— GitHub repositoriesscrape_pdf— PDF filesscrape_video— Video transcriptsscrape_codebase— Local code analysisscrape_generic— Jupyter, HTML, OpenAPI, AsciiDoc, PPTX, RSS, manpage, Confluence, Notion, chat
Post-processing
enhance_skill— AI-powered skill enhancementpackage_skill— Package for target platformupload_skill— Upload to platform APIinstall_skill— End-to-end install workflow
Advanced
detect_patterns— Design pattern detection in codeextract_test_examples— Extract usage examples from testsbuild_how_to_guides— Generate how-to guides from testssplit_config— Split large configs into focused skillsexport_to_weaviate,export_to_chroma,export_to_faiss,export_to_qdrant— Vector DB export
CLI Fallback (MCP server not connected)
The same pipeline is available from the command line (requires pip install skill-seekers). Run it with the Bash tool:
skill-seekers create <source> # auto-detects: URL, owner/repo, ./path, file.pdf, video URL, ...
skill-seekers package <skill_dir> --target claude # or gemini/openai/langchain/chroma/...
create covers detection, scraping, and building in one step; add --enhance-level 0 to skip AI enhancement. After it finishes, read the generated SKILL.md and summarize what was created.
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。
它属于哪个仓库
distribution/claude-plugin/skills/skill-builder/SKILL.md同一个仓库里的其他技能
同名技能的其他版本
有 2 个不同仓库或目录里都有叫 skill-builder 的技能。它们内容并不相同,别混用:
- yusufkaraaslan/Skill_Seekers — Automatically detect source types and build AI skills using Skill Seekers. Use when the us