- Add Claude Code Plugin: plugin.json, .mcp.json, 3 slash commands, skill-builder agent skill - Add GitHub Action: composite action.yml with 6 inputs/2 outputs, comprehensive README - Add Smithery: publishing guide with namespace yusufkaraaslan/skill-seekers created - Add render-mcp.yaml for MCP server deployment on Render - Fix Dockerfile.mcp: --transport flag (nonexistent) → --http, add dynamic PORT support - Update AGENTS.md to v3.3.0 with corrected test count and expanded CI section - Allow distribution/claude-plugin/.mcp.json in .gitignore
1.3 KiB
1.3 KiB
description
| description |
|---|
| One-command skill installation — fetch config, scrape, enhance, package, and install |
Install Skill
Complete end-to-end workflow: fetch a config (from preset or URL), scrape the source, optionally enhance with AI, package for the target platform, and install.
Usage
/skill-seekers:install-skill <config-or-source> [--target <platform>] [--enhance]
Instructions
When the user provides a source or config via $ARGUMENTS:
- Determine if the argument is a config preset name, config file path, or a direct source.
- Use the
install_skillMCP tool if available, or run the equivalent CLI commands:# For preset configs skill-seekers install --config "$CONFIG" --target "$TARGET" # For direct sources skill-seekers create "$SOURCE" --target "$TARGET" - If
--enhanceis specified, run enhancement after initial scraping:skill-seekers enhance "$SKILL_DIR" --target "$TARGET" - Report the final skill location and how to use it.
Target Platforms
claude, openai, gemini, langchain, llamaindex, haystack, cursor, windsurf, continue, cline, markdown
Examples
/skill-seekers:install-skill react --target claude
/skill-seekers:install-skill https://fastapi.tiangolo.com --target langchain --enhance
/skill-seekers:install-skill pallets/flask