원클릭으로
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