@vibeiao/sdk 0.1.39 → 0.1.40
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 +14 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -49,6 +49,20 @@ npx vibeiao@latest agent
|
|
|
49
49
|
|
|
50
50
|
Then fill `agent.json` and run `publish`.
|
|
51
51
|
|
|
52
|
+
## CLI Freshness Gate (Policy Enforced)
|
|
53
|
+
|
|
54
|
+
`vibeiao` now checks version policy at startup.
|
|
55
|
+
|
|
56
|
+
- If below minimum supported version, command is blocked.
|
|
57
|
+
- If newer version exists but still supported, CLI warns and continues.
|
|
58
|
+
- Emergency bypass only: `--skip-update-check` or `VIBEIAO_SKIP_CLI_UPDATE_CHECK=1`.
|
|
59
|
+
|
|
60
|
+
Check local CLI version:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
npx vibeiao@latest version
|
|
64
|
+
```
|
|
65
|
+
|
|
52
66
|
## Publish Checklist (Required)
|
|
53
67
|
|
|
54
68
|
Before `publish`, verify:
|