Skip to main content

skill-pull

Pull skills dynamically via the skill-puller sidecar

跳到安装

来源信息

仓库
redhat-et/docsclaw
最近来源活动
2026年6月2日 00:07
检测到的 SKILL.md 语言
英语
星标
2
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
skill-pull
description
Pull skills dynamically via the skill-puller sidecar
# Skill pull You can pull additional skills at runtime using the skill-puller sidecar running at `http://localhost:9100`. ## Pull a skill from a URL When you know the direct URL to a SKILL.md file: ```bash curl -s -X POST http://localhost:9100/skills/pull \ -H "Content-Type: application/json" \ -d '{"source": "url", "ref": "URL_TO_SKILL_MD"}' ``` ## Pull a skill from GitHub When the skill is in a GitHub repository, use the format `owner/repo/path/to/skill`: ```bash curl -s -X POST http://localhost:9100/skills/pull \ -H "Content-Type: application/json" \ -d '{"source": "github", "ref": "owner/repo/path/to/skill", "version": "main"}' ``` The `version` field is optional and defaults to `main`. You can use any branch name or tag. ## List available skills To see which skills have been pulled: ```bash curl -s http://localhost:9100/skills/list ``` ## Notes - Pulled skills appear in your skills directory automatically. - You cannot modify pulled skills — they are read-only. - If a skill with the same name already exists, it will be overwritten by the new version.
在 GitHub 查看