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 agentmods add skills/hashgraph-online/awesome-codex-plugins/finding-latest-julia-versionnpx skills add hashgraph-online/awesome-codex-plugins --skill finding-latest-julia-versiongit clone --depth 1 https://github.com/hashgraph-online/awesome-codex-pluginsWrote 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/hashgraph-online/awesome-codex-plugins/finding-latest-julia-version)<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>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.00039 | $0.00667 |
| Opus 5 | $0.00019 | $0.00333 |
| Sonnet 5 | $0.00008 | $0.00133 |
| Haiku 4.5 | $0.00004 | $0.00067 |
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 \ 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.jsonalso gives youfiles[].urlandfiles[].sha256per 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]].
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 · 74 lines · 39 tokens per session scan A 00caa6004cfe
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.
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.
python-expert
Use for Python code changes, FastAPI/Django/Flask services, packaging, typing, async, pytest, data scripts, dependency hygiene, or Python performance fixes.
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…
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.
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.
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.