You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user-facing "install manually" hint printed by the Python SDK when the aasm
runtime binary is missing pointed at a non-existent Homebrew tap. The command brew install agent-assembly/tap/aasm is missing the ai- org prefix, so Homebrew
resolves it to github.com/agent-assembly/homebrew-tap — an org that does not exist —
and the install fails with a 404. The canonical command is brew install ai-agent-assembly/tap/aasm.
This PR corrects the command in both places it appears in the SDK, and updates the
README repo-table row to point at the renamed homebrew-tap repository (previously
labelled and linked as homebrew-agent-assembly).
1. CI: Green. All required checks pass (SonarCloud pass); skipping jobs are the release-only docs/e2e-codecov stages that don't run on a non-release PR. 2. Scope: Covers the subtask fully — runtime.py:41 + _install.py:34 install hints now ai-agent-assembly/tap/aasm; README.md:277 tap link/label → homebrew-tap. Grep: 0 residual bare agent-assembly/tap, 0 homebrew-agent-assembly. 3. Side effects: None. Edits are inside user-facing hint strings + a README table link; no code path, API, or business logic touched. The old agent-assembly/tap/aasm was a hard 404 (org doesn't exist) — this strictly fixes broken UX. 4. Front-end: N/A — no FE code in this PR.
Verdict: ready to approve + merge (mergeable; BLOCKED = awaiting required Pioneer approval). — Claude Code
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
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.
Description
The user-facing "install manually" hint printed by the Python SDK when the
aasmruntime binary is missing pointed at a non-existent Homebrew tap. The command
brew install agent-assembly/tap/aasmis missing theai-org prefix, so Homebrewresolves it to
github.com/agent-assembly/homebrew-tap— an org that does not exist —and the install fails with a 404. The canonical command is
brew install ai-agent-assembly/tap/aasm.This PR corrects the command in both places it appears in the SDK, and updates the
README repo-table row to point at the renamed
homebrew-taprepository (previouslylabelled and linked as
homebrew-agent-assembly).Type of Change
Breaking Changes
Related Issues
Exact Changes
agent_assembly/runtime.py(INSTALL_HINT):brew install agent-assembly/tap/aasm→brew install ai-agent-assembly/tap/aasmagent_assembly/_install.py(INSTALL_HINT):brew install agent-assembly/tap/aasm→brew install ai-agent-assembly/tap/aasmREADME.md(repo table): linkgithub.com/ai-agent-assembly/homebrew-agent-assembly→github.com/ai-agent-assembly/homebrew-tap, and visible labelhomebrew-agent-assembly→homebrew-tapTesting
These are user-facing string edits (install hints + a doc link); there is no logic
change to test. Validation performed:
python -m py_compile agent_assembly/runtime.py agent_assembly/_install.py→ exit 0.ruffis not installed on this machine, so the lint step was skipped (noted).agent-assembly/tapwithout theai-prefix, noai-ai-doubling, no residualhomebrew-agent-assembly.Checklist
🤖 Generated with Claude Code