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-aigit 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-ai)<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.
<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>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.00069 | $0.00453 |
| Opus 5 | $0.00034 | $0.00227 |
| Sonnet 5 | $0.00014 | $0.00091 |
| Haiku 4.5 | $0.00007 | $0.00045 |
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 \ 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
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 · 43 lines · 69 tokens per session scan A 34df4f4a5980
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.
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…
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-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-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-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…
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…