[AAASM-2850] 🐛 (docs): Fix Python install package name + add Go install channel#16
Conversation
Org profile README listed a non-existent PyPI package 'agent-assembly-python' (404); the real package is 'agent-assembly'. Fixes pip/uv/poetry commands. Also adds the missing Go install channel (go get) for parity with the other SDKs. Fixes AAASM-2850
🤖 Claude Code — PR reviewScope: AAASM-2850 — fix incorrect SDK install instructions in the org profile README. CI — ✅ nothing to fixThe Scope coverage — ✅ completeVerified against the ticket acceptance criteria and the diff (
The fix also resolves the README's internal contradiction — its own PyPI badge already pointed at ReadinessReady to merge pending owner (Pioneer) review. One atomic, GitEmoji-conventioned doc commit; no CI to gate; no acceptance/SonarCloud items. Not merged; no formal approval submitted — recording this as a review note. |
Description
The organization profile README (
profile/README.md, shown at https://github.com/ai-agent-assembly) had incorrect SDK install instructions vs. the canonical per-repo READMEs. This fixes both.Type of Change
Related Issues
What changed
1. Python install — wrong package name (broken for users).
The install block told users to install
agent-assembly-python, which does not exist on PyPI (https://pypi.org/pypi/agent-assembly-python/json→ 404). The real package isagent-assembly(→ 200), as documented in the python-sdk README and as the org README's own PyPI badge already links to. Fixed all three commands:2. Go install channel — missing.
The Install channels section listed Homebrew, Python, Node, Docker, and curl but had no Go channel, despite go-sdk being a first-class SDK. Added it for parity:
Verified correct (left unchanged)
@agent-assembly/sdkis the right package; npmlatestdist-tag =0.0.1-alpha.3, so the plain install resolves.How to verify
curl -s -o /dev/null -w '%{http_code}' https://pypi.org/pypi/agent-assembly/json→200curl -s -o /dev/null -w '%{http_code}' https://pypi.org/pypi/agent-assembly-python/json→404(the removed name)go get github.com/ai-agent-assembly/go-sdkprofile/README.md).🤖 Generated with Claude Code