بنقرة واحدة
runtime-version-check
// Research and verify the latest versions of programming language runtimes (Node, Bun, Deno, Python, Go, etc.) using a two-phase verification process that prioritizes accuracy over speed.
// Research and verify the latest versions of programming language runtimes (Node, Bun, Deno, Python, Go, etc.) using a two-phase verification process that prioritizes accuracy over speed.
| name | runtime-version-check |
| description | Research and verify the latest versions of programming language runtimes (Node, Bun, Deno, Python, Go, etc.) using a two-phase verification process that prioritizes accuracy over speed. |
A systematic process for researching and verifying the latest versions of programming language runtimes. This skill prioritizes accuracy over speed.
Use this skill when the user:
Use web searches to gather initial version information and context. This provides:
Search query pattern: "<runtime> latest version release <current_year>"
Example searches:
Bun runtime latest version release 2026
Go golang latest version release 2026
.NET dotnet latest version release 2026
Important: Treat all information from Phase 1 as UNVERIFIED. Do not use these versions in the final output without Phase 2 verification.
For EACH runtime, fetch the authoritative source directly using WebFetch. This is the critical step that ensures accuracy.
Run these WebFetch calls to verify each runtime:
JavaScript/TypeScript Runtimes:
WebFetch: https://github.com/oven-sh/bun/releases - Prompt: "What is the latest release version number and date?"WebFetch: https://github.com/denoland/deno/releases - Prompt: "What is the latest release version number and date?"WebFetch: https://github.com/nodejs/node/releases - Prompt: "What is the latest release version number and date?"Systems Languages:
WebFetch: https://go.dev/dl/ - Prompt: "What is the latest stable Go version available for download?"WebFetch: https://github.com/ruby/ruby/releases - Prompt: "What is the latest release version number and date?"WebFetch: https://github.com/swiftlang/swift/releases - Prompt: "What is the latest release version number and date?"JVM Languages:
WebFetch: https://www.oracle.com/java/technologies/downloads/ - Prompt: "What is the latest Java JDK version available for download?"WebFetch: https://github.com/JetBrains/kotlin/releases - Prompt: "What is the latest stable release version number and date?"Web/Scripting Languages:
WebFetch: https://github.com/php/php-src/releases - Prompt: "What is the latest release version number and date?"WebFetch: https://www.python.org/downloads/ - Prompt: "What is the latest stable Python version available for download?"Mobile/Cross-Platform:
WebFetch: https://docs.flutter.dev/release/release-notes - Prompt: "What is the latest stable Flutter version?"WebFetch: https://dart.dev/get-dart/archive - Prompt: "What is the latest stable Dart SDK version listed?"Framework/Platform:
WebFetch: https://dotnet.microsoft.com/en-us/download/dotnet - Prompt: "What is the latest .NET version available?"Standards (not runtime):
WebFetch: https://isocpp.org/std/status - Prompt: "What is the current C++ standard and what is the upcoming standard?"If Phase 1 (web search) and Phase 2 (direct fetch) show different versions:
Common discrepancy patterns:
Create the output with:
# Latest Runtime Versions
*Last updated: <date>*
*Verified from official GitHub releases and download pages*
| Runtime | Latest Version | Release Date | Notes |
|---------|---------------|--------------|-------|
| **Bun** | x.x.x | <date> | <notes> |
...
---
## Detailed Information
### <Runtime>
- **Version:** x.x.x
- **Release Date:** <date>
- **Highlights:** <features>
- **Upcoming:** <next version info>
- **Source:** [<source name>](<url>)
...
---
## Verification Sources
| Runtime | Primary Source |
|---------|---------------|
| Bun | https://github.com/oven-sh/bun/releases |
...
Some projects don't use GitHub Releases. Try:
/tags page instead of /releasesKnown projects without GitHub Releases:
Some pages load versions via JavaScript. Try:
Document both when relevant:
Example runtimes with dual tracks: