rayrun 0.1.0 → 0.4.0

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 CHANGED
@@ -1,14 +1,17 @@
1
1
  # Rayrun CLI
2
2
 
3
- Connect supported MCP clients to a Rayrun workspace endpoint without copying configuration by
4
- hand.
3
+ Connect supported MCP clients, execute OAuth-bound tools, or manage workspace services, policy,
4
+ approvals, and activity through the public API.
5
5
 
6
6
  ```sh
7
7
  npx rayrun setup https://copy-the-endpoint-from-rayrun.example/mcp
8
+ npx rayrun tools describe linear.create_issue
9
+ npx rayrun call linear.create_issue '{"title":"Fix the release"}'
10
+ npx rayrun connections list
8
11
  ```
9
12
 
10
13
  This package is the short command for [`@rayrun/cli`](https://www.npmjs.com/package/@rayrun/cli).
11
14
  Both names run the same version of the same CLI.
12
15
 
13
- See the [CLI documentation](https://ray.run/docs/cli) for client selection, dry runs, project
14
- configuration, login behavior, and rollback.
16
+ See the [CLI documentation](https://ray.run/docs/cli) for setup, OAuth execution and resume, rollback,
17
+ service connections, tool search, policy inspection, approvals, and activity.
package/index.test.js CHANGED
@@ -12,7 +12,7 @@ const cliPackage = JSON.parse(
12
12
  await readFile(new URL(import.meta.resolve('@rayrun/cli/package.json')), 'utf8'),
13
13
  );
14
14
 
15
- test('pins and launches the matching CLI release', async () => {
15
+ void test('pins and launches the matching CLI release', async () => {
16
16
  assert.equal(launcherPackage.version, cliPackage.version);
17
17
  assert.equal(
18
18
  launcherPackage.dependencies['@rayrun/cli'].replace(/^workspace:/u, ''),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rayrun",
3
- "version": "0.1.0",
4
- "description": "Safely connect local MCP clients to Rayrun",
3
+ "version": "0.4.0",
4
+ "description": "Set up MCP clients, execute tools, and manage Rayrun from the command line",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -21,13 +21,13 @@
21
21
  "publishConfig": {
22
22
  "access": "public"
23
23
  },
24
- "scripts": {
25
- "test": "node --test index.test.js"
26
- },
27
24
  "dependencies": {
28
- "@rayrun/cli": "workspace:0.1.0"
25
+ "@rayrun/cli": "0.4.0"
29
26
  },
30
27
  "engines": {
31
28
  "node": ">=20"
29
+ },
30
+ "scripts": {
31
+ "test": "node --test index.test.js"
32
32
  }
33
- }
33
+ }