원클릭으로
user
Using skillet as a skill consumer. Covers searching, browsing, and using skills as MCP prompts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Using skillet as a skill consumer. Covers searching, browsing, and using skills as MCP prompts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Curated directory of external skill repositories. Use when the user needs skills not available locally, or to suggest adding new skill sources.
Contributing to skillet itself. Covers architecture, development setup, testing, and PR workflow.
Creating and maintaining skill repos. Covers setup, directory layout, PR review, multi-repo, and hosting.
Set up and configure Skillet skill discovery. Use when the user wants to set up skillet, configure repos, or customize server behavior.
Authoring skills for skillet. Covers the skill format, discovery via suggest, and project manifests.
| name | user |
| description | Using skillet as a skill consumer. Covers searching, browsing, and using skills as MCP prompts. |
| version | 2026.02.27 |
| trigger | Use when the user wants to search for skills, install skills, configure skillet, or manage their skill library |
| license | MIT OR Apache-2.0 |
| author | Josh Rotenberg |
| categories | ["tools","configuration"] |
| tags | ["skillet","skills","mcp","install","search"] |
Skillet is an MCP-native skill discovery toolkit. This skill covers using skillet as a consumer: finding and using skills at runtime via MCP prompts.
MCP server (recommended) -- add to .mcp.json or ~/.claude/settings.json:
{
"mcpServers": {
"skillet": {
"command": "skillet",
"args": ["serve"]
}
}
}
Install the binary:
cargo install skillet-mcp
Docker (no install needed):
{
"mcpServers": {
"skillet": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/joshrotenberg/skillet:latest"]
}
}
}
CLI:
skillet search "rust development"
skillet search "*" --category development
skillet search "*" --tag pytest
skillet search "*" --owner joshrotenberg
MCP tools (when running as server):
search_skills(query) -- full-text BM25 search over skill metadata and contentlist_categories() -- browse available categories with countslist_skills_by_owner(owner) -- list all skills by a publisherinfo_skill(owner_name) -- detailed information about a specific skillSkills are served as MCP prompts. An agent connects to skillet, searches for a relevant skill, and uses it as a prompt for the current session. No files written, no restart needed.
1. search_skills("rust development")
2. Use the skill prompt for joshrotenberg/rust-dev
3. Follow the skill's instructions
Skillet is configured via ~/.config/skillet/config.toml and CLI flags.
Adding custom repos:
skillet serve --remote https://github.com/org/skills.git
Config file (~/.config/skillet/config.toml):
[repos]
remote = ["https://github.com/org/skills.git"]
[server]
discover_local = false
To skip the official repo, use --no-official-repo.
If you prefer a specific workflow, tell your agent: