maven-druid-build

maven-druid-build is a skill for Claude Code, Codex from cxcscmu/SkillLearnBench. It costs 22 tokens per session (752 once invoked), scanned A, original, MIT.

A set of Maven build instructions for Apache Druid, an open-source system for querying and analyzing large event datasets. It focuses on building selected Java modules when memory is limited.

In plain words
What is it for?
Use it to clean and package Druid's indexing-service module with its required modules, skip tests and selected analysis checks, and understand what each Maven option changes.
Why use it?
It provides the exact build options needed to avoid resource-heavy checks and to leave out the web-console module, which can make the build exceed available memory.

Skill for Claude CodeCodex

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

Good fit Use it to clean and package Druid's indexing-service module with its required modules, skip tests and selected analysis checks, and understand what each Maven option changes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/cxcscmu/skilllearnbench/maven-druid-build
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 cxcscmu/SkillLearnBench --skill maven-druid-build
Clone the repo
git clone --depth 1 https://github.com/cxcscmu/SkillLearnBench

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 maven-druid-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/maven-druid-build/github.svg)](https://agentmods.dev/skills/cxcscmu/skilllearnbench/maven-druid-build)
Your own site
<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/maven-druid-build"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/maven-druid-build/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 maven-druid-build

Your own site · 80×15
<a href="https://agentmods.dev/skills/cxcscmu/skilllearnbench/maven-druid-build"><img src="https://agentmods.dev/badge/skills/cxcscmu/skilllearnbench/maven-druid-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 22 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 752 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00022 $0.00752
Opus 5 $0.00011 $0.00376
Sonnet 5 $0.00004 $0.00150
Haiku 4.5 $0.00002 $0.00075

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

Security

Grade A, and why

maven-druid-build 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 9d 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/b1-one-shot-claude-haiku-4-5/fix-security-bug/maven-druid-build/SKILL.md · 118 lines

How it starts

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

Maven Build for Apache Druid

Build Command Reference

Full Build (from instructions)

cd /root/druid
mvn clean package \
  -DskipTests \
  -Dcheckstyle.skip=true \
  -Dpmd.skip=true \
  -Dforbiddenapis.skip=true \
  -Dspotbugs.skip=true \
  -Danimal.sniffer.skip=true \
  -Denforcer.skip=true \
  -Djacoco.skip=true \
  -Ddependency-check.skip=true \
  -pl '!web-console' \
  -pl indexing-service \
  -am

Flag Explanations

Flag Purpose
clean Remove previous build artifacts
package Compile and package into JAR/WAR
-DskipTests Skip unit test execution
-Dcheckstyle.skip=true Skip code style checking
-Dpmd.skip=true Skip PMD analysis
-Dforbiddenapis.skip=true Skip forbidden API checking
-Dspotbugs.skip=true Skip SpotBugs (FindBugs) analysis
-Danimal.sniffer.skip=true Skip JDK version compatibility checks
-Denforcer.skip=true Skip Maven Enforcer rules
-Djacoco.skip=true Skip code coverage analysis
-Ddependency-check.skip=true Skip OWASP dependency checking
-pl '!web-console' Exclude web-console module (memory constraint)
-pl indexing-service Include indexing-service module
-am Also make dependencies of selected projects

Memory Management

Memory Issues

If you encounter OOM (Out of Memory) errors:

# Increase heap size
export MAVEN_OPTS="-Xmx2g -Xms1g"

# Very aggressive heap limit
export MAVEN_OPTS="-Xmx1g -Xms512m"

Parallel Builds

To speed up builds with multiple cores:

mvn clean package -T 1C  # 1 thread per core

Output Artifacts

After successful build:

druid/indexing-service/target/druid-indexing-service-0.20.0-SNAPSHOT.jar
druid/distribution/target/apache-druid-0.20.0-SNAPSHOT/lib/

Verifying Build

# Check if JAR was created
ls -la indexing-service/target/*.jar

# Check build log for errors
tail -100 build.log

# Verify specific file was included
jar tf indexing-service/target/*.jar | grep "JavaScriptFilter"

Read the full file on GitHub · 118 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. 9d ago First seen · 118 lines · 22 tokens per session scan A 09f77d8e26d7

Subscribe to this mod's changes

maven-druid-build is a skill published in the GitHub repository cxcscmu/SkillLearnBench (83 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 752 once invoked, about $0.0001 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-30.

Related

Other skills, from other repositories

ceo-setup

One-time onboarding for the executive/manager commitment workflow — delegation-heavy, meeting prep, decision capture, morning and evening digests. Creates a commitments project and installs two dashboard widgets. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 60 tokens

content-creator-setup

One-time onboarding for the content creator workflow — content pipeline stages, trend expiration, cross-platform cascades, heavy idea parking. After successful setup this skill is excluded from selection until the marker file is deleted.

suyoumo/ClawProBench · 47 tokens

github

GitHub API integration via HTTP tool with automatic credential injection.

suyoumo/ClawProBench · 13 tokens

idea-parking

Park interesting ideas for later consideration, resurface them periodically, and promote to commitments when ready.

suyoumo/ClawProBench · 23 tokens

codspeed-optimize

Autonomously optimize code for performance using CodSpeed benchmarks, flamegraph analysis, and iterative improvement. Use this skill whenever the user wants to make code faster, reduce CPU usage, optimize memory, improve throughput, find performance bottlenecks, or asks to 'optimize', 'speed up', 'make faster'…

CodSpeedHQ/codspeed · 113 tokens

agentsop-llm-artifact-versioning

Enhancement overlay — version the WHOLE deployable LLM-app artifact as one bundle: prompts + compiled programs + model snapshot pins + retrieval config + eval-set version, versioned together so a deploy is reproducible and rollback is atomic. Activate when preparing to deploy an LLM app, when asking "what exactly is…

agentsope/SkillAlchemy · 223 tokens