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 scalixworld/scalix-cloud-mcp --skill scalix-functionsgit clone --depth 1 https://github.com/scalixworld/scalix-cloud-mcpWrote 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/scalixworld/scalix-cloud-mcp/scalix-functions)<a href="https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-functions"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-functions/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/scalixworld/scalix-cloud-mcp/scalix-functions"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-functions.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.00067 | $0.00418 |
| Opus 5 | $0.00034 | $0.00209 |
| Sonnet 5 | $0.00013 | $0.00084 |
| Haiku 4.5 | $0.00007 | $0.00042 |
Grade A, and why
scalix-functions 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 11d 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
Scalix Functions
Serverless functions that scale to zero when idle. A cold start provisions an isolated environment, so the first invocation after idle is meaningfully slower than a warm one — for latency-sensitive endpoints, keep the function warm with regular traffic.
Runtimes — the rule that prevents wasted work
Supported runtimes are node and python only. Do not attempt to deploy Go, Rust, Ruby, or anything else as a function runtime — for other languages, package a container image instead (--image).
Write a handler
// handler.ts
export default async function handler(req: Request) {
const body = await req.json();
return new Response(JSON.stringify({ result: body.x + body.y }), {
headers: { "Content-Type": "application/json" },
});
}
Deploy
fn deploy requires either --source <path> or --image <image>:
scalix-cloud fn deploy api --source ./api --runtime node # from source
scalix-cloud fn deploy api --image registry/img:v1 # from a container image
Invoke and manage
scalix-cloud fn list
scalix-cloud fn invoke api --data '{"x": 1, "y": 2}'
scalix-cloud fn delete <function-id>
The same operations exist over REST (POST https://api.scalix.world/v1/functions) and as MCP tools — prefer MCP tools when this plugin's server is connected.
Full reference: https://docs.scalix.world/functions?utm_source=claude-plugin&utm_medium=skill
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.
- 11d ago First seen · 46 lines · 67 tokens per session scan A 3b8e4b08d350
scalix-functions is a skill published in the GitHub repository scalixworld/scalix-cloud-mcp (2 stars, last pushed 9d ago), licensed MIT. It adds 67 tokens to every session and 418 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-08-31.
Other skills, from other repositories
webiny-api-cms-custom-field-type
How to implement a custom CMS field type that integrates with the model builder's fluent API. Covers extending DataFieldBuilder, composing validator interfaces, creating a FieldTypeFactory, registering via DI, and module augmentation for TypeScript autocomplete on the fields() registry.
functions-development
Build serverless Go or Python functions for Falcon Foundry apps. TRIGGER when user asks to "create a function", "write a serverless function", "build backend logic", runs foundry functions create, or needs help with FDK handler patterns, function testing, or collection integration from functions. Also TRIGGER when…
crestapps-core-aspnet-hosting
Skill for composing CrestApps.Core into ASP.NET Core MVC Blazor SignalR and Minimal API hosts.
scraperapi-java-sdk
Best-practices reference for the ScraperAPI Java SDK (com.scraperapi:sdk Maven artifact). Consult whenever the user is writing, debugging, or reviewing Java code that calls ScraperAPI. Use when user asks: "scrape a website with Java and ScraperAPI", "ScraperAPI Java example", "how do I add ScraperAPI to my Maven…
scraperapi-php-sdk
Best-practices reference for the ScraperAPI PHP SDK (scraperapi/sdk Composer package). Consult whenever the user is writing, debugging, or reviewing PHP code that calls ScraperAPI. Use when user asks: "scrape a website with PHP and ScraperAPI", "ScraperAPI PHP example", "how do I use the ScraperAPI PHP SDK", "PHP…
scraperapi-ruby-sdk
Best-practices reference for the ScraperAPI Ruby SDK (scraperapi gem). Consult whenever the user is writing, debugging, or reviewing Ruby code that calls ScraperAPI. Use when user asks: "scrape a website with Ruby and ScraperAPI", "ScraperAPI Ruby example", "how do I use the ScraperAPI gem", "Ruby ScraperAPI render"…