chore: regenerate committed SKILL.md for v0.44.1#1505
Merged
jamesadevine merged 1 commit intoJul 13, 2026
Conversation
The committed .github/skills/ado-aw/SKILL.md carried stale v0.44.0 x-release-please-version markers (added in #1499) while the crate is at 0.44.1. tests/init_tests.rs::test_committed_skill_file_matches_template_output regenerates the skill from src/data/init-skill.md and compares byte-for-byte, so this drift fails the required Build & Test check on main and on every branch cut from it. Bump the three prompt URLs + AGENTS.md reference to v0.44.1 to match the template output. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: f30758a5-81c8-4024-ab01-52ad22b4f877
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes stale
x-release-please-versionmarkers in the committed.github/skills/ado-aw/SKILL.md.The skill file was committed in #1499 with
v0.44.0prompt/AGENTS URLs, but the crate has since been released as0.44.1.tests/init_tests.rs::test_committed_skill_file_matches_template_outputregenerates the skill fromsrc/data/init-skill.md(substituting the current crate version) and compares it byte-for-byte against the committed file, so this drift fails the requiredBuild & Testcheck onmain— and therefore on every branch cut from it.This bumps the three prompt URLs and the AGENTS.md reference from
v0.44.0→v0.44.1to match the template output. No behavior change.Test plan
cargo test --test init_tests test_committed_skill_file_matches_template_output— now passes (was failing onmain).