@bpmnkit/casen-worker-ai 0.1.0 → 0.1.3

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @bpmnkit/casen-worker-ai@0.1.0 build /home/adam/github.com/bpmnkit/monorepo/plugins-cli/casen-worker-ai
2
+ > @bpmnkit/casen-worker-ai@0.1.3 build /home/runner/work/monorepo/monorepo/plugins-cli/casen-worker-ai
3
3
  > tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @bpmnkit/casen-worker-ai
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [`802e1dd`](https://github.com/bpmnkit/monorepo/commit/802e1dde53dfda07371e6a83dcf0e05e2650d0a2) Thanks [@urbanisierung](https://github.com/urbanisierung)! - Minor fixes.
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#76](https://github.com/bpmnkit/monorepo/pull/76) [`8d1a978`](https://github.com/bpmnkit/monorepo/commit/8d1a978e0b8c321106d95226134cbba6433ab4af) Thanks [@urbanisierung](https://github.com/urbanisierung)! - AI preparation
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - [#74](https://github.com/bpmnkit/monorepo/pull/74) [`e356b98`](https://github.com/bpmnkit/monorepo/commit/e356b98a6b281f825e757cb6e480e50369789d08) Thanks [@urbanisierung](https://github.com/urbanisierung)! - Test suites, simulation mode, improved reebe-wasm
20
+
3
21
  ## 0.1.0
4
22
 
5
23
  ### Minor Changes
package/README.md CHANGED
@@ -6,6 +6,8 @@
6
6
  [![npm](https://img.shields.io/npm/v/@bpmnkit/casen-worker-ai?style=flat-square&color=6244d7)](https://www.npmjs.com/package/@bpmnkit/casen-worker-ai)
7
7
  [![license](https://img.shields.io/npm/l/@bpmnkit/casen-worker-ai?style=flat-square)](https://github.com/bpmnkit/monorepo/blob/main/LICENSE)
8
8
  [![typescript](https://img.shields.io/badge/TypeScript-strict-6244d7?style=flat-square&logo=typescript&logoColor=white)](https://github.com/bpmnkit/monorepo)
9
+ [![ai-assisted](https://img.shields.io/badge/AI--assisted-claude-8b5cf6?style=flat-square)](https://github.com/bpmnkit/monorepo)
10
+ [![experimental](https://img.shields.io/badge/status-experimental-f59e0b?style=flat-square)](https://github.com/bpmnkit/monorepo)
9
11
 
10
12
  [Website](https://bpmnkit.com) · [Documentation](https://docs.bpmnkit.com) · [GitHub](https://github.com/bpmnkit/monorepo) · [Changelog](https://github.com/bpmnkit/monorepo/blob/main/plugins-cli/casen-worker-ai/CHANGELOG.md)
11
13
  </div>
package/package.json CHANGED
@@ -1,69 +1,69 @@
1
1
  {
2
- "name": "@bpmnkit/casen-worker-ai",
3
- "version": "0.1.0",
4
- "private": false,
5
- "description": "AI task worker plugin for casen — classify, summarize, extract, and decide using Claude",
6
- "type": "module",
7
- "main": "./dist/index.js",
8
- "exports": {
9
- ".": {
10
- "import": "./dist/index.js",
11
- "types": "./dist/index.d.ts"
12
- }
13
- },
14
- "keywords": [
15
- "casen-plugin",
16
- "casen-worker",
17
- "camunda",
18
- "worker",
19
- "ai",
20
- "claude",
21
- "anthropic",
22
- "bpmnkit"
23
- ],
24
- "license": "MIT",
25
- "repository": {
26
- "type": "git",
27
- "url": "https://github.com/bpmnkit/monorepo"
28
- },
29
- "homepage": "https://bpmnkit.com",
30
- "bugs": {
31
- "url": "https://github.com/bpmnkit/monorepo/issues"
32
- },
33
- "publishConfig": {
34
- "access": "public"
35
- },
36
- "casen": {
37
- "group": "ai-worker",
38
- "commands": [
39
- {
40
- "name": "classify",
41
- "description": "Classify text into one of the given categories"
42
- },
43
- {
44
- "name": "summarize",
45
- "description": "Summarize text to a given length and style"
46
- },
47
- {
48
- "name": "extract",
49
- "description": "Extract structured fields from unstructured text"
50
- },
51
- {
52
- "name": "decide",
53
- "description": "Make a boolean decision based on a question, context, and optional policy"
54
- }
55
- ]
56
- },
57
- "scripts": {
58
- "build": "tsc",
59
- "typecheck": "tsc --noEmit",
60
- "check": "biome check .",
61
- "test": "vitest run"
62
- },
63
- "dependencies": {
64
- "@anthropic-ai/sdk": "^0.40.0"
65
- },
66
- "devDependencies": {
67
- "@bpmnkit/cli-sdk": "workspace:*"
68
- }
69
- }
2
+ "name": "@bpmnkit/casen-worker-ai",
3
+ "version": "0.1.3",
4
+ "private": false,
5
+ "description": "AI task worker plugin for casen — classify, summarize, extract, and decide using Claude",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "keywords": [
15
+ "casen-plugin",
16
+ "casen-worker",
17
+ "camunda",
18
+ "worker",
19
+ "ai",
20
+ "claude",
21
+ "anthropic",
22
+ "bpmnkit"
23
+ ],
24
+ "license": "MIT",
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/bpmnkit/monorepo"
28
+ },
29
+ "homepage": "https://bpmnkit.com",
30
+ "bugs": {
31
+ "url": "https://github.com/bpmnkit/monorepo/issues"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "casen": {
37
+ "group": "ai-worker",
38
+ "commands": [
39
+ {
40
+ "name": "classify",
41
+ "description": "Classify text into one of the given categories"
42
+ },
43
+ {
44
+ "name": "summarize",
45
+ "description": "Summarize text to a given length and style"
46
+ },
47
+ {
48
+ "name": "extract",
49
+ "description": "Extract structured fields from unstructured text"
50
+ },
51
+ {
52
+ "name": "decide",
53
+ "description": "Make a boolean decision based on a question, context, and optional policy"
54
+ }
55
+ ]
56
+ },
57
+ "dependencies": {
58
+ "@anthropic-ai/sdk": "^0.40.0"
59
+ },
60
+ "devDependencies": {
61
+ "@bpmnkit/cli-sdk": "0.0.5"
62
+ },
63
+ "scripts": {
64
+ "build": "tsc",
65
+ "typecheck": "tsc --noEmit",
66
+ "check": "biome check .",
67
+ "test": "vitest run"
68
+ }
69
+ }