@mightybot/mbcli 0.5.412 → 0.5.417
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 +17 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -73,6 +73,23 @@ npx @mightybot/mbcli@latest version # re-resolves the latest tag
|
|
|
73
73
|
npx --prefer-online @mightybot/mbcli version # revalidates cache against the registry
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
+
### Release-age cooldown
|
|
77
|
+
|
|
78
|
+
If your npm config sets `min-release-age` (the MightyBot repo `.npmrc` sets
|
|
79
|
+
`min-release-age=7` as a supply-chain guard), npm refuses any version published
|
|
80
|
+
in the last N days — so a **same-day release fails with `ENOVERSIONS` / "No
|
|
81
|
+
versions available for @mightybot/mbcli"** even though it published fine.
|
|
82
|
+
Override the cooldown to install a fresh build:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
npx --min-release-age=0 @mightybot/mbcli@latest # CLI flag, or
|
|
86
|
+
npm_config_min_release_age=0 npx @mightybot/mbcli@latest # env var
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
Once the build is older than the cooldown window, plain `npx …` works with no
|
|
90
|
+
flag. (This guard is intentional — it protects against installing a
|
|
91
|
+
freshly-compromised package; the override is only for trusted same-day builds.)
|
|
92
|
+
|
|
76
93
|
## One-step setup (auth + MCP)
|
|
77
94
|
|
|
78
95
|
After installing, run **one** command to get fully provisioned — it logs you in
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mightybot/mbcli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.417",
|
|
4
4
|
"description": "MightyBot mb CLI and local design-time 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.5.
|
|
19
|
-
"@mightybot/mbcli-darwin-x64": "0.5.
|
|
20
|
-
"@mightybot/mbcli-linux-x64": "0.5.
|
|
21
|
-
"@mightybot/mbcli-linux-arm64": "0.5.
|
|
22
|
-
"@mightybot/mbcli-win32-x64": "0.5.
|
|
18
|
+
"@mightybot/mbcli-darwin-arm64": "0.5.417",
|
|
19
|
+
"@mightybot/mbcli-darwin-x64": "0.5.417",
|
|
20
|
+
"@mightybot/mbcli-linux-x64": "0.5.417",
|
|
21
|
+
"@mightybot/mbcli-linux-arm64": "0.5.417",
|
|
22
|
+
"@mightybot/mbcli-win32-x64": "0.5.417"
|
|
23
23
|
},
|
|
24
24
|
"homepage": "https://mightybot.ai"
|
|
25
25
|
}
|