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 agentmods add skills/markusvankempen/code-engine-mcp-server/code-engine-deploynpx skills add markusvankempen/code-engine-mcp-server --skill code-engine-deploygit clone --depth 1 https://github.com/markusvankempen/code-engine-mcp-serverWhat 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 | $0.00088 | $0.03981 |
| Opus 5 | $0.00044 | $0.01990 |
| Sonnet 5 | $0.00018 | $0.00796 |
| Haiku 4.5 | $0.00009 | $0.00398 |
Grade A, and why
code-engine-deploy 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 yesterday.
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 — 410 lines — stays where its author put it; the contents beside it link to each section on GitHub.
IBM Code Engine Deployment Skill
When to Use
Invoke this skill whenever the task involves:
- Deploying or updating a Code Engine application or job
- Building and pushing a container image (local Docker/Podman → ICR)
- Managing Code Engine projects, secrets, config maps, or domain mappings
- Checking app logs, revisions, or job runs
- Setting up or renewing TLS / custom domains
- Any task touching the IBM Cloud Container Registry (ICR)
MCP Server Selection
Before performing any Code Engine task, determine which MCP server to use:
1. Prefer Remote (if available)
Check whether the remote-code-engine MCP server is configured and reachable:
- Use
mcp-remotepointing to the bridge URL (e.g.https://ce-mcp-remote.<hash>.<region>.codeengine.appdomain.cloud/sse) - If the remote server responds, use it exclusively — it avoids running a local node process and is already authenticated via the bridge.
2. Fall back to Local
If remote is unavailable or not configured, use the local code-engine stdio server:
- Launched via
npx -y code-engine-mcp-server@latest - Requires
IBMCLOUD_API_KEYandIBMCLOUD_REGIONenv vars
Rule: Use ONLY Code Engine MCP tools for all deployment operations. Do not shell out to
ibmcloudCLI,docker, orkubectldirectly.
MCP Setup Guide
Prerequisites
- Node.js 18+ — verify:
node --version - IBM Cloud API key — create at cloud.ibm.com/iam/apikeys
- Required IAM permissions: Code Engine Editor + Container Registry Reader
API Key Storage (choose one)
Option A — Shell env var (recommended)
cp dot.env.example .env # .env is already in .gitignore
# Edit .env: IBMCLOUD_API_KEY=your-key-here
source .env
# Or permanently: echo 'export IBMCLOUD_API_KEY="your-key"' >> ~/.zshrc
Reference in any config file as "${env:IBMCLOUD_API_KEY}" — the key never appears in the file.
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.
- yesterday First seen · 410 lines · 88 tokens per session scan A e9827080a470
code-engine-deploy is a skill published in the GitHub repository markusvankempen/code-engine-mcp-server (0 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 88 tokens to every session and 3,981 once invoked, about $0.0004 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
claude-api
Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports anthropic/@anthropic-ai/sdk; user asks for…
tasks
Manage Prismer workspace tasks across the full Kanban lifecycle — create, list, inspect, update, complete, approve, reject, cancel. Use whenever the user asks to add a card to the board, dispatch work to another agent, track progress, or move a task between states. Executes via the cloud task CLI.
agent-coordination
Find other agents, list participants in a conversation, send routed messages, attach files, and recover earlier conversation context (history / resolve a fuzzy reference / read a quoted message / read compressed summaries). Use whenever you need to delegate to another agent, address a peer in a multi-agent…
image-generate
Generate an image from a text prompt via the cloud LLM image proxy, persist it as a content-addressed workspace asset, and return a ContentBlock that downstream renderers can attach. Use whenever the user asks "draw / generate / make an image of …", an agent needs a diagram / illustration as a follow-up artifact, or a…
claim-agent-ownership
Orchestrator skill for resolving multi-daemon binding contention. Use when you (the orchestrator) detect an agent.binding.contested sync event indicating two daemons are racing for the same agent — explicitly rebind ownership to a chosen target daemon so subsequent dispatches route deterministically. Implements Gap…
prismer-im-collab
Coordinate reliably in Prismer conversations, use workspace assets through bounded MCP tools, and keep task work on the board.