@onkernel/cua-ai 0.2.0 → 0.2.2
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 +9 -0
- package/dist/index.js +56 -19
- package/docs/supported-models.md +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.2 - 2026-06-11
|
|
4
|
+
|
|
5
|
+
- Add computer-use support for `gpt-5.4-mini`, `gemini-3.1-flash-lite`, `tzafon.northstar-cua-fast-1.6`, and `tzafon.northstar-cua-fast-1.7-experiment`.
|
|
6
|
+
- Drop `gemini-3-pro-preview`, which Google has retired (the API now returns 404 for it).
|
|
7
|
+
|
|
8
|
+
## 0.2.1 - 2026-06-11
|
|
9
|
+
|
|
10
|
+
- Add computer-use support for the `claude-fable-5` Anthropic model.
|
|
11
|
+
|
|
3
12
|
## 0.2.0 - 2026-06-10
|
|
4
13
|
|
|
5
14
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -1397,19 +1397,29 @@ const CUA_PROVIDERS = [
|
|
|
1397
1397
|
* .agents/skills/update-models/SKILL.md.
|
|
1398
1398
|
*/
|
|
1399
1399
|
const CUA_MODEL_ANNOTATIONS = {
|
|
1400
|
-
openai: [
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1400
|
+
openai: [
|
|
1401
|
+
{
|
|
1402
|
+
match: {
|
|
1403
|
+
kind: "family",
|
|
1404
|
+
family: "gpt-5.4"
|
|
1405
|
+
},
|
|
1406
|
+
source: "https://developers.openai.com/api/docs/models/gpt-5.4"
|
|
1404
1407
|
},
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1408
|
+
{
|
|
1409
|
+
match: {
|
|
1410
|
+
kind: "family",
|
|
1411
|
+
family: "gpt-5.4-mini"
|
|
1412
|
+
},
|
|
1413
|
+
source: "https://developers.openai.com/api/docs/models/gpt-5.4-mini"
|
|
1410
1414
|
},
|
|
1411
|
-
|
|
1412
|
-
|
|
1415
|
+
{
|
|
1416
|
+
match: {
|
|
1417
|
+
kind: "family",
|
|
1418
|
+
family: "gpt-5.5"
|
|
1419
|
+
},
|
|
1420
|
+
source: "https://developers.openai.com/api/docs/models/gpt-5.5"
|
|
1421
|
+
}
|
|
1422
|
+
],
|
|
1413
1423
|
anthropic: [
|
|
1414
1424
|
{
|
|
1415
1425
|
match: {
|
|
@@ -1438,6 +1448,13 @@ const CUA_MODEL_ANNOTATIONS = {
|
|
|
1438
1448
|
family: "claude-haiku-4"
|
|
1439
1449
|
},
|
|
1440
1450
|
source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use"
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
match: {
|
|
1454
|
+
kind: "family",
|
|
1455
|
+
family: "claude-fable-5"
|
|
1456
|
+
},
|
|
1457
|
+
source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use"
|
|
1441
1458
|
}
|
|
1442
1459
|
],
|
|
1443
1460
|
google: [{
|
|
@@ -1449,17 +1466,33 @@ const CUA_MODEL_ANNOTATIONS = {
|
|
|
1449
1466
|
}, {
|
|
1450
1467
|
match: {
|
|
1451
1468
|
kind: "exact",
|
|
1452
|
-
id: "gemini-3-
|
|
1469
|
+
id: "gemini-3.1-flash-lite"
|
|
1453
1470
|
},
|
|
1454
1471
|
source: "https://ai.google.dev/gemini-api/docs/computer-use"
|
|
1455
1472
|
}],
|
|
1456
|
-
tzafon: [
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1473
|
+
tzafon: [
|
|
1474
|
+
{
|
|
1475
|
+
match: {
|
|
1476
|
+
kind: "exact",
|
|
1477
|
+
id: "tzafon.northstar-cua-fast"
|
|
1478
|
+
},
|
|
1479
|
+
source: "https://huggingface.co/Tzafon/Northstar-CUA-Fast"
|
|
1460
1480
|
},
|
|
1461
|
-
|
|
1462
|
-
|
|
1481
|
+
{
|
|
1482
|
+
match: {
|
|
1483
|
+
kind: "exact",
|
|
1484
|
+
id: "tzafon.northstar-cua-fast-1.6"
|
|
1485
|
+
},
|
|
1486
|
+
source: "https://huggingface.co/Tzafon/Northstar-CUA-Fast"
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
match: {
|
|
1490
|
+
kind: "exact",
|
|
1491
|
+
id: "tzafon.northstar-cua-fast-1.7-experiment"
|
|
1492
|
+
},
|
|
1493
|
+
source: "https://huggingface.co/Tzafon/Northstar-CUA-Fast"
|
|
1494
|
+
}
|
|
1495
|
+
],
|
|
1463
1496
|
yutori: [
|
|
1464
1497
|
{
|
|
1465
1498
|
match: {
|
|
@@ -1495,7 +1528,11 @@ const CUA_MODEL_OVERRIDES = {
|
|
|
1495
1528
|
openai: [cuaModel("openai", "gpt-5.5", "GPT-5.5"), cuaModel("openai", "gpt-5.5-2026-04-23", "GPT-5.5 (2026-04-23)")],
|
|
1496
1529
|
anthropic: [],
|
|
1497
1530
|
google: [],
|
|
1498
|
-
tzafon: [
|
|
1531
|
+
tzafon: [
|
|
1532
|
+
cuaModel("tzafon", "tzafon.northstar-cua-fast", "Tzafon Northstar CUA Fast"),
|
|
1533
|
+
cuaModel("tzafon", "tzafon.northstar-cua-fast-1.6", "Tzafon Northstar CUA Fast 1.6"),
|
|
1534
|
+
cuaModel("tzafon", "tzafon.northstar-cua-fast-1.7-experiment", "Tzafon Northstar CUA Fast 1.7 (experiment)")
|
|
1535
|
+
],
|
|
1499
1536
|
yutori: [
|
|
1500
1537
|
cuaModel("yutori", "n1.5-latest", "Yutori Navigator n1.5"),
|
|
1501
1538
|
cuaModel("yutori", "n1.5-20260428", "Yutori Navigator n1.5 (2026-04-28)"),
|
package/docs/supported-models.md
CHANGED
|
@@ -22,6 +22,7 @@ API: `openai-responses` · coordinates: pixel
|
|
|
22
22
|
Family matches (root + numeric revision/dated-snapshot suffixes):
|
|
23
23
|
|
|
24
24
|
- `gpt-5.4` ([docs](https://developers.openai.com/api/docs/models/gpt-5.4))
|
|
25
|
+
- `gpt-5.4-mini` ([docs](https://developers.openai.com/api/docs/models/gpt-5.4-mini))
|
|
25
26
|
- `gpt-5.5` ([docs](https://developers.openai.com/api/docs/models/gpt-5.5))
|
|
26
27
|
|
|
27
28
|
## `anthropic`
|
|
@@ -34,6 +35,7 @@ Family matches (root + numeric revision/dated-snapshot suffixes):
|
|
|
34
35
|
- `claude-opus-4`
|
|
35
36
|
- `claude-sonnet-4`
|
|
36
37
|
- `claude-haiku-4`
|
|
38
|
+
- `claude-fable-5`
|
|
37
39
|
|
|
38
40
|
Source: [Anthropic computer use docs](https://docs.anthropic.com/en/docs/build-with-claude/computer-use).
|
|
39
41
|
|
|
@@ -46,7 +48,7 @@ Model refs use the `google:` prefix; `gemini:` is accepted as an alias.
|
|
|
46
48
|
Exact IDs:
|
|
47
49
|
|
|
48
50
|
- `gemini-3-flash-preview`
|
|
49
|
-
- `gemini-3-
|
|
51
|
+
- `gemini-3.1-flash-lite`
|
|
50
52
|
|
|
51
53
|
`gemini-2.5-computer-use-preview-10-2025` is deliberately not annotated: it
|
|
52
54
|
rejects the standard function declarations this package sends and requires
|
|
@@ -61,6 +63,8 @@ API: `tzafon-responses` · coordinates: normalized 0–999
|
|
|
61
63
|
Exact IDs:
|
|
62
64
|
|
|
63
65
|
- `tzafon.northstar-cua-fast` ([model card](https://huggingface.co/Tzafon/Northstar-CUA-Fast))
|
|
66
|
+
- `tzafon.northstar-cua-fast-1.6` ([model card](https://huggingface.co/Tzafon/Northstar-CUA-Fast))
|
|
67
|
+
- `tzafon.northstar-cua-fast-1.7-experiment` ([model card](https://huggingface.co/Tzafon/Northstar-CUA-Fast))
|
|
64
68
|
|
|
65
69
|
## `yutori`
|
|
66
70
|
|