fetching-bicep-changelog

star 0

Fetches the latest Azure Bicep release notes directly from the GitHub releases page at github.com/Azure/bicep/releases. Use when release notes are needed as input for a summary or video, or when asked to retrieve the Azure Bicep changelog.

johnlokerse By johnlokerse schedule Updated 4/13/2026

name: fetching-bicep-changelog description: Fetches the latest Azure Bicep release notes directly from the GitHub releases page at github.com/Azure/bicep/releases. Use when release notes are needed as input for a summary or video, or when asked to retrieve the Azure Bicep changelog.

Fetching Bicep Changelog

Fetch the latest release notes directly from the GitHub releases page.

Steps

  1. Fetch https://github.com/Azure/bicep/releases
  2. Parse the HTML for the first (latest) release:
    • Release tag/version → first <a> with pattern v\d+\.\d+\.\d+ under the releases list
    • Release date → <relative-time> or datetime attribute near the release header
    • Changelog body → the release description text below the release header
    • Release URL → https://github.com/Azure/bicep/releases/tag/{tag}

Output

{
    "tag_name": "v0.41.0",
    "published_at": "YYYY-MM-DD",
    "html_url": "https://github.com/Azure/bicep/releases/tag/v0.41.0",
    "body": "## What's New\n- ..."
}
Install via CLI
npx skills add https://github.com/johnlokerse/changelog-video-tts-generator --skill fetching-bicep-changelog
Repository Details
star Stars 0
call_split Forks 0
navigation Branch main
article Path SKILL.md
More from Creator