2cab53bc94
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers CLI - Convert documentation to AI skills dockerfile:Dockerfile name:skill-seekers]) (push) Waiting to run
Docker Publish / Build and Push Docker Images (map[description:Skill Seekers MCP Server - 25 tools for AI assistants dockerfile:Dockerfile.mcp name:skill-seekers-mcp]) (push) Waiting to run
Docker Publish / Test Docker Images (push) Blocked by required conditions
Test Vector Database Adaptors / Test chroma Adaptor (push) Waiting to run
Test Vector Database Adaptors / Test faiss Adaptor (push) Waiting to run
Test Vector Database Adaptors / Test qdrant Adaptor (push) Waiting to run
Test Vector Database Adaptors / Test weaviate Adaptor (push) Waiting to run
Test Vector Database Adaptors / Test MCP Vector DB Tools (push) Waiting to run
Tests / Code Quality (Ruff & Mypy) (push) Waiting to run
Tests / Fast Unit Tests (parallel) (macos-latest, 3.11) (push) Waiting to run
Tests / Fast Unit Tests (parallel) (macos-latest, 3.12) (push) Waiting to run
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.10) (push) Waiting to run
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.11) (push) Waiting to run
Tests / Fast Unit Tests (parallel) (ubuntu-latest, 3.12) (push) Waiting to run
Tests / Tests (push) Blocked by required conditions
Tests / Serial / Integration / E2E Tests (push) Blocked by required conditions
Tests / MCP Server Tests (push) Blocked by required conditions
44 lines
893 B
Markdown
44 lines
893 B
Markdown
---
|
|
name: skill-seekers
|
|
description: Generate LLM skills from documentation, codebases, and GitHub repositories
|
|
---
|
|
|
|
# Skill Seekers
|
|
|
|
## Prerequisites
|
|
|
|
```bash
|
|
pip install skill-seekers
|
|
# Or: uv pip install skill-seekers
|
|
```
|
|
|
|
## Commands
|
|
|
|
| Source | Command |
|
|
|--------|---------|
|
|
| Local code | `skill-seekers create ./path` |
|
|
| Docs URL | `skill-seekers create https://docs.example.com` |
|
|
| GitHub | `skill-seekers create owner/repo` |
|
|
| PDF | `skill-seekers create document.pdf` |
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# Analyze local codebase
|
|
skill-seekers create /path/to/project --name my-skill
|
|
|
|
# Package for Claude
|
|
yes | skill-seekers package output/my-skill/ --no-open
|
|
```
|
|
|
|
## Options
|
|
|
|
| Flag | Description |
|
|
|------|-------------|
|
|
| `--preset quick/standard/comprehensive` | Analysis preset |
|
|
| `--skip-patterns` | Skip pattern detection |
|
|
| `--skip-test-examples` | Skip test extraction |
|
|
|
|
---
|
|
|