From 22edb3f101af327afdcab5fb7532372bbca13913 Mon Sep 17 00:00:00 2001 From: geobelsky Date: Tue, 24 Mar 2026 12:58:11 +0000 Subject: [PATCH] docs: add source hint after CLI install command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Install script runs in a subprocess — PATH update only takes effect in new terminals. Add source hint so users can use axme immediately. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1c6903e..a702a9d 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ AXME is not async RPC. Not a simplified Temporal. Not an agent framework. Not an ```bash # Install the CLI curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-cli/main/install.sh | sh +source ~/.zshrc # or open a new terminal # Authenticate axme login @@ -180,6 +181,7 @@ All SDKs implement the same AXP protocol surface. All are currently at **v0.1.2 ```bash curl -fsSL https://raw.githubusercontent.com/AxmeAI/axme-cli/main/install.sh | sh +source ~/.zshrc # or open a new terminal ``` ---