yusyus
|
9806b62a9b
|
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)
|
2025-12-28 21:55:07 +03:00 |
|
yusyus
|
66719cd53a
|
Fix CLI path references in documentation
Following PR #145 which fixed README.md, this commit corrects all
remaining documentation files to use the correct cli/ directory prefix
for Python scripts.
Changes:
- QUICKSTART.md: Fixed 21 occurrences (doc_scraper.py, enhance_skill_local.py, package_skill.py)
- docs/UPLOAD_GUIDE.md: Fixed 10 occurrences (doc_scraper.py, enhance_skill_local.py, package_skill.py)
- docs/ENHANCEMENT.md: Fixed 9 occurrences (doc_scraper.py, enhance_skill.py, enhance_skill_local.py)
All commands now correctly reference:
- python3 cli/doc_scraper.py (not python3 doc_scraper.py)
- python3 cli/enhance_skill.py (not python3 enhance_skill.py)
- python3 cli/enhance_skill_local.py (not python3 enhance_skill_local.py)
- python3 cli/package_skill.py (not python3 package_skill.py)
- python3 cli/estimate_pages.py (not python3 estimate_pages.py)
This ensures all documentation examples work correctly when run from
the repository root directory.
Related: PR #145
|
2025-10-22 21:33:47 +03:00 |
|