Skill Seekers
Automatically converts any documentation website into a Claude AI skill in minutes.
Automatically converts any documentation website into a Claude AI skill in minutes.
Real data. Real impact.
High adoption
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Automatically convert documentation websites, GitHub repositories, and PDFs into Claude AI skills in minutes.
📋 View Development Roadmap & Tasks - 134 tasks across 10 categories, pick any to contribute!
Skill Seeker is an automated tool that transforms documentation websites, GitHub repositories, and PDF files into production-ready Claude AI skills. Instead of manually reading and summarizing documentation, Skill Seeker:
.zip file for ClaudeResult: Get comprehensive Claude skills for any framework, API, or tool in 20-40 minutes instead of hours of manual work.
# Scrape documentation website skill-seekers scrape --config configs/react.json # Quick scrape without config skill-seekers scrape --url https://react.dev --name react # With async mode (3x faster) skill-seekers scrape --config configs/godot.json --async --workers 8
#!/bin/bash # HTTP Transport Examples for Skill Seeker MCP Server # # This script shows various ways to start the server with HTTP transport. # DO NOT run this script directly - copy the commands you need. # ============================================================================= # BASIC USAGE # ============================================================================= # Default stdio transport (backward compatible) python -m skill_seekers.mcp.server_fastmcp # HTTP transport on default port 8000 python -m skill_seekers.mcp.server_fastmcp --http # ============================================================================= # CUSTOM PORT # ============================================================================= # HTTP transport on port 3000 python -m skill_seekers.mcp.server_fastmcp --http --port 3000 # HTTP transport on port 8080 python -m skill_seekers.mcp.server_fastmcp --http --port 8080 # ==========================================================================
#!/usr/bin/env python3 """ Manual test script for HTTP transport. This script starts the MCP server in HTTP mode and tests the endpoints. Usage: python examples/test_http_server.py """ import asyncio import subprocess import time import sys import requests async def test_http_server(): """Test the HTTP server.""" print("=" * 60) print("Testing Skill Seeker MCP Server - HTTP Transport") print("=" * 60) print() # Start the server in the background print("1. Starting HTTP server on port 8765...") server_process = subprocess.Popen( [ sys.executable, "-m", "skill_seekers.mcp.server_fastmcp", "--http", "--port", "8765", ], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, ) # Wait for server to start print("2. Waiting for server to start...") time.sleep(3) try: # Test health endpoint print("3.
Unknown
No automatic installation available. Please visit the source repository for installation instructions.
View Installation InstructionsThe Claude Code Skills Marketplace
Discover and install production-ready AI capabilities in 60 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.