@h-rig/server 0.0.6-alpha.28 → 0.0.6-alpha.29
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/dist/src/index.js +1 -12
- package/dist/src/server-helpers/inspector-jobs.js +1 -12
- package/dist/src/server.js +1 -12
- package/package.json +4 -4
package/dist/src/index.js
CHANGED
|
@@ -13405,21 +13405,10 @@ async function runInspectorLocalReview(projectRoot, input) {
|
|
|
13405
13405
|
details: null
|
|
13406
13406
|
};
|
|
13407
13407
|
}
|
|
13408
|
-
const
|
|
13409
|
-
import("@rig/runtime/control-plane/runtime/events"),
|
|
13410
|
-
import("@rig/runtime/control-plane/runtime/plugins"),
|
|
13411
|
-
import("@rig/runtime/control-plane/native/verifier")
|
|
13412
|
-
]);
|
|
13413
|
-
const eventBus = new RuntimeEventBus({ projectRoot, runId: `inspector-review:${taskId}` });
|
|
13414
|
-
const plugins = await PluginManager.load({
|
|
13415
|
-
projectRoot,
|
|
13416
|
-
runId: `inspector-review:${taskId}`,
|
|
13417
|
-
eventBus
|
|
13418
|
-
});
|
|
13408
|
+
const { verifyTask } = await import("@rig/runtime/control-plane/native/verifier");
|
|
13419
13409
|
const outcome = await verifyTask({
|
|
13420
13410
|
projectRoot,
|
|
13421
13411
|
taskId,
|
|
13422
|
-
plugins,
|
|
13423
13412
|
skipAiReview: true
|
|
13424
13413
|
});
|
|
13425
13414
|
return {
|
|
@@ -3973,21 +3973,10 @@ async function runInspectorLocalReview(projectRoot, input) {
|
|
|
3973
3973
|
details: null
|
|
3974
3974
|
};
|
|
3975
3975
|
}
|
|
3976
|
-
const
|
|
3977
|
-
import("@rig/runtime/control-plane/runtime/events"),
|
|
3978
|
-
import("@rig/runtime/control-plane/runtime/plugins"),
|
|
3979
|
-
import("@rig/runtime/control-plane/native/verifier")
|
|
3980
|
-
]);
|
|
3981
|
-
const eventBus = new RuntimeEventBus({ projectRoot, runId: `inspector-review:${taskId}` });
|
|
3982
|
-
const plugins = await PluginManager.load({
|
|
3983
|
-
projectRoot,
|
|
3984
|
-
runId: `inspector-review:${taskId}`,
|
|
3985
|
-
eventBus
|
|
3986
|
-
});
|
|
3976
|
+
const { verifyTask } = await import("@rig/runtime/control-plane/native/verifier");
|
|
3987
3977
|
const outcome = await verifyTask({
|
|
3988
3978
|
projectRoot,
|
|
3989
3979
|
taskId,
|
|
3990
|
-
plugins,
|
|
3991
3980
|
skipAiReview: true
|
|
3992
3981
|
});
|
|
3993
3982
|
return {
|
package/dist/src/server.js
CHANGED
|
@@ -12899,21 +12899,10 @@ async function runInspectorLocalReview(projectRoot, input) {
|
|
|
12899
12899
|
details: null
|
|
12900
12900
|
};
|
|
12901
12901
|
}
|
|
12902
|
-
const
|
|
12903
|
-
import("@rig/runtime/control-plane/runtime/events"),
|
|
12904
|
-
import("@rig/runtime/control-plane/runtime/plugins"),
|
|
12905
|
-
import("@rig/runtime/control-plane/native/verifier")
|
|
12906
|
-
]);
|
|
12907
|
-
const eventBus = new RuntimeEventBus({ projectRoot, runId: `inspector-review:${taskId}` });
|
|
12908
|
-
const plugins = await PluginManager.load({
|
|
12909
|
-
projectRoot,
|
|
12910
|
-
runId: `inspector-review:${taskId}`,
|
|
12911
|
-
eventBus
|
|
12912
|
-
});
|
|
12902
|
+
const { verifyTask } = await import("@rig/runtime/control-plane/native/verifier");
|
|
12913
12903
|
const outcome = await verifyTask({
|
|
12914
12904
|
projectRoot,
|
|
12915
12905
|
taskId,
|
|
12916
|
-
plugins,
|
|
12917
12906
|
skipAiReview: true
|
|
12918
12907
|
});
|
|
12919
12908
|
return {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/server",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.29",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Rig package",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"rig-server": "./dist/src/server.js"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.
|
|
29
|
-
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.
|
|
30
|
-
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.
|
|
28
|
+
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.29",
|
|
29
|
+
"@rig/core": "npm:@h-rig/core@0.0.6-alpha.29",
|
|
30
|
+
"@rig/runtime": "npm:@h-rig/runtime@0.0.6-alpha.29",
|
|
31
31
|
"effect": "4.0.0-beta.78"
|
|
32
32
|
}
|
|
33
33
|
}
|