@caffeineai/cli 0.1.0-dev.50 → 0.1.0-dev.51

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.
Files changed (2) hide show
  1. package/README.md +9 -1
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -13,6 +13,7 @@ package settles.
13
13
 
14
14
  - Device and browser-based login
15
15
  - Project listing, inspection, creation, cloning, and deletion
16
+ - Team workspace list, status, and switch (`X-Workspace-Id`)
16
17
  - Local install, build, check, preview, import, export, config, doctor, and update flows
17
18
  - Interactive and detached chat sessions over the Caffeine AI API
18
19
  - Browser chat hand-off when you want the web UI
@@ -51,6 +52,9 @@ Native binaries ship for:
51
52
  | Auth | `auth login [--device]` | Sign in via OAuth loopback or device flow |
52
53
  | Auth | `auth logout` | Sign out |
53
54
  | Auth | `auth status` | Show current session |
55
+ | Workspaces | `workspaces list` | List personal account and team workspaces |
56
+ | Workspaces | `workspaces status` | Show the selected workspace |
57
+ | Workspaces | `workspaces use <id>` | Persist a team workspace, or `personal` |
54
58
  | Projects | `projects list` | List your projects |
55
59
  | Projects | `projects show <id>` | Show project details |
56
60
  | Projects | `projects create <name>` | Create a new project |
@@ -139,6 +143,10 @@ Every command accepts `--json`. JSON output uses a stable envelope:
139
143
 
140
144
  Use `--non-interactive` in scripts and CI.
141
145
 
146
+ `--workspace <id>` and `--personal` are process-only account overrides. They
147
+ do not rewrite `workspace.selectedId`. `caffeine workspaces use` persists the
148
+ selection for later CLI and local MCP processes.
149
+
142
150
  ## Authentication
143
151
 
144
152
  `caffeine auth login` opens your browser for an OAuth flow. For CI, remote
@@ -156,7 +164,7 @@ MCP host with the companion MCP server:
156
164
  npx -y @caffeineai/mcp@dev --version
157
165
  ```
158
166
 
159
- The CLI and MCP server share the same auth, project, build, and chat contract.
167
+ The CLI and MCP server share the same auth, workspace, project, build, and chat contract.
160
168
  One login flow can cover both tools on the same machine.
161
169
 
162
170
  ## Links
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caffeineai/cli",
3
- "version": "0.1.0-dev.50",
3
+ "version": "0.1.0-dev.51",
4
4
  "description": "Caffeine CLI",
5
5
  "homepage": "https://caffeine.ai",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -15,14 +15,14 @@
15
15
  "LICENSE"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "@caffeineai/cli-darwin-arm64": "0.1.0-dev.50",
19
- "@caffeineai/cli-darwin-x64": "0.1.0-dev.50",
20
- "@caffeineai/cli-linux-arm64-glibc": "0.1.0-dev.50",
21
- "@caffeineai/cli-linux-x64-glibc": "0.1.0-dev.50",
22
- "@caffeineai/cli-linux-arm64-musl": "0.1.0-dev.50",
23
- "@caffeineai/cli-linux-x64-musl": "0.1.0-dev.50",
24
- "@caffeineai/cli-win32-arm64": "0.1.0-dev.50",
25
- "@caffeineai/cli-win32-x64": "0.1.0-dev.50"
18
+ "@caffeineai/cli-darwin-arm64": "0.1.0-dev.51",
19
+ "@caffeineai/cli-darwin-x64": "0.1.0-dev.51",
20
+ "@caffeineai/cli-linux-arm64-glibc": "0.1.0-dev.51",
21
+ "@caffeineai/cli-linux-x64-glibc": "0.1.0-dev.51",
22
+ "@caffeineai/cli-linux-arm64-musl": "0.1.0-dev.51",
23
+ "@caffeineai/cli-linux-x64-musl": "0.1.0-dev.51",
24
+ "@caffeineai/cli-win32-arm64": "0.1.0-dev.51",
25
+ "@caffeineai/cli-win32-x64": "0.1.0-dev.51"
26
26
  },
27
27
  "preferGlobal": true,
28
28
  "publishConfig": {
@@ -31,6 +31,6 @@
31
31
  "caffeine": {
32
32
  "distribution": "npmjs",
33
33
  "packageName": "@caffeineai/cli",
34
- "publishedAt": "2026-09-03T07:11:03.649Z"
34
+ "publishedAt": "2026-09-04T06:48:29.359Z"
35
35
  }
36
36
  }