@qontinui/navigation 0.1.5 → 0.1.7
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/index.cjs +22 -0
- package/dist/index.js +22 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -276,6 +276,16 @@ var REVIEW_ITEMS = [
|
|
|
276
276
|
color: "#F97316",
|
|
277
277
|
platforms: ["runner"],
|
|
278
278
|
productMode: "ai"
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
id: "helper-tasks",
|
|
282
|
+
label: "Helper Tasks",
|
|
283
|
+
icon: "MessageSquare",
|
|
284
|
+
description: "Helper Task Queue \u2014 emit human spot-check tasks, review helper verdicts, invite helpers",
|
|
285
|
+
route: "/review/helper-tasks",
|
|
286
|
+
color: "#10B981",
|
|
287
|
+
platforms: ["runner"],
|
|
288
|
+
productMode: "ai"
|
|
279
289
|
}
|
|
280
290
|
];
|
|
281
291
|
var REVIEW_GROUP = {
|
|
@@ -888,6 +898,18 @@ var SYSTEM_ITEMS = [
|
|
|
888
898
|
route: "/sessions",
|
|
889
899
|
color: "#10B981"
|
|
890
900
|
},
|
|
901
|
+
{
|
|
902
|
+
// Member-visible coord layer. No adminOnly: any tenant member (Developer)
|
|
903
|
+
// can VIEW; per-page mutation controls stay gated on coord_is_admin in
|
|
904
|
+
// qontinui-web. Web-only — keeps it out of the runner sidebar.
|
|
905
|
+
id: "ai-dev-coordination",
|
|
906
|
+
label: "AI-Dev Coordination",
|
|
907
|
+
icon: "Network",
|
|
908
|
+
description: "Coordination layer \u2014 fleet, plans, gates, merge queue",
|
|
909
|
+
platforms: ["web"],
|
|
910
|
+
route: "/admin/coord",
|
|
911
|
+
color: "#06B6D4"
|
|
912
|
+
},
|
|
891
913
|
{
|
|
892
914
|
id: "settings",
|
|
893
915
|
label: "Settings",
|
package/dist/index.js
CHANGED
|
@@ -186,6 +186,16 @@ var REVIEW_ITEMS = [
|
|
|
186
186
|
color: "#F97316",
|
|
187
187
|
platforms: ["runner"],
|
|
188
188
|
productMode: "ai"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
id: "helper-tasks",
|
|
192
|
+
label: "Helper Tasks",
|
|
193
|
+
icon: "MessageSquare",
|
|
194
|
+
description: "Helper Task Queue \u2014 emit human spot-check tasks, review helper verdicts, invite helpers",
|
|
195
|
+
route: "/review/helper-tasks",
|
|
196
|
+
color: "#10B981",
|
|
197
|
+
platforms: ["runner"],
|
|
198
|
+
productMode: "ai"
|
|
189
199
|
}
|
|
190
200
|
];
|
|
191
201
|
var REVIEW_GROUP = {
|
|
@@ -798,6 +808,18 @@ var SYSTEM_ITEMS = [
|
|
|
798
808
|
route: "/sessions",
|
|
799
809
|
color: "#10B981"
|
|
800
810
|
},
|
|
811
|
+
{
|
|
812
|
+
// Member-visible coord layer. No adminOnly: any tenant member (Developer)
|
|
813
|
+
// can VIEW; per-page mutation controls stay gated on coord_is_admin in
|
|
814
|
+
// qontinui-web. Web-only — keeps it out of the runner sidebar.
|
|
815
|
+
id: "ai-dev-coordination",
|
|
816
|
+
label: "AI-Dev Coordination",
|
|
817
|
+
icon: "Network",
|
|
818
|
+
description: "Coordination layer \u2014 fleet, plans, gates, merge queue",
|
|
819
|
+
platforms: ["web"],
|
|
820
|
+
route: "/admin/coord",
|
|
821
|
+
color: "#06B6D4"
|
|
822
|
+
},
|
|
801
823
|
{
|
|
802
824
|
id: "settings",
|
|
803
825
|
label: "Settings",
|