finding-latest-julia-version

finding-latest-julia-version is a skill for Claude Code, Codex from hashgraph-online/awesome-codex-plugins. It costs 39 tokens per session (667 once invoked), scanned A, original, Apache-2.0.

A guide for finding the newest stable release of Julia, the Julia programming language, from its official machine-readable release data.

In plain words
What is it for?
Use it to select the latest stable Julia release or the newest patch in a particular minor-release series.
Why use it?
It avoids hard-coding an old Julia version in installation scripts and supports checking downloads with their SHA-256 hashes.

Skill for Claude CodeCodex

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

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.

agentmods
npx agentmods add skills/hashgraph-online/awesome-codex-plugins/finding-latest-julia-version
Any agent
npx skills add hashgraph-online/awesome-codex-plugins --skill finding-latest-julia-version
Clone the repo
git clone --depth 1 https://github.com/hashgraph-online/awesome-codex-plugins

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 finding-latest-julia-version

README.md
[![agentmods](https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/finding-latest-julia-version.svg)](https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/finding-latest-julia-version)
Your own site
<a href="https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/finding-latest-julia-version"><img src="https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/finding-latest-julia-version.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 667 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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.00039 $0.00667
Opus 5 $0.00019 $0.00333
Sonnet 5 $0.00008 $0.00133
Haiku 4.5 $0.00004 $0.00067

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

Security

Grade A, and why

finding-latest-julia-version scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://julialang-s3.julialang.org/bin/versions.json \
plugins/AtelierArith/atelier-arith-julia-development-skills/skills/finding-latest-julia-version/SKILL.md · 74 lines

How it starts

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

Finding the Latest Stable Julia Version

Hard-coding VERSION=1.x.y rots quickly. JuliaLang publishes machine-readable metadata; query it directly.

Preferred: official versions.json

This is the same source juliaup and the official installer use. Each release carries a stable: true|false flag plus per-platform tarball URLs and SHA-256 hashes — useful both for picking a version and for verifying the download.

curl -fsSL https://julialang-s3.julialang.org/bin/versions.json \
  | jq -r 'to_entries
           | map(select(.value.stable))
           | map(.key)
           | sort_by(split(".") | map(tonumber? // 0))
           | last'
# → 1.12.6   (example, as of writing)

If jq is unavailable, use Python:

curl -fsSL https://julialang-s3.julialang.org/bin/versions.json \
  | python3 -c 'import sys, json
d = json.load(sys.stdin)
stable = [v for v, m in d.items() if m.get("stable")]
stable.sort(key=lambda s: tuple(int(x) for x in s.split("-")[0].split(".")))
print(stable[-1])'

To list the latest patch within a specific minor series (e.g., the newest 1.11.x):

curl -fsSL https://julialang-s3.julialang.org/bin/versions.json \
  | jq -r 'to_entries
           | map(select(.value.stable and (.key | startswith("1.11."))))
           | map(.key)
           | sort_by(split(".") | map(tonumber? // 0))
           | last'

Fallback: GitHub Releases API

Use when the S3 endpoint is blocked but api.github.com is reachable. Note that GitHub's "latest" tag follows GitHub release marking, not the JuliaLang stable flag, so prefer versions.json when both work.

curl -fsSL https://api.github.com/repos/JuliaLang/julia/releases/latest \
  | jq -r .tag_name | sed 's/^v//'
# → 1.12.6

Last resort: human page

Open https://julialang.org/downloads/ and read the "Current stable release" line. Only do this when no automated approach works; the page is HTML and shape-changes break scrapers.

Notes

  • versions.json also gives you files[].url and files[].sha256 per platform — use these to script a verified download instead of constructing the URL by hand.
  • This skill returns a version string; the actual install steps live in [[installing-julia]].

Read the full file on GitHub · 74 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. 6d ago First seen · 74 lines · 39 tokens per session scan A 00caa6004cfe

Subscribe to this mod's changes

finding-latest-julia-version is a skill published in the GitHub repository hashgraph-online/awesome-codex-plugins (924 stars, last pushed yesterday), licensed Apache-2.0. It adds 39 tokens to every session and 667 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

search

Search 2500+ curated ChatGPT and LLM open-source repositories. Use when the user asks to find tools, libraries, or repos related to ChatGPT, LLMs, RAG, agents, langchain, NLP, AI development, or any open-source AI tooling.

taishi-i/awesome-ChatGPT-repositories · 57 tokens

python-expert

Use for Python code changes, FastAPI/Django/Flask services, packaging, typing, async, pytest, data scripts, dependency hygiene, or Python performance fixes.

DominikTobureto/awesome-grok-build · 38 tokens

it-training-instructor

Expert-level IT Training Instructor with deep knowledge of coding bootcamps, software development curricula, programming pedagogy, and technical skill development. Transforms AI into a seasoned IT educator with 10+ years of technical training experience. Use when: it-training, coding-courses, software-education…

theneoai/awesome-skills · 0 tokens

go-gin-generator

Generate production-ready Go projects using the Gin framework with modern best practices, multiple templates, database integration, authentication, and comprehensive features for building scalable web applications and microservices.

kuku0922/awesome-ai-coding-enhance · 39 tokens

vue3-generator

Generate production-ready Vue 3 frontend projects with TypeScript, Vite, Vue Router, and Pinia using modern best practices and the latest stable versions.

kuku0922/awesome-ai-coding-enhance · 35 tokens

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens