skydive-cli 0.1.0-beta.342 → 0.1.0-beta.347

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
@@ -70,6 +70,26 @@ skydive portal status
70
70
 
71
71
  Global flags: `--json`, `--quiet`, `--api-url <url>`.
72
72
 
73
+ ## Workspaces
74
+
75
+ Every `skydive` command acts inside one **workspace** — the org/team boundary
76
+ that owns your agents, conversations, and secrets. If your account belongs to
77
+ several workspaces (say, your company org and a personal one), the same agent
78
+ name can exist in both, so which workspace is active determines what every
79
+ command sees.
80
+
81
+ - `skydive workspace list` — workspaces on your account, with the active one
82
+ marked.
83
+ - `skydive workspace switch [workspace]` — change the active workspace. All
84
+ commands — `agents`, `secrets`, `keys`, `chat`, `conversations` — follow it.
85
+ - `skydive auth status` — shows who you're logged in as and which workspace is
86
+ active.
87
+ - In the chat TUI, `ctrl+w` switches workspace from the agent picker.
88
+
89
+ The active workspace is stored in the CLI config file and persists across
90
+ invocations. If a command can't find an agent you know exists, check
91
+ `skydive auth status` first — you're probably in the wrong workspace.
92
+
73
93
  ## `skydive secrets`
74
94
 
75
95
  Manage the environment secrets injected into an agent's sandbox. All
@@ -250,7 +270,7 @@ environments, and driving agents from other tools:
250
270
  ```sh
251
271
  skydive portal open # connect and stay in the foreground (ctrl+c to close)
252
272
  skydive portal open --agent grace # …and grant that agent on first connect
253
- skydive portal open --cwd ~/some/repo # working directory for the agent's commands
273
+ skydive portal open --cwd ~/some/repo # working directory for the agent's commands (a starting point, not a boundary — see above)
254
274
  skydive portal grant --agent grace # allow an agent (registers this machine if needed)
255
275
  skydive portal revoke --agent grace # remove an agent's access
256
276
  skydive portal status # machines, connection state, granted agents
package/dist/js/bin.mjs CHANGED
@@ -16,7 +16,7 @@ import zlib from "node:zlib";
16
16
  import os from "node:os";
17
17
 
18
18
  //#region package.json
19
- var version$1 = "0.1.0-beta.342";
19
+ var version$1 = "0.1.0-beta.347";
20
20
 
21
21
  //#endregion
22
22
  //#region src/types.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skydive-cli",
3
- "version": "0.1.0-beta.342",
3
+ "version": "0.1.0-beta.347",
4
4
  "description": "Skydive CLI — manage AI agents from the command line",
5
5
  "homepage": "https://skydive.com",
6
6
  "license": "MIT",