ワンクリックで
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