sisyphi 1.2.24 → 1.2.26
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/cli.js +9 -57
- package/dist/cli.js.map +1 -1
- package/dist/daemon.js +15 -7
- package/dist/daemon.js.map +1 -1
- package/dist/tui.js +1 -3
- package/dist/tui.js.map +1 -1
- package/package.json +1 -1
package/dist/tui.js
CHANGED
|
@@ -1337,7 +1337,7 @@ import { join as join15 } from "path";
|
|
|
1337
1337
|
import { basename, dirname } from "path";
|
|
1338
1338
|
function coerceKind(k) {
|
|
1339
1339
|
if (k !== void 0) return k;
|
|
1340
|
-
return "
|
|
1340
|
+
return "decision";
|
|
1341
1341
|
}
|
|
1342
1342
|
function sessionIdFromDir(dir) {
|
|
1343
1343
|
return basename(dirname(dirname(dirname(dir))));
|
|
@@ -1735,7 +1735,6 @@ function agentTypeColor(agentType) {
|
|
|
1735
1735
|
}
|
|
1736
1736
|
var KIND_ICON = {
|
|
1737
1737
|
notify: "\u2709",
|
|
1738
|
-
validation: "\u2713",
|
|
1739
1738
|
decision: "\u25C6",
|
|
1740
1739
|
context: "\u270E",
|
|
1741
1740
|
error: "\u26A0",
|
|
@@ -1743,7 +1742,6 @@ var KIND_ICON = {
|
|
|
1743
1742
|
};
|
|
1744
1743
|
var KIND_COLOR = {
|
|
1745
1744
|
notify: "gray",
|
|
1746
|
-
validation: "cyan",
|
|
1747
1745
|
decision: "cyan",
|
|
1748
1746
|
context: "cyan",
|
|
1749
1747
|
error: "red",
|