yusufkaraaslan

Skill Seekers Action — AI skill for Claude Code

AI community

GitHub Action: Transform docs, repos, PDFs, videos into AI skills and RAG knowledge.

How to install Skill Seekers Action

This entry records only its repository, not the path inside it, so there is no exact command to give. Open yusufkaraaslan/skill-seekers-action and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Skill Seekers Action does

GitHub Action: Transform docs, repos, PDFs, videos into AI skills and RAG knowledge.

Alternatives in AI

  • Skill Seekers Roadmap — Transform Skill Seekers into the easiest way to create Claude AI skills from any knowledge source - documentat 11.1k ★
  • RAG Skill — A Skill dedicated to local knowledge base retrieval 712 ★
  • Guizang Yingzao Skill — 🏯 Claude Code / Codex skill — transform Chinese architecture, cultural places & travel photos into art-direct 396 ★

README

Skill Seekers GitHub Action

Transform documentation, GitHub repos, PDFs, videos, and 13 other source types into AI-ready skills and RAG knowledge — directly in your CI/CD pipeline.

Quick Start

- uses: yusufkaraaslan/skill-seekers-action@v3
  with:
    source: 'https://react.dev'

Inputs

Input Required Default Description
source Yes Source URL, file path, or owner/repo
command No create Command: create, scrape, github, pdf, video, analyze, unified
target No claude Target platform: claude, openai, gemini, langchain, llamaindex, markdown
config No Path to JSON config file
output-dir No output Output directory
extra-args No Additional CLI arguments

Outputs

Output Description
skill-dir Path to the generated skill directory
skill-name Name of the generated skill

Examples

Auto-update documentation skill weekly

name: Update AI Skills
on:
  schedule:
    - cron: '0 6 * * 1'  # Every Monday 6am UTC
  workflow_dispatch:

jobs:
  update-skills:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      - uses: yusufkaraaslan/skill-seekers-action@v3
        with:
          source: 'https://react.dev'
          target: 'langchain'

      - uses: actions/upload-artifact@v4
        with:
          name: react-skill
          path: output/

Generate skill from GitHub repo

- uses: yusufkaraaslan/skill-seekers-action@v3
  with:
    source: 'pallets/flask'
    command: 'github'
    target: 'claude'

Process PDF documentation

- uses: actions/checkout@v4

- uses: yusufkaraaslan/skill-seekers-action@v3
  with:
    source: 'docs/api-reference.pdf'
    command: 'pdf'

Unified multi-source build with config

- uses: actions/checkout@v4

- uses: yusufkaraaslan/skill-s