@astroanywhere/agent 0.1.4 → 0.1.5
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.
- package/README.md +12 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Create an account at [astroanywhere.com](https://astroanywhere.com) — you'
|
|
|
35
35
|
## Install
|
|
36
36
|
|
|
37
37
|
```bash
|
|
38
|
-
npx @astroanywhere/agent launch
|
|
38
|
+
npx @astroanywhere/agent@latest launch
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
One command. It detects your AI providers, finds your SSH hosts, authenticates you, sets up everything, and starts listening for tasks.
|
|
@@ -45,7 +45,7 @@ No global install. `npx` fetches the latest version.
|
|
|
45
45
|
## What Happens
|
|
46
46
|
|
|
47
47
|
```
|
|
48
|
-
$ npx @astroanywhere/agent launch
|
|
48
|
+
$ npx @astroanywhere/agent@latest launch
|
|
49
49
|
|
|
50
50
|
Detecting providers... claude-sdk, claude-code
|
|
51
51
|
Discovering SSH hosts... found 3: lab-gpu, hpc-login, aws-dev
|
|
@@ -99,26 +99,26 @@ Your API keys stay on your machine. Astro never sees them.
|
|
|
99
99
|
|
|
100
100
|
```bash
|
|
101
101
|
# First time — set up everything and start
|
|
102
|
-
npx @astroanywhere/agent launch
|
|
102
|
+
npx @astroanywhere/agent@latest launch
|
|
103
103
|
|
|
104
104
|
# Local only, skip SSH host discovery
|
|
105
|
-
npx @astroanywhere/agent launch --no-ssh-config
|
|
105
|
+
npx @astroanywhere/agent@latest launch --no-ssh-config
|
|
106
106
|
|
|
107
107
|
# Start (already set up)
|
|
108
|
-
npx @astroanywhere/agent start -f
|
|
108
|
+
npx @astroanywhere/agent@latest start -f
|
|
109
109
|
|
|
110
110
|
# Stop
|
|
111
|
-
npx @astroanywhere/agent stop
|
|
111
|
+
npx @astroanywhere/agent@latest stop
|
|
112
112
|
|
|
113
113
|
# Check what's running
|
|
114
|
-
npx @astroanywhere/agent status
|
|
114
|
+
npx @astroanywhere/agent@latest status
|
|
115
115
|
|
|
116
116
|
# Set up Claude authentication
|
|
117
|
-
npx @astroanywhere/agent auth
|
|
117
|
+
npx @astroanywhere/agent@latest auth
|
|
118
118
|
|
|
119
119
|
# View or change settings
|
|
120
|
-
npx @astroanywhere/agent config --show
|
|
121
|
-
npx @astroanywhere/agent config --set maxTasks=8
|
|
120
|
+
npx @astroanywhere/agent@latest config --show
|
|
121
|
+
npx @astroanywhere/agent@latest config --set maxTasks=8
|
|
122
122
|
```
|
|
123
123
|
|
|
124
124
|
## Remote Machines
|
|
@@ -128,7 +128,7 @@ npx @astroanywhere/agent config --set maxTasks=8
|
|
|
128
128
|
To set up a single remote machine manually, SSH in and run:
|
|
129
129
|
|
|
130
130
|
```bash
|
|
131
|
-
npx @astroanywhere/agent launch --no-ssh-config
|
|
131
|
+
npx @astroanywhere/agent@latest launch --no-ssh-config
|
|
132
132
|
```
|
|
133
133
|
|
|
134
134
|
Astro picks the best available machine for each task based on load and capabilities.
|
|
@@ -148,7 +148,7 @@ Auto-detected. No configuration needed if any of these are installed:
|
|
|
148
148
|
Use the agent runner as an MCP server inside Claude Code:
|
|
149
149
|
|
|
150
150
|
```bash
|
|
151
|
-
npx @astroanywhere/agent mcp
|
|
151
|
+
npx @astroanywhere/agent@latest mcp
|
|
152
152
|
```
|
|
153
153
|
|
|
154
154
|
This gives Claude Code access to Astro tools — attach to tasks, send updates, check status.
|