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 kitchen-engineer42/joharnessburg --skill workerllm-runtimegit clone --depth 1 https://github.com/kitchen-engineer42/joharnessburgWrote 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/kitchen-engineer42/joharnessburg/workerllm-runtime)<a href="https://agentmods.dev/skills/kitchen-engineer42/joharnessburg/workerllm-runtime"><img src="https://agentmods.dev/badge/skills/kitchen-engineer42/joharnessburg/workerllm-runtime.svg" alt="Measured on agentmods" 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.00122 | $0.01319 |
| Opus 5 | $0.00061 | $0.00660 |
| Sonnet 5 | $0.00024 | $0.00264 |
| Haiku 4.5 | $0.00012 | $0.00132 |
Grade A, and why
workerllm-runtime 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 6d 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.
How it starts
The opening of the file, as written. The whole thing — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.
workerllm-runtime
When you're authoring a produced app that needs to call an LLM at runtime — not the John-equipped build session itself, but the app's own runtime when its end-users use it — wire it to John's local LLM client server. The client is OpenAI-compatible; the same SDK that points at api.openai.com works against $JOHN_LLM_CLIENT_URL.
When to use this (vs alternatives)
- Use this skill for standalone produced apps that need workerLLMs at runtime. Examples: a doc-verification rule's
check_R<id>.pythat asks a model for a judgment call; a slide-renderer that asks for a one-sentence summary; a chatbot's main loop. - Hosted-platform deployments are template territory. If the produced app is destined to run inside a hosted multi-tenant platform (proxy-mediated keys, metered billing), the platform's template supplies that pattern. Because this skill's call shape is plain OpenAI-compatible, migrating is just changing
base_url— design the app so that's the only thing that moves. - Don't use this for build-session subagent dispatch. That's [[subagent-dispatch]] — use the coding runtime's agent mechanism, not LLM APIs.
The call shape
The produced app uses the standard openai Python SDK pointed at the local client:
import os
from openai import OpenAI
client = OpenAI(
api_key="not-used", # the local client doesn't check; the workspace .env has the real keys
base_url=os.environ.get("JOHN_LLM_CLIENT_URL", "http://localhost:8500") + "/v1",
)
resp = client.chat.completions.create(
model="deepseek-v4-flash", # see "Model selection" below
messages=[
{"role": "system", "content": "You verify loan-advertising compliance against Chinese regulation R012."},
{"role": "user", "content": ad_text},
],
response_format={"type": "json_object"}, # if you want structured output
temperature=0.1, # low for verification; raise for creative tasks
max_tokens=1000,
)
verdict = resp.choices[0].message.content
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 6d ago First seen · 89 lines · 122 tokens per session scan A eb75900eae3c
workerllm-runtime is a skill published in the GitHub repository kitchen-engineer42/joharnessburg (9 stars, last pushed 1mo ago), licensed MIT. It adds 122 tokens to every session and 1,319 once invoked, about $0.0006 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
ccc-prompt-fix
Fix and sharpen a prompt. Diagnoses it against the 6 prompt-quality patterns, returns a tightened rewrite with the reasoning, and suggests the right library prompt for your task.
reinforcement-learning
Reinforcement Learning best practices for Python using modern libraries (Stable-Baselines3, RLlib, Gymnasium). Use when: Implementing RL algorithms (PPO, SAC, DQN, TD3, A2C) Creating custom Gymnasium environments Training, debugging, or evaluating RL agents Setting up hyperparameter tuning for RL Deploying RL models…
deep-learning
Comprehensive guide for Deep Learning with Keras 3 (Multi-Backend: JAX, TensorFlow, PyTorch). Use when building neural networks, CNNs for computer vision, RNNs/Transformers for NLP, time series forecasting, or generative models (VAEs, GANs). Covers model building (Sequential/Functional/Subclassing APIs), custom…
agy-prompting
Internal helper — how to tighten a user request into a sharp prompt for the Antigravity CLI (agy / Gemini 3.x with native web search and agentic tools).
ccc-data
For large datasets and data files, the Files API can ingest CSVs, JSON, Parquet, and other formats directly — avoiding token limits for bulk data analysis. Use data-ingestion from ccc-research for document-scale inputs.
grounding
Use before writing, reviewing, or debugging any code that uses a specific ML model (DINOv3, SAM 2, Whisper, Qwen3-Embedding, SigLIP 2…), whenever a model-provenance archive for it exists locally. Loads that archive's real source — checkpoint ids, API signatures, preprocessing constants, training recipe — so the code…