fix: remove broken WAA submodule, embed startup script#22
Merged
Conversation
The vendor/WindowsAgentArena submodule pointed to unpushed local commits (a956c5b) that don't exist upstream, breaking git-based pip installs. - Remove submodule entirely (not a runtime dependency) - Embed the 9-line compute-instance-startup.sh as a constant in cli.py - Update path references in Azure ML commands to not depend on vendor/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
vendor/WindowsAgentArenasubmodule — it pointed to unpushed local commits (a956c5b) that don't exist upstream, breakingpip installfrom gitcompute-instance-startup.shas a constant in cli.pyvendor/The submodule was never a runtime dependency (not in the wheel, zero Python imports, zero test references). It was a convenience reference for the optional
run-azure-ml --setupcommand.Root cause
4 local commits were made directly inside the submodule (Azure ML VM size tweaks, SDK v2 migration on Feb 2, 2026) but never pushed to Microsoft's upstream repo.
Test plan
pip installfrom git will no longer fail on submodule init🤖 Generated with Claude Code