@bpmnkit/casen-worker-ai 0.1.7 → 0.1.8
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/package.json +3 -2
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @bpmnkit/casen-worker-ai
|
|
2
2
|
|
|
3
|
+
## 0.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 00a65f5: Four packaging bugs found by opening the published tarballs and installing them.
|
|
8
|
+
- `proxy`: declared `exports["."].types` while `files` listed only `dist/**/*.js`, so the
|
|
9
|
+
declarations were built and never packed. It now ships its `.d.ts` files.
|
|
10
|
+
- `plugins`: `dist/token-highlight/index.js` imported `./css` without an extension, which Node
|
|
11
|
+
ESM does not resolve — `@bpmnkit/plugins/token-highlight` threw on import, and
|
|
12
|
+
`@bpmnkit/operate` threw with it.
|
|
13
|
+
- `casen-worker-http` and `casen-worker-ai`: import `@bpmnkit/cli-sdk` and declared no
|
|
14
|
+
dependencies at all, so npm never installed it and importing them failed.
|
|
15
|
+
- `casen-report`: the same undeclared `@bpmnkit/cli-sdk` in its `.d.ts`, plus an undeclared
|
|
16
|
+
`@bpmnkit/api`, so its published types did not resolve.
|
|
17
|
+
|
|
3
18
|
## 0.1.7
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[](https://github.com/bpmnkit/monorepo)
|
|
10
10
|
[](https://github.com/bpmnkit/monorepo)
|
|
11
11
|
|
|
12
|
-
[Website](https://bpmnkit.com) · [Documentation](https://
|
|
12
|
+
[Website](https://bpmnkit.com) · [Documentation](https://bpmnkit.com/docs) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/plugins-cli/casen-worker-ai/CHANGELOG.md)
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
15
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmnkit/casen-worker-ai",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "AI task worker plugin for casen — classify, summarize, extract, and decide using Claude",
|
|
6
6
|
"type": "module",
|
|
@@ -55,7 +55,8 @@
|
|
|
55
55
|
]
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@anthropic-ai/sdk": "^0.40.0"
|
|
58
|
+
"@anthropic-ai/sdk": "^0.40.0",
|
|
59
|
+
"@bpmnkit/cli-sdk": "0.0.9"
|
|
59
60
|
},
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@bpmnkit/cli-sdk": "0.0.9"
|