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.
npx agentmods add skills/dimetron/pi-go/skill-pullnpx skills add dimetron/pi-go --skill skill-pullgit clone --depth 1 https://github.com/dimetron/pi-goWhat 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.
| Model | Per session | Once 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 |
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.
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
- Parse the source argument
- For GitHub repos, use
git clone --depth 1into a temp directory - Find skill directories: look for
skills/*/SKILL.mdor.pi-go/skills/*/SKILL.mdin the cloned repo - 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
- Copy the entire skill directory (SKILL.md + any bundled files) to
- Clean up temp directory
- 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
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.
- 2d ago First seen · 44 lines · 28 tokens per session scan A 8075c2fa3822
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.
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.
learn-from-history
审计近期对话历史,提炼重复失败、成功模式、稳定规则和 skill 改进。用户要求总结历史对话、 回顾近期 agent 表现、从历史中学习或寻找可自动化改进时使用。.
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.
auto-converge
通过外部对标+对抗迭代让规则/技能/SKILL.md 收敛到可执行状态。 当用户说"打磨这个 skill""收敛规则""这个 skill 写出来不 work,帮我调" "怎么让 agent 严格按规则执行"时触发。 也适用于任何需要把一份规则文档从"写完了但 agent 不遵守" 变成"agent 能稳定执行"的场景。.
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.
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…