@mightybot/mbcli 0.6.17-rc.1708 → 0.6.17-rc.1712

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 +7 -6
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -94,22 +94,23 @@ mb setup [auth flags] # mb auth login + mb mcp install --agent all
94
94
  ```
95
95
 
96
96
  Logs in (browser device auth) and registers the MCP server with all detected
97
- agents. Auth flags pass through (e.g. `--base-url <your-platform-url>`).
97
+ agents. Auth flags pass through (for example, `--profile dev --base-url
98
+ https://platform-dev.mightybot.ai`). The installed MCP launcher defaults to
99
+ `prod`; start `mb --profile dev mcp` for a profile-specific server.
98
100
 
99
101
  ### `mb auth` — platform authentication
100
102
 
101
103
  | Command | What it does |
102
104
  |---|---|
103
- | `mb auth login` | Browser device-code login; stores the token under `~/.mightybot`. |
105
+ | `mb auth login [--profile NAME]` | Browser device-code login; stores the token in a global named profile. |
104
106
  | `mb auth inspect` | Show the active profile/backend and token status. |
105
107
  | `mb auth profile` | Print the current auth profile (tenant, user, backend URL). |
106
108
  | `mb auth configure` | Set/switch the backend (base URL, environment). |
107
109
  | `mb auth probe-write` | Pre-flight check that the token can perform writes. |
108
110
 
109
- > Inside a git repository `mb` uses that checkout's own `.mightybot.json`, so
110
- > each worktree keeps its own backend and token. Outside one it falls back to a
111
- > single global profile, where the last `mb auth login` wins. Confirm the
112
- > active backend with `mb auth inspect` before any write.
111
+ > Profiles live under `~/.mightybot/mb/profiles/` and work from every worktree.
112
+ > Omit `--profile` for built-in production, or run commands with `mb --profile
113
+ > dev ...`. No last-used selection is persisted.
113
114
 
114
115
  ### `mb mcp` — local design-time MCP server
115
116
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mightybot/mbcli",
3
- "version": "0.6.17-rc.1708",
3
+ "version": "0.6.17-rc.1712",
4
4
  "description": "MightyBot mb CLI and local MCP server",
5
5
  "bin": {
6
6
  "mb": "bin/mb.js"
@@ -15,11 +15,11 @@
15
15
  "license": "UNLICENSED",
16
16
  "private": false,
17
17
  "optionalDependencies": {
18
- "@mightybot/mbcli-darwin-arm64": "0.6.17-rc.1708",
19
- "@mightybot/mbcli-darwin-x64": "0.6.17-rc.1708",
20
- "@mightybot/mbcli-linux-x64": "0.6.17-rc.1708",
21
- "@mightybot/mbcli-linux-arm64": "0.6.17-rc.1708",
22
- "@mightybot/mbcli-win32-x64": "0.6.17-rc.1708"
18
+ "@mightybot/mbcli-darwin-arm64": "0.6.17-rc.1712",
19
+ "@mightybot/mbcli-darwin-x64": "0.6.17-rc.1712",
20
+ "@mightybot/mbcli-linux-x64": "0.6.17-rc.1712",
21
+ "@mightybot/mbcli-linux-arm64": "0.6.17-rc.1712",
22
+ "@mightybot/mbcli-win32-x64": "0.6.17-rc.1712"
23
23
  },
24
24
  "homepage": "https://mightybot.ai"
25
25
  }