@agentrq/agentrq-ws 0.7.2 → 0.7.4
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ The AgentRQ workspace client: everything an agent can do in a workspace, from a
|
|
|
4
4
|
shell, without spending an agent's tokens to do it.
|
|
5
5
|
|
|
6
6
|
```bash
|
|
7
|
-
npx @agentrq/agentrq-ws@latest help
|
|
7
|
+
npx -y @agentrq/agentrq-ws@latest help
|
|
8
8
|
```
|
|
9
9
|
|
|
10
10
|
It reads the `.mcp.json` in the current directory — the same file the agent
|
|
@@ -13,7 +13,7 @@ configure.
|
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
cd ~/code/my-workspace
|
|
16
|
-
npx @agentrq/agentrq-ws@latest workspace
|
|
16
|
+
npx -y @agentrq/agentrq-ws@latest workspace
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
## Why it exists
|
|
@@ -28,7 +28,7 @@ below.
|
|
|
28
28
|
|
|
29
29
|
## Install
|
|
30
30
|
|
|
31
|
-
Nothing to install: `npx @agentrq/agentrq-ws@latest <command>` fetches it on
|
|
31
|
+
Nothing to install: `npx -y @agentrq/agentrq-ws@latest <command>` fetches it on
|
|
32
32
|
demand, and it has no runtime dependencies. To keep it around:
|
|
33
33
|
|
|
34
34
|
```bash
|
package/package.json
CHANGED