@robota-sdk/agent-interface-tui 3.0.0-beta.81 → 3.0.0-beta.83
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 +69 -0
- package/package.json +8 -3
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# @robota-sdk/agent-interface-tui
|
|
2
|
+
|
|
3
|
+
## 3.0.0-beta.83
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 57280bf: Every published package now declares `"engines": { "node": ">=22.12.0" }`. Before, 27 of the 38
|
|
8
|
+
packages declared no floor (`agent-core`, `agent-tools` and every provider among them),
|
|
9
|
+
`agent-session` and `agent-file-authority` declared `>=20.19.0`, and the other nine declared
|
|
10
|
+
`>=22.0.0`, so a consumer on Node 20 saw at most a warning from a transitive dependency.
|
|
11
|
+
|
|
12
|
+
Why 22.12: `agent-cli` and `agent-ui-terminal` need Node 22 through `ink` 7, and the CommonJS entries
|
|
13
|
+
of `agent-tools` and its dependents, `agent-transport`/`node` and its dependents, and
|
|
14
|
+
`agent-ui-terminal` `require()` ESM-only dependencies (`p-limit`, `jose`, `chalk`), which Node 22
|
|
15
|
+
supports unflagged only from 22.12. `engines` is advisory unless the consumer enables `engine-strict`.
|
|
16
|
+
|
|
17
|
+
No code changes: `tsdown` now reads `node22.12.0` as its build target from the field.
|
|
18
|
+
|
|
19
|
+
- 18c0d5c: Every published package now exports `./package.json`, so `require('<package>/package.json')` and
|
|
20
|
+
`import('<package>/package.json', { with: { type: 'json' } })` work instead of failing with
|
|
21
|
+
`ERR_PACKAGE_PATH_NOT_EXPORTED`, and each tarball now ships the package's `CHANGELOG.md`.
|
|
22
|
+
|
|
23
|
+
## 3.0.0-beta.82
|
|
24
|
+
|
|
25
|
+
## 3.0.0-beta.81
|
|
26
|
+
|
|
27
|
+
## 3.0.0-beta.80
|
|
28
|
+
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
- 4f3c075: Assemble complete, verified package generations before switching build output; preserve the previous generation on build failure and pack only verified regular-file images. Include copied CLI web assets in affected-build ordering and artifact transfer. Preserve the CLI version in managed build paths. Public runtime contracts remain compatible (patch).
|
|
32
|
+
|
|
33
|
+
## 3.0.0-beta.79
|
|
34
|
+
|
|
35
|
+
## 3.0.0-beta.78
|
|
36
|
+
|
|
37
|
+
## 3.0.0-beta.77
|
|
38
|
+
|
|
39
|
+
## 3.0.0-beta.76
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- DQ-AUDIT-003 — restore agent-interface-tui to type-contracts only by removing its runtime type-guards (`isPickerInteraction`/`isConfirmInteraction`, which had zero call sites); narrow `TAnyTuiCommandInteraction` on its `onMissingArgs` discriminant instead. Documented the type-only downward references in agent-interface-transport.
|
|
44
|
+
|
|
45
|
+
## 3.0.0-beta.75
|
|
46
|
+
|
|
47
|
+
## 3.0.0-beta.74
|
|
48
|
+
|
|
49
|
+
## 3.0.0-beta.73
|
|
50
|
+
|
|
51
|
+
## 3.0.0-beta.72
|
|
52
|
+
|
|
53
|
+
## 3.0.0-beta.71
|
|
54
|
+
|
|
55
|
+
### Patch Changes
|
|
56
|
+
|
|
57
|
+
- fix(context): unify token estimation to single SSOT — status bar and /context list now use the same serialized JSON estimate
|
|
58
|
+
|
|
59
|
+
## 3.0.0-beta.70
|
|
60
|
+
|
|
61
|
+
## 3.0.0-beta.69
|
|
62
|
+
|
|
63
|
+
## 3.0.0-beta.68
|
|
64
|
+
|
|
65
|
+
## 3.0.0-beta.67
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- CLIR: agent-cli layer separation, agent-framework interactive session improvements, subagent runner fix, TUI interface README
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robota-sdk/agent-interface-tui",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.83",
|
|
4
4
|
"description": "TUI interaction contract interfaces for the Robota SDK (ITuiPickerItem, ITuiCommandInteraction, ITuiPickerInteraction, ITuiConfirmInteraction)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/node/index.js",
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"default": "./dist/node/index.cjs"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
|
-
}
|
|
31
|
+
},
|
|
32
|
+
"./package.json": "./package.json"
|
|
32
33
|
},
|
|
33
34
|
"repository": {
|
|
34
35
|
"type": "git",
|
|
@@ -38,8 +39,12 @@
|
|
|
38
39
|
"bugs": {
|
|
39
40
|
"url": "https://github.com/woojubb/robota/issues"
|
|
40
41
|
},
|
|
42
|
+
"engines": {
|
|
43
|
+
"node": ">=22.12.0"
|
|
44
|
+
},
|
|
41
45
|
"files": [
|
|
42
|
-
"dist"
|
|
46
|
+
"dist",
|
|
47
|
+
"CHANGELOG.md"
|
|
43
48
|
],
|
|
44
49
|
"devDependencies": {
|
|
45
50
|
"rimraf": "^5.0.10",
|