From 048739f9eeb86e9d4484a1707b094cb00245b6d5 Mon Sep 17 00:00:00 2001 From: Bryant Date: Sat, 4 Jul 2026 11:17:10 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(runtime):=20Point=20pip=20insta?= =?UTF-8?q?ll=20hint=20at=20canonical=20agent-assembly=20dist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The runtime install hint referenced the nonexistent PyPI distribution agent-assembly-python; the wheel publishes as agent-assembly. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_01R7vqjjo5nrebYNt8WnCNbz --- agent_assembly/runtime.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent_assembly/runtime.py b/agent_assembly/runtime.py index 22da85c..e5e4637 100644 --- a/agent_assembly/runtime.py +++ b/agent_assembly/runtime.py @@ -37,7 +37,7 @@ INSTALL_HINT = ( "agent-assembly runtime not found.\n" - " Install with: pip install agent-assembly-python[runtime]\n" + " Install with: pip install agent-assembly[runtime]\n" " Or manually: brew install ai-agent-assembly/tap/aasm\n" " curl -fsSL https://get.agent-assembly.io | sh" )