@vectros-ai/cli 0.5.0 → 0.5.1
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/CHANGELOG.md +12 -0
- package/README.md +3 -0
- package/dist/cli.js +4 -2
- package/dist/cli.js.map +1 -1
- package/dist/cli.mjs +4 -2
- package/dist/cli.mjs.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to `@vectros-ai/cli` are documented here.
|
|
4
4
|
This project adheres to [Semantic Versioning](https://semver.org).
|
|
5
5
|
|
|
6
|
+
## 0.5.1 — 2026-06-25
|
|
7
|
+
|
|
8
|
+
Maintenance — refreshed the bundled Vectros SDK to the current API surface.
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Updated the bundled `@vectros-ai/sdk` to **0.29.9**, keeping the CLI aligned
|
|
13
|
+
with the current Vectros API. This picks up the `SKIPPED` index status: a
|
|
14
|
+
record or document saved with no searchable text now reports `SKIPPED` (stored
|
|
15
|
+
and retrievable, simply not indexed) rather than `FAILED`. No CLI commands or
|
|
16
|
+
flags changed.
|
|
17
|
+
|
|
6
18
|
## 0.5.0 — 2026-06-20
|
|
7
19
|
|
|
8
20
|
Initial public release of the `vectros` provisioning CLI.
|
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# @vectros-ai/cli
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@vectros-ai/cli)
|
|
4
|
+
[](https://www.apache.org/licenses/LICENSE-2.0)
|
|
5
|
+
|
|
3
6
|
The Vectros provisioning CLI — the `vectros` binary. Two command groups:
|
|
4
7
|
|
|
5
8
|
- **`vectros bootstrap`** — provision a least-privilege MCP credential (+ optional blueprint).
|
package/dist/cli.js
CHANGED
|
@@ -513,6 +513,7 @@ var DocumentResponse;
|
|
|
513
513
|
Extracting: "EXTRACTING",
|
|
514
514
|
PendingIndex: "PENDING_INDEX",
|
|
515
515
|
Indexed: "INDEXED",
|
|
516
|
+
Skipped: "SKIPPED",
|
|
516
517
|
Stored: "STORED",
|
|
517
518
|
Failed: "FAILED"
|
|
518
519
|
};
|
|
@@ -678,6 +679,7 @@ var RecordResponse;
|
|
|
678
679
|
RecordResponse2.IndexStatus = {
|
|
679
680
|
PendingIndex: "PENDING_INDEX",
|
|
680
681
|
Indexed: "INDEXED",
|
|
682
|
+
Skipped: "SKIPPED",
|
|
681
683
|
Failed: "FAILED"
|
|
682
684
|
};
|
|
683
685
|
RecordResponse2.IndexMode = {
|
|
@@ -12927,8 +12929,8 @@ async function runBlueprintTest(fileOrName, opts, deps = {}) {
|
|
|
12927
12929
|
|
|
12928
12930
|
// src/build-info.ts
|
|
12929
12931
|
var BUILD_INFO = {
|
|
12930
|
-
cli: true ? "0.5.
|
|
12931
|
-
sdk: true ? "0.29.
|
|
12932
|
+
cli: true ? "0.5.1" : "dev",
|
|
12933
|
+
sdk: true ? "0.29.9" : "dev",
|
|
12932
12934
|
blueprints: true ? "0.5.0" : "dev"
|
|
12933
12935
|
};
|
|
12934
12936
|
function formatBuildInfo() {
|