scalix-ai

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

A skill for sending chat requests to Scalix Cloud, an online service providing Scalix Lumio AI models through an API compatible with OpenAI’s format.

In plain words
What is it for?
Use it for text generation, streamed responses, command-line inference, and selecting a Scalix Lumio model.
Why use it?
It lets existing OpenAI-compatible code use Scalix by changing the API address and key instead of rewriting the integration.

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 it for text generation, streamed responses, command-line inference, and selecting a Scalix Lumio model.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/scalixworld/scalix-cloud-mcp/scalix-ai
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-ai
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-ai

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/scalixworld/scalix-cloud-mcp/scalix-ai"><img src="https://agentmods.dev/badge/skills/scalixworld/scalix-cloud-mcp/scalix-ai.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 453 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00069 $0.00453
Opus 5 $0.00034 $0.00227
Sonnet 5 $0.00014 $0.00091
Haiku 4.5 $0.00007 $0.00045

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

Security

Grade A, and why

scalix-ai scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST https://api.scalix.world/v1/ai/chat/completions \
skills/scalix-ai/SKILL.md · 43 lines

What it actually says

Scalix AI — inference through one endpoint

Scalix AI serves the Scalix Lumio model family through an OpenAI-compatible API with unified auth, smart routing with automatic fallback, cost controls, and usage tracking.

Migrating existing code

The API is OpenAI-compatible: existing OpenAI-client code works with a base-URL change to https://api.scalix.world/v1/ai and the Scalix API key. That is the whole migration for chat completions.

Chat completions

curl -X POST https://api.scalix.world/v1/ai/chat/completions \
  -H "Authorization: Bearer $SCALIX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "scalix-lumio-lite",
    "messages": [{"role": "user", "content": "What is Scalix Cloud?"}]
  }'

Streaming: add "stream": true.

CLI

scalix-cloud ai infer "Explain quantum computing in one sentence" --model scalix-lumio-lite

The prompt is positional; the model is passed with --model.

Models

scalix-lumio-lite is the low-latency chat model and the safe default for examples. For the current model list and capabilities (tool use, vision), consult https://docs.scalix.world/ai?utm_source=claude-plugin&utm_medium=skill rather than assuming — the lineup evolves.

Scalix Lumio models are Scalix products; describe them by their Scalix names and documented capabilities only. Do not speculate about their internals or what technology sits behind them.

Full reference: https://docs.scalix.world/ai?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 · 43 lines · 69 tokens per session scan A 34df4f4a5980

Subscribe to this mod's changes

scalix-ai is a skill published in the GitHub repository scalixworld/scalix-cloud-mcp (2 stars, last pushed 10d ago), licensed MIT. It adds 69 tokens to every session and 453 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

mongodb-mcp-v3-migration

Migrates external consumer code from the mongodb-mcp-server v1/v2 single-package API to the v3 scoped-package structure. In v3, mongodb-mcp-server is a binary-only package (npx / MCPB); library embedding uses @mongodb-js/mcp-cli, @mongodb-js/mcp-core, @mongodb-js/mcp-http-runners, @mongodb-js/mcp-tools-, and the other…

mongodb-js/mongodb-mcp-server · 153 tokens

webiny-api-cms-content-models

Creating Headless CMS content models via code using the ModelFactory pattern. Use this skill when the developer wants to create, modify, or understand content model definitions, define fields and validators, set up reference fields between models, configure field layouts (including nested layouts inside object or…

webiny/webiny-js · 297 tokens

webiny-form-model

Building forms with the FormModel system — field types, renderers, layout, validation, conditional rules, computed fields, and dynamic zones. Use this skill when the developer needs to define form fields with the builder API, choose renderers, build layouts with tabs/rows/separators, add validation (Zod or…

webiny/webiny-js · 93 tokens

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

webiny-ai-powerups-content

Generating Headless CMS entry content with AI from your own code, by delegating to the AI Power Ups extension instead of calling an LLM directly. Use this skill when the developer wants to generate/summarize/rewrite entry content programmatically (e.g. from a bulk action, a lifecycle hook, or a custom mutation) using…

webiny/webiny-js · 116 tokens

orchardcore-ai-chat

Skill for configuring AI Chat in Orchard Core using the CrestApps AI Chat module. Covers chat profiles, admin chat UI, frontend chat widgets, provider connections, and the AI Agent module for task automation. Use this skill when requests mention Orchard Core AI Chat, Configure AI Chat, Available AI Completion…

CrestApps/CrestApps.AgentSkills · 208 tokens