This repository stores skill-seekers JSON configuration files and local workflow notes for generating AI skills from technical documentation.
It is based on the workflow supported by yusufkaraaslan/Skill_Seekers. This repository does not vendor or replace the skill-seekers CLI.
Install skill-seekers before using this repository.
Use the current installation instructions in the upstream project:
Do not rely on installation commands copied into this repository, because the upstream installation flow may change. After installing, confirm the CLI is available:
skill-seekers --helpconfigs/ Skill Seekers JSON config files
docs/ Workflow notes and reusable prompts
output/ Local generated skills and packages
The output/, cache, virtual environment, and browser directories are local working artifacts. Keep generated or machine-specific files out of shared changes unless there is a deliberate reason to publish them.
-
Create or download a JSON config.
- Community configs can be downloaded from skillseekersweb.com/configs.
- Custom configs can be generated with the prompt in docs/config-generation-prompt.md.
-
Put the config file in
configs/. -
From the repository root, run:
skill-seekers create ./configs/<config-name>.json-
Review the generated output under
output/. -
Package or install the generated skill using the current commands documented by the upstream
Skill_Seekersproject.
Config files should be production-ready JSON:
- Use lowercase kebab-case file names, for example
typescript.jsonoraps-automation-api.json. - Keep each config focused on official documentation or a clearly scoped source.
- Prefer precise
base_url,start_urls, selectors, include patterns, exclude patterns, and categories. - Avoid broad crawls that include marketing, pricing, community, account, careers, unrelated blog content, or duplicated localized docs.
- Do not include secrets, tokens, cookies, private URLs, or local machine paths.
- Validate JSON syntax before opening a pull request.
This repository is a companion collection for Skill Seekers configs. The CLI, scraper, packaging behavior, and installation process are owned by the upstream Skill Seekers project.
This repository is licensed under the MIT License. See LICENSE.