@mattstack/rt-client 0.13.0 → 0.14.0
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.js +32 -3
- package/package.json +1 -1
- package/src/settings/registry-defs.ts +32 -3
package/dist/index.js
CHANGED
|
@@ -630,6 +630,14 @@ var REGISTRY = [
|
|
|
630
630
|
migrated: true,
|
|
631
631
|
description: "Desktop notification preferences (which events notify, sound on/off)."
|
|
632
632
|
},
|
|
633
|
+
{
|
|
634
|
+
key: "rt.notify.eventBridges",
|
|
635
|
+
type: "array",
|
|
636
|
+
scopes: ["user"],
|
|
637
|
+
default: [],
|
|
638
|
+
merge: "replace",
|
|
639
|
+
description: "Event-bus glob rules that raise a desktop notification: [{pattern, category, title, message}]. pattern is matched against the events-bus topic (Bun.Glob semantics); title/message may interpolate `{field}` from the event payload. A fresh key, not an ownership-latch port, so a default is fine here."
|
|
640
|
+
},
|
|
633
641
|
{
|
|
634
642
|
key: "rt.cron",
|
|
635
643
|
type: "object",
|
|
@@ -947,6 +955,13 @@ var REGISTRY = [
|
|
|
947
955
|
merge: "replace",
|
|
948
956
|
description: "Days of MR inactivity before the board flags it stale, for this developer."
|
|
949
957
|
},
|
|
958
|
+
{
|
|
959
|
+
key: "board.gateGraceMinutes",
|
|
960
|
+
type: "number",
|
|
961
|
+
scopes: ["user"],
|
|
962
|
+
merge: "replace",
|
|
963
|
+
description: "Minutes an unanswered review gate stays open before the board parks the review (closes the pane, keeps the gate open). Default 90."
|
|
964
|
+
},
|
|
950
965
|
{
|
|
951
966
|
key: "board.workspaces",
|
|
952
967
|
type: "object",
|
|
@@ -976,11 +991,25 @@ var REGISTRY = [
|
|
|
976
991
|
description: "This developer's triage user-intent flags (which triage sweeps run automatically); a sibling flat key of board.triage.doctorSkill, not its container — the board reader assembles the two independently."
|
|
977
992
|
},
|
|
978
993
|
{
|
|
979
|
-
key: "board.
|
|
994
|
+
key: "board.agent.account",
|
|
980
995
|
type: "string",
|
|
981
|
-
scopes: ["machine"],
|
|
996
|
+
scopes: ["user", "machine"],
|
|
997
|
+
merge: "replace",
|
|
998
|
+
description: "cswap account the board's review/respond/doctor panes launch under; unset uses the default claude profile. Replaces the retired board.claudeCommand."
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
key: "board.agent.model",
|
|
1002
|
+
type: "string",
|
|
1003
|
+
scopes: ["user", "machine"],
|
|
1004
|
+
merge: "replace",
|
|
1005
|
+
description: "Default --model for the board's review/respond/doctor panes; unset omits the flag."
|
|
1006
|
+
},
|
|
1007
|
+
{
|
|
1008
|
+
key: "board.agent.effort",
|
|
1009
|
+
type: "string",
|
|
1010
|
+
scopes: ["user", "machine"],
|
|
982
1011
|
merge: "replace",
|
|
983
|
-
description: "
|
|
1012
|
+
description: "Default --effort for the board's review/respond/doctor panes; unset omits the flag."
|
|
984
1013
|
},
|
|
985
1014
|
{
|
|
986
1015
|
key: "board.cwds",
|
package/package.json
CHANGED
|
@@ -79,6 +79,14 @@ export const REGISTRY: readonly SettingDef[] = [
|
|
|
79
79
|
migrated: true,
|
|
80
80
|
description: "Desktop notification preferences (which events notify, sound on/off).",
|
|
81
81
|
},
|
|
82
|
+
{
|
|
83
|
+
key: "rt.notify.eventBridges",
|
|
84
|
+
type: "array",
|
|
85
|
+
scopes: ["user"],
|
|
86
|
+
default: [],
|
|
87
|
+
merge: "replace",
|
|
88
|
+
description: "Event-bus glob rules that raise a desktop notification: [{pattern, category, title, message}]. pattern is matched against the events-bus topic (Bun.Glob semantics); title/message may interpolate `{field}` from the event payload. A fresh key, not an ownership-latch port, so a default is fine here.",
|
|
89
|
+
},
|
|
82
90
|
{
|
|
83
91
|
key: "rt.cron",
|
|
84
92
|
type: "object",
|
|
@@ -421,6 +429,13 @@ export const REGISTRY: readonly SettingDef[] = [
|
|
|
421
429
|
merge: "replace",
|
|
422
430
|
description: "Days of MR inactivity before the board flags it stale, for this developer.",
|
|
423
431
|
},
|
|
432
|
+
{
|
|
433
|
+
key: "board.gateGraceMinutes",
|
|
434
|
+
type: "number",
|
|
435
|
+
scopes: ["user"],
|
|
436
|
+
merge: "replace",
|
|
437
|
+
description: "Minutes an unanswered review gate stays open before the board parks the review (closes the pane, keeps the gate open). Default 90.",
|
|
438
|
+
},
|
|
424
439
|
{
|
|
425
440
|
key: "board.workspaces",
|
|
426
441
|
type: "object",
|
|
@@ -452,11 +467,25 @@ export const REGISTRY: readonly SettingDef[] = [
|
|
|
452
467
|
|
|
453
468
|
// --- board (machine) ---------------------------------------------------
|
|
454
469
|
{
|
|
455
|
-
key: "board.
|
|
470
|
+
key: "board.agent.account",
|
|
456
471
|
type: "string",
|
|
457
|
-
scopes: ["machine"],
|
|
472
|
+
scopes: ["user", "machine"],
|
|
473
|
+
merge: "replace",
|
|
474
|
+
description: "cswap account the board's review/respond/doctor panes launch under; unset uses the default claude profile. Replaces the retired board.claudeCommand.",
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
key: "board.agent.model",
|
|
478
|
+
type: "string",
|
|
479
|
+
scopes: ["user", "machine"],
|
|
480
|
+
merge: "replace",
|
|
481
|
+
description: "Default --model for the board's review/respond/doctor panes; unset omits the flag.",
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
key: "board.agent.effort",
|
|
485
|
+
type: "string",
|
|
486
|
+
scopes: ["user", "machine"],
|
|
458
487
|
merge: "replace",
|
|
459
|
-
description: "
|
|
488
|
+
description: "Default --effort for the board's review/respond/doctor panes; unset omits the flag.",
|
|
460
489
|
},
|
|
461
490
|
{
|
|
462
491
|
key: "board.cwds",
|