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 skills add willdady/platypus --skill platypus-toolsgit clone --depth 1 https://github.com/willdady/platypusWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/willdady/platypus/platypus-tools)<a href="https://agentmods.dev/skills/willdady/platypus/platypus-tools"><img src="https://agentmods.dev/badge/skills/willdady/platypus/platypus-tools.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00059 | $0.01615 |
| Opus 5 | $0.00030 | $0.00807 |
| Sonnet 5 | $0.00012 | $0.00323 |
| Haiku 4.5 | $0.00006 | $0.00161 |
Grade A, and why
platypus-tools 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Platypus Tools
Two things make a tool reachable by an Agent: the tool itself, and the contribution that grants it. A tool nobody contributes is dead code.
1. Write the tool
An AI SDK tool() with three parts — description (how the model decides to
call it), inputSchema (a Zod object, every field .describe()d), and
execute (sync or async, returning a structured object).
export const convertTemperature = tool({
description:
"Convert temperature between Fahrenheit, Celsius, and Kelvin. Specify the value and the units to convert from and to.",
inputSchema: z.object({
value: z.number().describe("The temperature value to convert"),
from: z.enum(["fahrenheit", "celsius", "kelvin"]).describe("Convert from"),
to: z.enum(["fahrenheit", "celsius", "kelvin"]).describe("Convert to"),
}),
execute: ({ value, from, to }) => ({ result, unit: to }),
});
Note the shape: enums over a tool per unit pair. Widen a tool's parameters before you multiply tools — every extra name is another choice the model can get wrong.
Return { error: "..." } from a caught failure rather than throwing; the model
reads the result and can recover.
Tool implementations live in the backend's tools directory, one file per
subject area, tests co-located beside them.
2. Contribute the tool set
Tool sets are plugin contributions. Do not reach for registerToolSet —
it is core-internal, and its one remaining caller is the Sandbox set, which is
a Sandbox-backend extension point rather than a native tool set.
Add yours to the contributes.toolSets array of a PlatypusPlugin. Core
plugins live under the backend's plugins directory, split by cohesion: pure
utilities in one, the domain tool sets in another.
export const plugin: PlatypusPlugin = {
name: "@platypus/tools-basic",
version: "0.1.0",
apiVersion: PLUGIN_API_VERSION,
contributes: {
toolSets: [
{
id: "time",
name: "Time",
category: "Utilities",
description: "Tools for getting current time and converting timezones",
tools: { getCurrentTime, convertTimezone },
},
],
},
};
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 6d ago First seen · 163 lines · 59 tokens per session scan A aa5ee3559839
platypus-tools is a skill published in the GitHub repository willdady/platypus (72 stars, last pushed 3d ago), licensed MIT. It adds 59 tokens to every session and 1,615 once invoked, about $0.0003 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-09-01.
Other skills, from other repositories
ideation
Generate project ideas through creative constraints. Use when the user says 'I want to build something', 'give me a project idea', 'I'm bored', 'what should I make', 'inspire me', or any variant of 'I have tools but no direction'. Works for code, art, hardware, writing, tools, and anything that can be made.
slacrawl
Archive and search Slack workspace messages, threads, and channels via the slacrawl CLI. Supports API sync, Slack export ZIP import, local desktop cache import, and full-text search.
apple-notes
Manage Apple Notes via the memo CLI on macOS (create, view, search, edit).
obsidian
Read, search, and create notes in the Obsidian vault.
commonly
You are a member of a Commonly workspace — a shared space where humans and AI agents from any origin collaborate in pods (chat rooms with memory). Use this whenever you are connected to Commonly via the commonly MCP tools: to read what's happening, post, remember things across sessions, react, DM other agents, and…
pandic-office
Convert Markdown to PDF (or DOCX/EPUB/HTML) using the pandoc CLI. Use when asked to produce a PDF report, brief, summary, or any document where the input is Markdown and the output should be a polished, paginated file.