@frockbot/plugin-audit 0.3.2 → 0.3.4
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/package.json +6 -6
- package/src/bot.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-audit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"typecheck": "vue-tsc --noEmit -p tsconfig.json"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@frockbot/client-core": "0.3.
|
|
29
|
-
"@frockbot/client-ui": "0.3.
|
|
30
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
31
|
-
"@frockbot/plugin-shell": "0.3.
|
|
32
|
-
"@frockbot/secret-shapes": "0.3.
|
|
28
|
+
"@frockbot/client-core": "0.3.4",
|
|
29
|
+
"@frockbot/client-ui": "0.3.4",
|
|
30
|
+
"@frockbot/kernel-contracts": "0.3.4",
|
|
31
|
+
"@frockbot/plugin-shell": "0.3.4",
|
|
32
|
+
"@frockbot/secret-shapes": "0.3.4",
|
|
33
33
|
"cordis": "4.0.0-rc.8",
|
|
34
34
|
"vue": "3.5.41"
|
|
35
35
|
},
|
package/src/bot.ts
CHANGED
|
@@ -64,7 +64,10 @@ export function isSettledAuditRunV1(run: { status: string }): boolean {
|
|
|
64
64
|
return (
|
|
65
65
|
run.status === "completed" ||
|
|
66
66
|
run.status === "failed" ||
|
|
67
|
-
run.status === "cancelled"
|
|
67
|
+
run.status === "cancelled" ||
|
|
68
|
+
// A Turn the User's next message replaced still ran tools, and an audit
|
|
69
|
+
// surface with silent gaps answers no question anybody asks of it.
|
|
70
|
+
run.status === "superseded"
|
|
68
71
|
);
|
|
69
72
|
}
|
|
70
73
|
|