scala-data-engineering-on-jvm-runtimes

scala-data-engineering-on-jvm-runtimes is a skill for Claude Code, Codex from vaquarkhan/data-engineering-agent-skills. It costs 53 tokens per session (680 once invoked), scanned A, original, MIT.

Guidance for building Scala data-processing jobs on the Java Virtual Machine, the software environment used to run many server and data systems. It covers Spark, Flink, Kafka Streams, builds, packaging, types, and runtime compatibility.

In plain words
What is it for?
It is for Scala Spark, Flink, or Kafka Streams jobs, sbt builds, shaded JARs, typed data models, encoders, serialization, and classpath problems.
Why use it?
Code that compiles can still fail on a cluster because of incompatible libraries, packaging, serialization, or JVM versions. This helps align the application with the engine, runtime, data model, and dependencies.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for Scala Spark, Flink, or Kafka Streams jobs, sbt builds, shaded JARs, typed data models, encoders, serialization, and classpath problems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes
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 vaquarkhan/data-engineering-agent-skills --skill scala-data-engineering-on-jvm-runtimes
Clone the repo
git clone --depth 1 https://github.com/vaquarkhan/data-engineering-agent-skills

Made for: Claude Code, Codex.

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 scala-data-engineering-on-jvm-runtimes

README.md
[![agentmods](https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes/github.svg)](https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes)
Your own site
<a href="https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes"><img src="https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes/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 scala-data-engineering-on-jvm-runtimes

Your own site · 80×15
<a href="https://agentmods.dev/skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes"><img src="https://agentmods.dev/badge/skills/vaquarkhan/data-engineering-agent-skills/scala-data-engineering-on-jvm-runtimes.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 53 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 680 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.00053 $0.00680
Opus 5 $0.00026 $0.00340
Sonnet 5 $0.00011 $0.00136
Haiku 4.5 $0.00005 $0.00068

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

Security

Grade A, and why

scala-data-engineering-on-jvm-runtimes 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 8d 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/scala-data-engineering-on-jvm-runtimes/SKILL.md · 85 lines

How it starts

The opening of the file, as written. The whole thing — 85 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Scala Data Engineering On JVM Runtimes

Overview

Use this skill when Scala is the implementation language for distributed or streaming data systems. It helps agents manage build compatibility, packaging, JVM dependency issues, typed data models, serialization behavior, and runtime assumptions that often cause production failures long after code compiles.

When to Use

  • building or modifying Scala Spark jobs
  • implementing Flink, Kafka Streams, or JVM-native data processors in Scala
  • managing sbt builds, shaded JARs, or runtime compatibility
  • choosing typed datasets, encoders, or JVM serialization strategies
  • debugging classpath, version, or packaging problems in distributed runtimes

Do not assume compile success means distributed runtime safety.

Workflow

  1. Define the runtime and compatibility surface. Include:

    • engine and version
    • Scala version
    • JVM level
    • cluster or container runtime
    • connector and library compatibility
  2. Shape the data model intentionally. Choose:

    • typed case classes or schemas
    • serialization strategy
    • encoder behavior
    • where UDFs are truly needed
    • how nulls and optional fields are represented
  3. Package for the real deployment target. Decide:

    • sbt or other build surface
    • fat-jar or shaded-jar approach
    • dependency conflict handling
    • resource and config loading behavior
    • how the job is launched and parameterized
  4. Design for distributed execution, not driver-local convenience. Check:

    • partition behavior
    • skew
    • state growth
    • checkpoint or savepoint needs
    • accidental driver-side collection or closure capture
  5. Validate with runtime realism. Require:

    • representative local or test-cluster execution
    • packaging verification
    • schema and compatibility checks
    • observability and failure handling expectations

Common Rationalizations

Rationalization Reality
"It compiles, so the job is fine." Distributed classpath, serialization, and dependency issues often appear only at runtime.
"We can fix the JAR if deployment fails." Packaging problems discovered at deploy time slow delivery and often hide deeper compatibility issues.
"A quick UDF is simpler." Overusing UDFs can hide schema, optimizer, and performance problems in JVM data engines.

Read the full file on GitHub · 85 lines

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. 8d ago First seen · 85 lines · 53 tokens per session scan A aee03c801747

Subscribe to this mod's changes

scala-data-engineering-on-jvm-runtimes is a skill published in the GitHub repository vaquarkhan/data-engineering-agent-skills (45 stars, last pushed 3mo ago), licensed MIT. It adds 53 tokens to every session and 680 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-09-03.

Related

Other skills, from other repositories

telnyx-stt-python

Transcribe audio to text via the OpenAI-compatible transcription endpoint. Supports multiple models, languages, and keyword biasing. Also lists available speech-to-text providers and service types.

team-telnyx/ai · 42 tokens

kafka-shadowtraffic

Generate a ShadowTraffic configuration to populate a Kafka topic with realistic synthetic data. Discovers the target topic, its key and value schemas, and the correct serializers from the live cluster via any attached Kafka MCP server, then writes a ready-to-run shadowtraffic-config.json and Docker command. Use when…

lensesio/agentic-engineering-for-apache-kafka · 134 tokens

standalone-python-scripts

Skill "standalone-python-scripts" from iloveitaly/llm-ide-rules, covering standalone python scripts, /// script, requires-python = ">=3.13", dependencies = [] and ///.

iloveitaly/llm-ide-rules · 9 tokens

databricks-python-sdk

Databricks development guidance including Python SDK, Databricks Connect, CLI, and REST API. Use when working with databricks-sdk, databricks-connect, or Databricks APIs.

databricks-solutions/ai-dev-kit · 46 tokens

dspy-ruby

This skill should be used when working with DSPy.rb, a Ruby framework for building type-safe, composable LLM applications. Use this when implementing predictable AI features, creating LLM signatures and modules, configuring language model providers (OpenAI, Anthropic, Gemini, Ollama), building agent systems with…

davekilleen/Dex · 81 tokens

kafka-python-client

Scaffold a production-ready Python Kafka producer and consumer using confluent-kafka-python, with Schema Registry, graceful shutdown, idempotent producer, tests and a complete project layout. Discovers the target topic, partition count and registered JSON Schema directly from the live cluster via any attached Kafka…

lensesio/agentic-engineering-for-apache-kafka · 150 tokens