scalix-functions

scalix-functions is a skill for Claude Code from scalixworld/scalix-cloud-mcp. It costs 67 tokens per session (418 once invoked), scanned A, original, MIT.

Instructions for Scalix Functions, a service that runs Node.js or Python code on demand and can scale down when unused. Other languages must be supplied as container images, which are packaged application environments.

In plain words
What is it for?
Use them to write handlers, deploy source code or container images, call functions, list them, delete them, and plan around scale-to-zero behaviour.
Why use it?
They explain the supported deployment choices and the delay that can happen when an idle function starts again.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the scalix plugin — 4 skills, 1 command, 2 MCP servers shipped together

Good fit Use them to write handlers, deploy source code or container images, call functions, list them, delete them, and plan around scale-to-zero behaviour.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/scalixworld/scalix-cloud-mcp/scalix-functions
Install

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.

Any agent
npx skills add scalixworld/scalix-cloud-mcp --skill scalix-functions
Clone the repo
git clone --depth 1 https://github.com/scalixworld/scalix-cloud-mcp

Made for: Claude Code.

Or install scalix, the plugin that ships this one along with the rest of its 4 skills, 1 command, 2 MCP servers.

Wrote 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.

agentmods badge for scalix-functions

README.md
[![agentmods](https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-functions/github.svg)](https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-functions)
Your own site
<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.

agentmods 80×15 button for scalix-functions

Your own site · 80×15
<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>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 418 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 3b8e4b08d350, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

skills/scalix-functions/SKILL.md · 46 lines

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

Changes

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.

  1. 11d ago First seen · 46 lines · 67 tokens per session scan A 3b8e4b08d350

Subscribe to this mod's changes

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.

Related

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.

webiny/webiny-js · 60 tokens

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…

CrowdStrike/foundry-skills · 195 tokens

crestapps-core-aspnet-hosting

Skill for composing CrestApps.Core into ASP.NET Core MVC Blazor SignalR and Minimal API hosts.

CrestApps/CrestApps.AgentSkills · 29 tokens

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/scraperapi-skills · 175 tokens

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/scraperapi-skills · 154 tokens

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"…

scraperapi/scraperapi-skills · 150 tokens