skill-seekers create
The create command is the primary entry point for creating AI skills. It auto-detects the source type and routes to the appropriate extractor.
Usage
skill-seekers create <source> [options]
Source Auto-Detection
The SourceDetector identifies the source type in this order:
- File extension —
.pdf,.docx,.epub,.ipynb,.html,.pptx,.adoc,.rss,.atom,.yaml/.yml(with OpenAPI content sniffing),.1-.8/.man - Video URL — YouTube, Vimeo patterns
- Directory —
os.path.isdir()→ local codebase - GitHub pattern —
owner/repoorgithub.comURLs - HTTP/HTTPS URL — Documentation website
- Bare domain — Inferred as documentation
Examples
# Documentation website
skill-seekers create https://react.dev
# GitHub repository
skill-seekers create facebook/react
# PDF document
skill-seekers create manual.pdf
# Local codebase
skill-seekers create ./my-project
# Jupyter Notebook
skill-seekers create notebook.ipynb
# OpenAPI spec
skill-seekers create openapi.yaml
# Word document
skill-seekers create report.docx
# EPUB e-book
skill-seekers create book.epub
# PowerPoint
skill-seekers create presentation.pptx
Key Options
| Flag | Description |
|---|---|
--target <platform> | Output platform (claude, gemini, openai, langchain, etc.) |
--agent <name> | AI agent for enhancement (claude, kimi, codex, copilot, opencode) |
--agent-cmd <cmd> | Custom agent command |
--enhance-level <0-3> | Enhancement depth (0=none, 1=basic, 2=architecture, 3=full) |
--enhance-workflow <name> | Apply workflow preset |
--browser | Enable Playwright rendering for SPA sites |
--name <name> | Override skill name |
--max-pages <n> | Limit pages to scrape (default: 500) |
Pipeline
The create command follows this pipeline:
SourceDetector.detect(source)— Identify source typeExecutionContext.initialize()— Set up configuration singletonget_converter(type, config)— Factory creates appropriate converterconverter.run()— Extract + build skill (Template Method pattern)_run_enhancement(ctx)— AI enhancement (if enabled)_run_workflows()— Apply workflow presets
See Architecture Diagrams for the full sequence diagram.