一键导入
skill-pull
Pull skills dynamically via the skill-puller sidecar
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Pull skills dynamically via the skill-puller sidecar
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit checklists for consistency against a corporate standard. Identifies gaps, inconsistencies, and missing steps. Use when verifying process documents across departments.
Compare policy documents side by side. Produces a structured comparison matrix. Use when analyzing policies from multiple sources against a baseline.
Screen resumes against a job description. Scores candidates on qualification alignment, experience match, and fit. Use when HR uploads resumes for a job opening.
Review code files for bugs, style, and security issues
Fetch a URL and produce a structured summary
Convert PDF documents to text and summarize them
| name | skill-pull |
| description | Pull skills dynamically via the skill-puller sidecar |
You can pull additional skills at runtime using the skill-puller
sidecar running at http://localhost:9100.
When you know the direct URL to a SKILL.md file:
curl -s -X POST http://localhost:9100/skills/pull \
-H "Content-Type: application/json" \
-d '{"source": "url", "ref": "URL_TO_SKILL_MD"}'
When the skill is in a GitHub repository, use the format
owner/repo/path/to/skill:
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.
To see which skills have been pulled:
curl -s http://localhost:9100/skills/list