docs: Update all documentation for multi-platform feature parity

Complete documentation update to reflect multi-platform support across
all 4 platforms (Claude, Gemini, OpenAI, Markdown).

Changes:
- src/skill_seekers/mcp/README.md:
  * Fixed tool count (10 → 18 tools)
  * Added enhance_skill tool documentation
  * Updated package_skill docs with target parameter
  * Updated upload_skill docs with target parameter
  * Updated tool numbering after adding enhance_skill

- docs/MCP_SETUP.md:
  * Updated packaging tools section (3 → 4 tools)
  * Added enhance_skill to tool lists
  * Added Example 4: Multi-Platform Support
  * Shows target parameter usage for all platforms

- docs/ENHANCEMENT.md:
  * Added comprehensive Multi-Platform Enhancement section
  * Documented Claude (local + API modes)
  * Documented Gemini (API mode, model, format)
  * Documented OpenAI (API mode, model, format)
  * Added platform comparison table
  * Updated See Also links

- docs/UPLOAD_GUIDE.md:
  * Complete rewrite for multi-platform support
  * Detailed guides for all 4 platforms
  * Claude AI: API + manual upload methods
  * Google Gemini: tar.gz format, Files API
  * OpenAI ChatGPT: Vector Store, Assistants API
  * Generic Markdown: Universal export, manual distribution
  * Added platform comparison tables
  * Added troubleshooting for all platforms

All docs now accurately reflect the feature parity implementation.
Users can now find complete information about packaging, uploading,
and enhancing skills for any platform.

Related: Feature parity implementation (commits 891ce2d, 2ec2840)
This commit is contained in:
yusyus
2025-12-28 21:55:07 +03:00
parent 2ec2840396
commit 9806b62a9b
4 changed files with 566 additions and 314 deletions

View File

@@ -64,10 +64,11 @@ Step-by-step guide to set up the Skill Seeker MCP server with 5 supported AI cod
- `scrape_github` - Scrape GitHub repositories
- `scrape_pdf` - Extract content from PDF files
**Packaging Tools (3):**
- `package_skill` - Package skill into .zip file
- `upload_skill` - Upload .zip to Claude AI (NEW)
- `install_skill` - Install skill to AI coding agents (NEW)
**Packaging Tools (4):**
- `package_skill` - Package skill (supports multi-platform via `target` parameter)
- `upload_skill` - Upload to LLM platform (claude, gemini, openai)
- `enhance_skill` - AI-enhance SKILL.md (NEW - local or API mode)
- `install_skill` - Complete install workflow
**Splitting Tools (2):**
- `split_config` - Split large documentation configs
@@ -603,9 +604,10 @@ You should see **17 Skill Seeker tools**:
- `scrape_pdf` - Extract PDF content
**Packaging Tools:**
- `package_skill` - Package skill into .zip
- `upload_skill` - Upload to Claude AI
- `install_skill` - Install to AI agents
- `package_skill` - Package skill (multi-platform support)
- `upload_skill` - Upload to LLM platform
- `enhance_skill` - AI-enhance SKILL.md
- `install_skill` - Complete install workflow
**Splitting Tools:**
- `split_config` - Split large configs
@@ -743,6 +745,46 @@ User: Scrape docs using configs/internal-api.json
Agent: [Scraping internal documentation...]
```
### Example 4: Multi-Platform Support
Skill Seekers supports packaging and uploading to 4 LLM platforms: Claude AI, Google Gemini, OpenAI ChatGPT, and Generic Markdown.
```
User: Scrape docs using configs/react.json
Agent: ✅ Skill created at output/react/
User: Package skill at output/react/ with target gemini
Agent: ✅ Packaged for Google Gemini
Saved to: output/react-gemini.tar.gz
Format: tar.gz (Gemini-specific format)
User: Package skill at output/react/ with target openai
Agent: ✅ Packaged for OpenAI ChatGPT
Saved to: output/react-openai.zip
Format: ZIP with vector store
User: Enhance skill at output/react/ with target gemini and mode api
Agent: ✅ Enhanced with Gemini 2.0 Flash
Backup: output/react/SKILL.md.backup
Enhanced: output/react/SKILL.md
User: Upload output/react-gemini.tar.gz with target gemini
Agent: ✅ Uploaded to Google Gemini
Skill ID: gemini_12345
Access at: https://aistudio.google.com/
```
**Available platforms:**
- `claude` (default) - ZIP format, Anthropic Skills API
- `gemini` - tar.gz format, Google Files API
- `openai` - ZIP format, OpenAI Assistants API + Vector Store
- `markdown` - ZIP format, generic export (no upload)
---
## Troubleshooting