Files
skill-seekers-reference/distribution/claude-plugin/commands/install-skill.md
yusyus 5e4932e8b1 feat: add distribution files for Smithery, GitHub Action, and Claude Code Plugin
- 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
2026-03-16 23:29:50 +03:00

45 lines
1.3 KiB
Markdown

---
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`:
1. Determine if the argument is a config preset name, config file path, or a direct source.
2. Use the `install_skill` MCP tool if available, or run the equivalent CLI commands:
```bash
# For preset configs
skill-seekers install --config "$CONFIG" --target "$TARGET"
# For direct sources
skill-seekers create "$SOURCE" --target "$TARGET"
```
3. If `--enhance` is specified, run enhancement after initial scraping:
```bash
skill-seekers enhance "$SKILL_DIR" --target "$TARGET"
```
4. 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
```