skill-pull

A command that downloads skills from a GitHub repository or a direct SKILL.md file into the local skills directory. Skills are reusable instructions that guide the coding agent through a task.

In plain words
What is it for?
Use it to install all compatible skills from a repository, or pull one named skill into .pi-go/skills/.
Why use it?
It avoids manually finding and copying shared skill folders. It also lets you select one skill and warns before skipping an existing local copy.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/dimetron/pi-go/skill-pull
Any agent
npx skills add dimetron/pi-go --skill skill-pull
Clone the repo
git clone --depth 1 https://github.com/dimetron/pi-go

Made for: Claude Code, Codex.

Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 360 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00028 $0.00360
Opus 5 $0.00014 $0.00180
Sonnet 5 $0.00006 $0.00072
Haiku 4.5 $0.00003 $0.00036

Measured 2d ago against content hash 8075c2fa3822, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skill-pull scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.pi-go/skills/skill-pull/SKILL.md · 44 lines

What it actually says

Skill Pull

Download and install skills from a remote source into .pi-go/skills/.

Usage

/skill-pull <source> [skill-name]

Where source can be:

  • GitHub shorthand: user/repo
  • GitHub URL: https://github.com/user/repo
  • Raw URL to a SKILL.md file

If skill-name is provided, only pull that specific skill.

Steps

  1. Parse the source argument
  2. For GitHub repos, use git clone --depth 1 into a temp directory
  3. Find skill directories: look for skills/*/SKILL.md or .pi-go/skills/*/SKILL.md in the cloned repo
  4. For each found skill directory:
    • Copy the entire skill directory (SKILL.md + any bundled files) to .pi-go/skills/<name>/
    • If skill-name filter was given, only copy matching skills
    • If a skill with the same name exists locally, warn and skip unless the user confirms
  5. Clean up temp directory
  6. Report what was pulled

Examples

  • /skill-pull user/repo — Pull all skills from a GitHub repo
  • /skill-pull user/repo my-skill — Pull only the my-skill skill
  • /skill-pull anthropics/skills — Pull from the official Anthropic skills repo

Guidelines

  • Always clean up temp directories after cloning
  • Never overwrite existing skills without user confirmation
  • Report clearly what was installed and from where
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 44 lines · 28 tokens per session scan A 8075c2fa3822

Subscribe to this mod's changes

skill-pull is a skill published in the GitHub repository dimetron/pi-go (148 stars, last pushed 3d ago), licensed MIT. It adds 28 tokens to every session and 360 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

self-build

Builds isolated npm capability packages that operate on real project code and connects them to Peri through MCP/MCPP and MetaHarness. Use when adding tools, resources, remote skills or agents, creating a Bun/Node.js stdio server, linking .mcp.json, or changing the active prompt and middleware set.

KonghaYao/peri · 66 tokens

learn-from-history

审计近期对话历史,提炼重复失败、成功模式、稳定规则和 skill 改进。用户要求总结历史对话、 回顾近期 agent 表现、从历史中学习或寻找可自动化改进时使用。.

KonghaYao/peri · 55 tokens

ultracode

Multi-agent workflow orchestration. Use when the user says "ultracode", "workflow", "parallel agents", "pipeline", or asks to orchestrate multiple agents for complex tasks. Also use when the user wants to break work into phases or parallel streams.

KonghaYao/peri · 58 tokens

auto-converge

通过外部对标+对抗迭代让规则/技能/SKILL.md 收敛到可执行状态。 当用户说"打磨这个 skill""收敛规则""这个 skill 写出来不 work,帮我调" "怎么让 agent 严格按规则执行"时触发。 也适用于任何需要把一份规则文档从"写完了但 agent 不遵守" 变成"agent 能稳定执行"的场景。.

KonghaYao/peri · 108 tokens

programmatic-tool-calling

Use programmatic tool calling to discover extra tools, compose multiple tool calls in ESM code, and return a compact JSON-compatible result.

KonghaYao/peri · 33 tokens

plugin-creator

Create and scaffold plugin directories for Codex with a required .codex-plugin/plugin.json, optional plugin folders/files, valid manifest defaults, and personal-marketplace entries by default. Use when Codex needs to create a new personal plugin, add optional plugin structure, generate or update marketplace entries…

openinterpreter/openinterpreter · 86 tokens