docs: add network-deployed-version skill - #24238
Merged
PhilWindle merged 1 commit intoJun 24, 2026
Merged
Conversation
Adds a skill for determining which git commit an Aztec network (next-net, devnet, staging) is running at a given time, and whether a specific fix or PR is live. The investigation (gh/gcloud queries) runs in a subagent so it doesn't pollute the main conversation context.
Collaborator
Flakey Tests🤖 says: This CI run detected 2 tests that failed, but were tolerated due to a .test_patterns.yml entry. |
PhilWindle
approved these changes
Jun 24, 2026
rangozd
pushed a commit
to rangozd/aztec-packages
that referenced
this pull request
Aug 5, 2026
BEGIN_COMMIT_OVERRIDE docs: add network-deployed-version skill (AztecProtocol#24238) docs: require self-contained code comments (AztecProtocol#24239) fix(archiver): validate checkpoint attestations from calldata before fetching blobs (A-1252) (AztecProtocol#24247) fix(sequencer): prune in failed-sync fallback so the chain can recover (AztecProtocol#24253) END_COMMIT_OVERRIDE
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.
Adds a
network-deployed-versionskill that determines which git commit an Aztec network (next-net, devnet, staging) is running now or was running at a past time T, and whether a specific fix or PR is live on it. Useful for incident triage, confirming a fix reached a network, and identifying the exact deployed commit.Notes on the approach:
aztec-packages-privaterepo (next-net, devnet, staging-internal) or the publicaztec-packagesrepo (staging-public). The skill includes a table mapping each network to its workflow id, repo, source branch, and cadence.gh/gcloudqueries that produce run lists and file dumps) runs in a subagent, so it doesn't pollute the main conversation context — the main agent only relays the condensed answer.