2 Commits

Author SHA1 Message Date
yusyus
5ac50aeb80 fix(#301): use python3 -m pip instead of bare pip3 in setup.sh
Bare `pip3` can point to a different Python installation than `python3`.
On the reporter's macOS, python3 was 3.14 but pip3 was linked to 3.9,
causing "no matching distribution" since skill-seekers requires >=3.10.

Using `python3 -m pip` guarantees the same interpreter that passed the
version check is the one performing the install.

Closes #301

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 22:33:29 +03:00
yusyus
1b19c8503a feat: Add global setup script with FastMCP support
Created new setup.sh that installs skill-seekers GLOBALLY from PyPI
(not editable local install like setup_mcp.sh).

Key Improvements:
 Global install: pip3 install skill-seekers (from PyPI)
 FastMCP server: Uses new server_fastmcp module
 Proper server command: python3 -m skill_seekers.mcp.server_fastmcp
 HTTP transport: --transport http --port <PORT> (updated flags)
 Auto-detection: Detects Claude Code, Cursor, Windsurf, Cline, etc.
 Fallback handling: --break-system-packages for system Python

Differences from setup_mcp.sh:
- setup_mcp.sh: Editable install (pip install -e .) - for development
- setup.sh: Global install (pip install skill-seekers) - for users

Usage:
  bash setup.sh

After installation, skill-seekers will be available globally:
  skill-seekers --help
  skill-seekers scrape --config react.json
  skill-seekers install --config godot.json

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-13 21:51:37 +03:00