@onkernel/cua-ai 0.2.0 → 0.2.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1 - 2026-06-11
4
+
5
+ - Add computer-use support for the `claude-fable-5` Anthropic model.
6
+
3
7
  ## 0.2.0 - 2026-06-10
4
8
 
5
9
  ### Fixed
package/dist/index.js CHANGED
@@ -1438,6 +1438,13 @@ const CUA_MODEL_ANNOTATIONS = {
1438
1438
  family: "claude-haiku-4"
1439
1439
  },
1440
1440
  source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use"
1441
+ },
1442
+ {
1443
+ match: {
1444
+ kind: "family",
1445
+ family: "claude-fable-5"
1446
+ },
1447
+ source: "https://docs.anthropic.com/en/docs/build-with-claude/computer-use"
1441
1448
  }
1442
1449
  ],
1443
1450
  google: [{
@@ -34,6 +34,7 @@ Family matches (root + numeric revision/dated-snapshot suffixes):
34
34
  - `claude-opus-4`
35
35
  - `claude-sonnet-4`
36
36
  - `claude-haiku-4`
37
+ - `claude-fable-5`
37
38
 
38
39
  Source: [Anthropic computer use docs](https://docs.anthropic.com/en/docs/build-with-claude/computer-use).
39
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onkernel/cua-ai",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Kernel-curated computer-use model access built on pi-ai",
5
5
  "license": "MIT",
6
6
  "type": "module",