@open-agent-toolkit/cli 0.2.32 → 0.2.33
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.
|
@@ -50,7 +50,7 @@ pnpm type-check
|
|
|
50
50
|
pnpm test
|
|
51
51
|
pnpm build # excludes docs for speed
|
|
52
52
|
pnpm run check:skill-bumps # changed .agents/skills/*/SKILL.md must bump version
|
|
53
|
-
pnpm release:check-versions # lockstep
|
|
53
|
+
pnpm release:check-versions # lockstep bumps; strictly above origin/main
|
|
54
54
|
pnpm release:validate
|
|
55
55
|
pnpm build:docs # builds docs site and its dependencies
|
|
56
56
|
```
|
|
@@ -61,6 +61,18 @@ the named-file `test:release` set. Steps 5 and 6 are the version-lockstep
|
|
|
61
61
|
gates; they are in the local list because they previously ran only in CI and
|
|
62
62
|
version-bump drift twice reached review with no local gate to surface it.
|
|
63
63
|
|
|
64
|
+
`pnpm release:check-versions` compares the five public package versions against
|
|
65
|
+
their merge-base versions (lockstep bump required when any publishable root
|
|
66
|
+
changed). Since 0.2.33, when a publishable root changed, the gate additionally
|
|
67
|
+
requires every lockstep version to be strictly greater than the version on your
|
|
68
|
+
local `origin/main` tracking ref (falling back to a local `main` branch when no
|
|
69
|
+
`origin/main` exists) — so a branch whose bump was overtaken by a later `main`
|
|
70
|
+
release fails locally the same way it fails in CI. Fetch first (`git fetch
|
|
71
|
+
origin`) so that ref is current; a
|
|
72
|
+
checkout with neither `origin/main` nor `main` skips the whole gate (CI uses
|
|
73
|
+
`fetch-depth: 0`). Test files under `packages/cli/src/` count as publishable
|
|
74
|
+
changes for this gate.
|
|
75
|
+
|
|
64
76
|
CI runs neither `pnpm lint` nor `pnpm format` — run both whenever a change
|
|
65
77
|
touches `tools/smoke` or `.agents/skills`, since nothing else covers them.
|
|
66
78
|
For narrower changes, use package-specific checks when possible, but do not
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-agent-toolkit/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.33",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Open Agent Toolkit CLI",
|
|
6
6
|
"homepage": "https://github.com/voxmedia/open-agent-toolkit/tree/main/packages/cli",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"ora": "^9.0.0",
|
|
35
35
|
"yaml": "2.8.2",
|
|
36
36
|
"zod": "^3.25.76",
|
|
37
|
-
"@open-agent-toolkit/control-plane": "0.2.
|
|
37
|
+
"@open-agent-toolkit/control-plane": "0.2.33"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/node": "^22.10.0",
|