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 +21 -1
- package/dist/js/bin.mjs +1 -1
- package/package.json +1 -1
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