@sandagent/runner-cli 0.2.6 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -32,7 +32,11 @@ Dependencies:
32
32
  ## Installation
33
33
 
34
34
  ```bash
35
- pnpm add @sandagent/runner-cli
35
+ # Global install (recommended if you want the `sandagent` command)
36
+ npm install -g @sandagent/runner-cli@beta
37
+
38
+ # Or add to a project
39
+ npm install @sandagent/runner-cli@beta
36
40
  ```
37
41
 
38
42
  ## Usage
@@ -41,6 +45,12 @@ pnpm add @sandagent/runner-cli
41
45
  sandagent run [options] -- "<user input>"
42
46
  ```
43
47
 
48
+ Without installing globally, you can also run it via `npx`:
49
+
50
+ ```bash
51
+ npx -y @sandagent/runner-cli@beta run -- "Create a hello world script"
52
+ ```
53
+
44
54
  ### Basic Examples
45
55
 
46
56
  ```bash
@@ -150,4 +160,3 @@ The CLI is designed to:
150
160
 
151
161
  - [Claude Agent SDK](https://platform.claude.com/docs/agent-sdk/typescript)
152
162
  - [AI SDK UI Stream Protocol](https://ai-sdk.dev/docs/ai-sdk-ui/stream-protocol)
153
-
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sandagent/runner-cli",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "SandAgent Runner CLI - Like gemini-cli or claude-code, runs in your local terminal with AI SDK UI streaming",
5
5
  "type": "module",
6
6
  "bin": {