@proompteng/temporal-bun-sdk 0.7.1 → 0.9.0
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/README.md +80 -544
- package/dist/agent-readiness.json +46 -0
- package/dist/production-readiness.json +93 -0
- package/dist/src/bin/lint-workflows-command.d.ts.map +1 -1
- package/dist/src/bin/lint-workflows-command.js +24 -2
- package/dist/src/bin/lint-workflows-command.js.map +1 -1
- package/dist/src/bin/temporal-bun.d.ts.map +1 -1
- package/dist/src/bin/temporal-bun.js +20 -5
- package/dist/src/bin/temporal-bun.js.map +1 -1
- package/dist/src/otel/sdk-trace.d.ts.map +1 -1
- package/dist/src/otel/sdk-trace.js +5 -0
- package/dist/src/otel/sdk-trace.js.map +1 -1
- package/dist/src/workflow/executor.d.ts.map +1 -1
- package/dist/src/workflow/executor.js +41 -6
- package/dist/src/workflow/executor.js.map +1 -1
- package/dist/src/workflow/guards.d.ts.map +1 -1
- package/dist/src/workflow/guards.js +15 -0
- package/dist/src/workflow/guards.js.map +1 -1
- package/docs/agent-adoption-guide.md +61 -0
- package/docs/feature-matrix.md +31 -0
- package/docs/production-design.md +589 -0
- package/docs/production-readiness-implementation-plan.md +370 -0
- package/docs/release-runbook.md +48 -0
- package/docs/support-policy.md +76 -0
- package/docs/temporal-ci-cluster-requirement.md +36 -0
- package/docs/workflow-updates.md +107 -0
- package/package.json +21 -17
package/package.json
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proompteng/temporal-bun-sdk",
|
|
3
|
+
"version": "0.9.0",
|
|
3
4
|
"description": "Temporal SDK for Bun with workers, client, replay tooling, and Temporal Cloud/TLS support.",
|
|
4
|
-
"version": "0.7.1",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"homepage": "https://docs.proompteng.ai/docs/temporal-bun-sdk",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/proompteng/lab.git",
|
|
10
|
-
"directory": "packages/temporal-bun-sdk"
|
|
11
|
-
},
|
|
12
5
|
"keywords": [
|
|
13
|
-
"temporal",
|
|
14
6
|
"bun",
|
|
15
|
-
"workflow",
|
|
16
|
-
"worker",
|
|
17
7
|
"client",
|
|
18
8
|
"durable-execution",
|
|
19
|
-
"
|
|
9
|
+
"effect",
|
|
20
10
|
"grpc",
|
|
11
|
+
"temporal",
|
|
12
|
+
"temporal-cloud",
|
|
21
13
|
"typescript",
|
|
22
|
-
"
|
|
14
|
+
"worker",
|
|
15
|
+
"workflow"
|
|
23
16
|
],
|
|
17
|
+
"homepage": "https://docs.proompteng.ai/docs/temporal-bun-sdk",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/proompteng/lab.git",
|
|
22
|
+
"directory": "packages/temporal-bun-sdk"
|
|
23
|
+
},
|
|
24
24
|
"bin": {
|
|
25
25
|
"temporal-bun": "./dist/src/bin/temporal-bun.js",
|
|
26
26
|
"temporal-bun-skill": "./dist/src/bin/temporal-bun-skill.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist",
|
|
31
|
-
"
|
|
31
|
+
"docs",
|
|
32
32
|
"skills",
|
|
33
33
|
"README.md"
|
|
34
34
|
],
|
|
@@ -80,11 +80,15 @@
|
|
|
80
80
|
"prepare": "tsc --project tsconfig.json --pretty false",
|
|
81
81
|
"test": "bun test",
|
|
82
82
|
"test:load": "bun scripts/run-worker-load.ts",
|
|
83
|
+
"test:soak": "bun scripts/run-worker-soak.ts",
|
|
84
|
+
"evidence:production": "bun scripts/collect-production-evidence.ts",
|
|
85
|
+
"verify:replay-corpus": "bun scripts/verify-replay-corpus.ts",
|
|
83
86
|
"test:coverage": "bun test --coverage",
|
|
87
|
+
"verify:production": "bun run evidence:production && bun test tests/packaging/manifest-packaging.test.ts",
|
|
84
88
|
"start:worker": "bun run dist/src/bin/start-worker.js",
|
|
85
89
|
"temporal:start": "bun scripts/start-temporal-cli.ts",
|
|
86
90
|
"temporal:stop": "bun scripts/stop-temporal-cli.ts",
|
|
87
|
-
"prepack": "bun run build",
|
|
91
|
+
"prepack": "bun run build && bun run evidence:production",
|
|
88
92
|
"lint:oxlint": "oxlint --config ../../.oxlintrc.json .",
|
|
89
93
|
"lint:oxlint:type": "oxlint --config ../../.oxlintrc.json --type-aware --tsconfig ./tsconfig.oxlint.json --ignore-pattern tests ."
|
|
90
94
|
},
|
|
@@ -98,9 +102,9 @@
|
|
|
98
102
|
},
|
|
99
103
|
"devDependencies": {
|
|
100
104
|
"@types/node": "^22.7.5",
|
|
101
|
-
"bun-types": "^1.3.
|
|
105
|
+
"bun-types": "^1.3.13"
|
|
102
106
|
},
|
|
103
107
|
"engines": {
|
|
104
|
-
"bun": ">=1.3.
|
|
108
|
+
"bun": ">=1.3.13"
|
|
105
109
|
}
|
|
106
110
|
}
|