@mestreyoda/fabrica 0.2.11 → 0.2.13
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/ARCHITECTURE.md +12 -6
- package/CHANGELOG.md +13 -0
- package/README.md +39 -18
- package/dist/index.js +4503 -722
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mestreyoda/fabrica",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
4
4
|
"description": "Autonomous software engineering pipeline for OpenClaw. Turns ideas into deployed code via intake, dispatch, review, test, and merge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -30,20 +30,23 @@
|
|
|
30
30
|
"@opentelemetry/exporter-trace-otlp-http": "^0.213.0",
|
|
31
31
|
"@opentelemetry/sdk-node": "^0.213.0",
|
|
32
32
|
"@opentelemetry/sdk-trace-base": "^2.6.0",
|
|
33
|
+
"file-type": "^19.6.0",
|
|
33
34
|
"pino": "^10.3.1",
|
|
34
35
|
"pino-pretty": "^13.1.3",
|
|
35
36
|
"xstate": "^5.28.0"
|
|
36
37
|
},
|
|
37
38
|
"scripts": {
|
|
38
39
|
"build": "node build.mjs",
|
|
40
|
+
"verify:runtime-boundary": "node scripts/verify-runtime-boundary.mjs",
|
|
41
|
+
"verify:installability": "node scripts/verify-installability.mjs",
|
|
39
42
|
"typecheck": "tsc --noEmit",
|
|
40
43
|
"test": "npm run test:hot-path",
|
|
41
44
|
"test:unit": "vitest run",
|
|
42
45
|
"test:e2e": "VITEST_E2E=1 vitest run lib/services/bootstrap.e2e.test.ts lib/services/pipeline.e2e.test.ts tests/e2e/qa-bootstrap.e2e.test.ts tests/e2e/orchestration-smoke.e2e.test.ts",
|
|
43
|
-
"test:hot-path": "VITEST_E2E=1 vitest run --maxWorkers=1 tests/unit/message-builder.test.ts tests/unit/worker-context-hook.test.ts tests/unit/reviewer-session.test.ts tests/unit/reviewer-completion.test.ts tests/unit/reviewer-completion-side-effects.test.ts tests/unit/reactive-dispatch-hook.test.ts tests/unit/subagent-lifecycle-hook.test.ts tests/unit/subagent-lifecycle-slot-cleanup.test.ts tests/unit/dispatch-identity.test.ts tests/unit/work-finish-slot.test.ts tests/unit/heartbeat-health-session.test.ts tests/unit/reviewer-poll-pass.test.ts tests/unit/heartbeat-canonical-pr.test.ts tests/e2e/orchestration-smoke.e2e.test.ts",
|
|
46
|
+
"test:hot-path": "VITEST_E2E=1 vitest run --maxWorkers=1 tests/unit/message-builder.test.ts tests/unit/worker-context-hook.test.ts tests/unit/reviewer-session.test.ts tests/unit/reviewer-completion.test.ts tests/unit/reviewer-completion-side-effects.test.ts tests/unit/reactive-dispatch-hook.test.ts tests/unit/subagent-lifecycle-hook.test.ts tests/unit/subagent-lifecycle-slot-cleanup.test.ts tests/unit/dispatch-identity.test.ts tests/unit/work-finish-slot.test.ts tests/unit/heartbeat-health-session.test.ts tests/unit/reviewer-poll-pass.test.ts tests/unit/heartbeat-canonical-pr.test.ts tests/unit/logger-transport.test.ts tests/e2e/orchestration-smoke.e2e.test.ts",
|
|
44
47
|
"test:all": "npm run test:unit && npm run test:e2e",
|
|
45
48
|
"test:watch": "vitest",
|
|
46
|
-
"prepublishOnly": "npm run build && npm run test:all"
|
|
49
|
+
"prepublishOnly": "npm run build && npm run verify:runtime-boundary && npm run test:all && npm run verify:installability"
|
|
47
50
|
},
|
|
48
51
|
"repository": {
|
|
49
52
|
"type": "git",
|