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 Impertio-Studio/n8n-Claude-Skill-Package --skill n8n-syntax-extension-methodsgit clone --depth 1 https://github.com/Impertio-Studio/n8n-Claude-Skill-PackageWrote 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/impertio-studio/n8n-claude-skill-package/n8n-syntax-extension-methods)<a href="https://agentmods.dev/skills/impertio-studio/n8n-claude-skill-package/n8n-syntax-extension-methods"><img src="https://agentmods.dev/badge/skills/impertio-studio/n8n-claude-skill-package/n8n-syntax-extension-methods/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/impertio-studio/n8n-claude-skill-package/n8n-syntax-extension-methods"><img src="https://agentmods.dev/badge/skills/impertio-studio/n8n-claude-skill-package/n8n-syntax-extension-methods.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00180 | $0.02926 |
| Opus 5 | $0.00090 | $0.01463 |
| Sonnet 5 | $0.00036 | $0.00585 |
| Haiku 4.5 | $0.00018 | $0.00293 |
Grade A, and why
n8n-syntax-extension-methods 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 10d 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 — 236 lines — stays where its author put it; the contents beside it link to each section on GitHub.
n8n Extension Methods
Complete reference for all n8n v1.x expression extension methods. ALWAYS use extension methods over raw JavaScript equivalents — they are null-safe and optimized for n8n's expression engine.
Quick Reference — Method Categories
| Category | Count | Common Use Cases |
|---|---|---|
| String | 19 methods | Extract emails/URLs, encode/decode, hash, case conversion |
| Array | 21 methods | Pluck fields, deduplicate, chunk, set operations |
| Number | 11 methods | Round, format, type checks, convert to DateTime |
| Object | 12 methods | Filter fields, merge, compact, serialize |
| Boolean | 3 methods | Convert to number/string, null check |
| DateTime | 25+ methods | Arithmetic, comparison, formatting, timezone |
| BinaryFile | 7 properties | File metadata access |
Full method signatures and parameters: references/methods.md Practical examples: references/examples.md Common mistakes: references/anti-patterns.md
Decision Tree — Which Method Category?
What data type are you working with?
|
+-- String value?
| +-- Need to extract structured data? --> .extractEmail(), .extractUrl(), .extractDomain()
| +-- Need to validate? --> .isEmail(), .isUrl(), .isEmpty()
| +-- Need encoding/hashing? --> .urlEncode(), .base64Encode(), .hash()
| +-- Need case conversion? --> .toTitleCase(), .toSnakeCase(), .toSentenceCase()
| +-- Need type conversion? --> .toDateTime(), .toBoolean()
|
+-- Array value?
| +-- Need specific fields from objects? --> .pluck("field1", "field2")
| +-- Need deduplication? --> .removeDuplicates() or .unique()
| +-- Need set operations? --> .union(), .intersection(), .difference()
| +-- Need aggregation? --> .sum(), .average(), .min(), .max()
| +-- Need restructuring? --> .chunk(), .smartJoin(), .renameKeys()
|
+-- Number value?
| +-- Need rounding? --> .round(), .ceil(), .floor()
| +-- Need formatting? --> .format(locale)
| +-- Need type check? --> .isEven(), .isOdd(), .isInteger()
| +-- Need conversion? --> .toDateTime(), .toBoolean()
|
+-- Object value?
| +-- Need to filter fields? --> .keepFieldsContaining(), .removeFieldsContaining()
| +-- Need to clean nulls? --> .compact()
| +-- Need to check structure? --> .hasField(), .keys(), .values()
| +-- Need to combine? --> .merge()
| +-- Need serialization? --> .toJsonString(), .urlEncode()
|
+-- DateTime value?
| +-- Need arithmetic? --> .plus(), .minus()
| +-- Need comparison? --> .equals(), .isBetween(), .diffTo()
| +-- Need formatting? --> .format(), .toISO(), .toRelative()
| +-- Need extraction? --> .year, .month, .day, .hour, .weekday
| +-- Need timezone? --> .setZone(), .toUTC(), .toLocal()
|
+-- Boolean value?
| +-- Need number? --> .toNumber()
| +-- Need string? --> .toString()
|
+-- Binary file?
+-- Need file info? --> .fileName, .fileSize, .mimeType, .fileExtension
What ships with it
3 files 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.
- 10d ago First seen · 236 lines · 180 tokens per session scan A c4b139c91c5d
n8n-syntax-extension-methods is a skill published in the GitHub repository Impertio-Studio/n8n-Claude-Skill-Package (3 stars, last pushed 2mo ago), licensed MIT. It adds 180 tokens to every session and 2,926 once invoked, about $0.0009 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
bulk-rnaseq
End-to-end bulk RNA-seq orchestrator — takes raw FASTQ reads through QC and trimming (FastQC, fastp/Trim Galore), alignment and quantification (STAR, Salmon, featureCounts), assembles a gene-level counts matrix, then hands off to differential expression (pydeseq2), pathway/GSEA enrichment (pathway-enrichment), and…
umap-learn
Use UMAP-learn for nonlinear dimensionality reduction, 2D/3D embeddings, clustering preprocessing, supervised or semi-supervised UMAP, DensMAP, AlignedUMAP, and Parametric UMAP workflows.
genomic-intelligence
Predict regulatory features, gene structure, and expression directly from DNA sequence using Genomic Intelligence's hosted transformer DNA language models — no local GPU or model weights. Six tasks over a REST API and a hosted MCP server (keyless public demo): promoter regions, splice donor/acceptor sites, enhancer…
glycoengineering
Analyze and engineer protein glycosylation. Scan sequences for N-glycosylation sequons (N-X-S/T), predict O-glycosylation hotspots, and access curated glycoengineering tools (NetOGlyc, GlycoShield, GlycoWorkbench). For glycoprotein engineering, therapeutic antibody optimization, and vaccine design.
optimize-for-gpu
GPU-accelerates scientific Python on NVIDIA hardware and verifies that the result is correct and faster. Use for CUDA/GPU optimization; CPU-bound NumPy, SciPy, pandas, scikit-learn, NetworkX, scikit-image, vector-search, image-processing, graph, simulation, or file-I/O workloads; CuPy, cuDF, cuML, cuGraph, cuVS…
shap
Explain and audit machine-learning predictions with SHAP. Use for selecting SHAP explainers and maskers, computing and validating feature attributions, handling multi-output explanations, and producing local or global SHAP visualizations.