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/phil65/agentpool/example-skillnpx skills add phil65/agentpool --skill example-skillgit clone --depth 1 https://github.com/phil65/agentpoolWhat 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.00029 | $0.00254 |
| Opus 5 | $0.00015 | $0.00127 |
| Sonnet 5 | $0.00006 | $0.00051 |
| Haiku 4.5 | $0.00003 | $0.00025 |
Grade A, and why
Example Skill 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 yesterday.
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
Example Skill
Overview
This is an example skill that demonstrates the basic structure of a Claude Code Skill. It shows how to organize instructions, provide examples, and reference additional resources.
Quick Start
When using this skill, follow these steps:
- Identify the task: Determine what specific functionality is needed
- Check resources: Look for additional files in the skill directory
- Follow patterns: Use the examples provided as templates
Examples
Basic Usage
# Example of how this skill might be used
def example_function():
print("This is an example from the skill")
return "skill_result"
Advanced Usage
# Command line example
echo "Running skill example"
Additional Resources
This skill may contain additional files:
helpers.py: Utility functionstemplates/: Example templatesdocs/: Extended documentation
Best Practices
- Always validate inputs
- Provide clear error messages
- Document any assumptions
- Test functionality before deployment
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.
- yesterday First seen · 48 lines · 29 tokens per session scan A ddbecc93d031
Example Skill is a skill published in the GitHub repository phil65/agentpool (184 stars, last pushed 4mo ago), licensed MIT. It adds 29 tokens to every session and 254 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
add-archon-model
Guide for adding a new model to the Archon engine. Use when user wants to add support for a new HuggingFace model architecture in ArchonEngine.
add-dataset
Guide for adding a new dataset loader to AReaL. Use when user wants to add a new dataset.
add-unit-tests
Guide for adding unit tests to AReaL. Use when user wants to add tests for new functionality or increase test coverage.
commit-conventions
AReaL commit message conventions. MUST load on every git commit -- provides Conventional Commits format with scope inference from file paths.
debug-distributed
Guide for debugging distributed training issues in AReaL. Use when user encounters hangs, wrong results, OOM, or communication errors.
add-reward
Guide for adding a new reward function to AReaL. Use when user wants to create a reward function.