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 OpenLAIR/OpenSkill --skill evo-druid-cve-patchgit clone --depth 1 https://github.com/OpenLAIR/OpenSkillWrote 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/openlair/openskill/evo-druid-cve-patch)<a href="https://agentmods.dev/skills/openlair/openskill/evo-druid-cve-patch"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-druid-cve-patch/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/openlair/openskill/evo-druid-cve-patch"><img src="https://agentmods.dev/badge/skills/openlair/openskill/evo-druid-cve-patch.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.00056 | $0.00815 |
| Opus 5 | $0.00028 | $0.00407 |
| Sonnet 5 | $0.00011 | $0.00163 |
| Haiku 4.5 | $0.00006 | $0.00081 |
Grade A, and why
evo-druid-cve-patch 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 — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: evo-druid-cve-patch
Purpose
Patches Apache Druid 0.20.0 for CVE-2021-25646 - a JavaScript injection vulnerability where empty-string keys in JSON payloads can override server-side JavaScriptConfig to enable arbitrary code execution.
Vulnerability Summary
- CVE: CVE-2021-25646
- Affected: Apache Druid <= 0.20.0
- Mechanism: Empty key
""in JSON overrides@JacksonInject JavaScriptConfigparameter - Impact: Authenticated RCE via JavaScript filters/aggregators/extraction functions
Patch Strategy (Two-Layer Defense)
Layer 1: Raw JSON Validation (SamplerResource - Approach 3)
Modify SamplerResource.java to:
- Accept raw
Stringinstead of auto-deserializedSamplerSpec - Check for empty-string key pattern (
""\s*:) using regex - Reject requests containing empty keys with 400 Bad Request
- Only then deserialize via
ObjectMapper.readValue()
Requires injecting @Json ObjectMapper via Guice constructor injection.
Return type changes from SamplerResponse to Response for error handling.
Layer 2: Jackson Injection Hardening (Approach 2 - Defense in Depth)
Add @JacksonInject(useInput = OptBoolean.FALSE) to all three JavaScript classes:
JavaScriptDimFilter(processing module)JavaScriptAggregatorFactory(processing module)JavaScriptExtractionFn(processing module)
This tells Jackson 2.9+ to never populate the JavaScriptConfig parameter from JSON input.
Affected Files
indexing-service/src/main/java/org/apache/druid/indexing/overlord/sampler/SamplerResource.javaprocessing/src/main/java/org/apache/druid/query/filter/JavaScriptDimFilter.javaprocessing/src/main/java/org/apache/druid/query/aggregation/JavaScriptAggregatorFactory.javaprocessing/src/main/java/org/apache/druid/query/extraction/JavaScriptExtractionFn.java
Usage
import sys
sys.path.insert(0, '/app/environment/skills/evo-druid-cve-patch/scripts')
from patch_druid import apply_all_patches, generate_patch_file, run_maven_build
# Apply patches to source
apply_all_patches('/root/druid')
# Generate patch file
generate_patch_file('/root/druid', '/root/patches/fix-cve-2021-25646.patch')
# Build
run_maven_build('/root/druid')
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.
- yesterday First seen · 79 lines · 56 tokens per session scan A 65ea471704f3
evo-druid-cve-patch is a skill published in the GitHub repository OpenLAIR/OpenSkill (90 stars, last pushed yesterday), licensed Apache-2.0. It adds 56 tokens to every session and 815 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-11.
Other skills, from other repositories
Cursor rules for Java General Purpose
Skill "Cursor rules for Java General Purpose" from AmariahAK/atlarix-skills, covering cursor rules for java general purpose, when to use this skill, source, project configuration and ai developer profile.
Cursor rules for Java development with Springboot and JPA integration
Skill "Cursor rules for Java development with Springboot and JPA integration" from AmariahAK/atlarix-skills, covering when to use this skill and source.
Cursor rules for JavaScript development with Astro and Tailwind CSS integration
Skill "Cursor rules for JavaScript development with Astro and Tailwind CSS integration" from AmariahAK/atlarix-skills, covering when to use this skill and source.
Cursor rules for JavaScript and TypeScript development with code quality integra
Skill "Cursor rules for JavaScript and TypeScript development with code quality integra" from AmariahAK/atlarix-skills, covering when to use this skill, source, persona, coding guidelines and key mindsets.
Java Patterns
Use this skill when working on Java services/libs and you want clean layering, safe null handling, predictable build structure (Maven/Gradle), and testable code.
java-best-practices
Java coding best practices. Use when writing or reviewing Java code (17+). Covers modern features, error handling, and patterns.