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/kamy-development/kamy-plugin/kamynpx skills add Kamy-Development/kamy-plugin --skill kamygit clone --depth 1 https://github.com/Kamy-Development/kamy-pluginWrote 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/kamy-development/kamy-plugin/kamy)<a href="https://agentmods.dev/skills/kamy-development/kamy-plugin/kamy"><img src="https://agentmods.dev/badge/skills/kamy-development/kamy-plugin/kamy.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00102 | $0.02289 |
| Opus 5 | $0.00051 | $0.01144 |
| Sonnet 5 | $0.00020 | $0.00458 |
| Haiku 4.5 | $0.00010 | $0.00229 |
Grade A, and why
kamy 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.
How it starts
The opening of the file, as written. The whole thing — 261 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Kamy — PDF generation + e-signature
Kamy renders pixel-perfect PDFs from HTML/Handlebars templates via a hosted Chromium pipeline, and sends those PDFs for legally-binding e-signature with a built-in audit trail. This skill teaches you when and how to call the Kamy API on the user's behalf.
When to use this skill
Activate whenever the user asks to:
- "Generate / create / make a PDF…"
- Produce an invoice, receipt, quote, estimate, statement, contract, agreement, certificate, report, payslip, brochure, flyer, or any printable document.
- Convert a web page or HTML snippet to a PDF.
- Build a document pipeline (cron-driven monthly statements, webhook- triggered receipts, etc.).
- Send a document for signature — NDAs, contracts, offer letters, consent forms, HR paperwork, vendor agreements. Kamy issues a sign link the recipient opens in their browser, captures the signature with an audit trail, and seals the result with PAdES-grade cryptography.
- Verify a signed PDF —
/verify/<sha256>is the canonical "is this document genuinely Kamy-sealed?" answer.
Do not activate for:
- Extracting text or data from PDFs (use a separate OCR / parsing tool).
- Producing non-PDF formats (Word, Excel, PowerPoint).
- Producing non-PDF formats (Word, Excel, PowerPoint).
Setup
The user needs a Kamy API key from https://kamy.dev/dashboard/keys.
Read it from process.env.KAMY_API_KEY. If it's not set, ask the
user to provide one before running any code.
pnpm add @kamydev/sdk
Three render modes
1. Template + data (preferred)
Use a stored template. Templates live in the user's Kamy dashboard
and accept JSON data:
import { Kamy } from "@kamydev/sdk";
const kamy = new Kamy({ apiKey: process.env.KAMY_API_KEY! });
const { id, url, bytes, warnings } = await kamy.render({
template: "invoice",
data: {
invoice: { number: "INV-2026-0142", issuedAt: "2026-04-23" },
customer: { name: "Acme Corp", email: "[email protected]" },
lineItems: [
{ description: "Consulting (April)", qty: 40, unitPrice: 150 },
],
totals: { subtotal: 6000, tax: 600, total: 6600 },
},
options: { format: "a4", inlineImages: true },
});
console.log("PDF ready:", url);
for (const w of warnings ?? []) {
console.warn(`[${w.code}] ${w.message}`);
}
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 · 261 lines · 102 tokens per session scan A 292a3fc3dca7
kamy is a skill published in the GitHub repository Kamy-Development/kamy-plugin (0 stars, last pushed 3mo ago), licensed MIT. It adds 102 tokens to every session and 2,289 once invoked, about $0.0005 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-31.
Other skills, from other repositories
esporta-documento
Esporta un deliverable legale (parere, informativa privacy, DPA, DPIA, registro trattamenti, parcella, atto, analisi giurisprudenziale) in un file Word (.docx) e/o PDF nella cartella attiva. Usa quando l'utente chiede di "esporta in word", "esporta in pdf", "salva il documento", "genera docx", "genera pdf", "metti in…
contract-analyzer
OCR a contract PDF with mistralocr, then extract structured clauses and risk scores with mistralchat + jsonschema. Use when the user provides a contract document to analyze for risks, obligations, and key terms.
cvx
Create, validate, and render professional CV/resume PDFs from plain YAML using CVX — fully local, no accounts. Use when the user wants to write a CV or resume, convert an existing CV to a maintained format, tailor a CV for a job application, or produce an ATS-safe variant. Covers the cv-content/ YAML schema, the…
beautiful-pdf-mcp
You are an editor-typesetter. Your job is to produce PDFs that look professionally designed, not machine-generated. That means: correct fonts, correct spacing, correct page rhythm.
audit-document-production-best-practices
Use this skill to respond to an FMCSA audit document request efficiently. Covers organization, file labeling, secure transmission.
n8n-binary-and-data
Handle files and binary data in n8n correctly. Use when working with files, images, PDFs, attachments, uploads or downloads, base64, vision/multimodal input, or when an AI agent needs a file as tool input or output — and whenever the user mentions $binary, binaryPropertyName, "read the PDF", "attach the file", "send…