@tritard/waterbrother 0.16.146 → 0.16.147
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 +1 -1
- package/src/discord.js +33 -47
package/package.json
CHANGED
package/src/discord.js
CHANGED
|
@@ -506,55 +506,41 @@ function buildDiscordHelp() {
|
|
|
506
506
|
return [
|
|
507
507
|
"Waterbrother Discord control",
|
|
508
508
|
"",
|
|
509
|
-
"
|
|
510
|
-
"/
|
|
511
|
-
"/
|
|
512
|
-
"/
|
|
513
|
-
"/
|
|
514
|
-
"/
|
|
515
|
-
"/project share enable Roundtable on the current project and bind this Discord channel",
|
|
516
|
-
"/room show shared room status for the current project",
|
|
517
|
-
"/people list recently seen Discord users in this channel",
|
|
518
|
-
"/terminals list live Waterbrother terminals for this project",
|
|
519
|
-
"/executor show the selected executor",
|
|
520
|
-
"/reviewer show the assigned reviewer",
|
|
521
|
-
"/verifier show the assigned verifier",
|
|
522
|
-
"/verify run verification through the assigned verifier or live terminal",
|
|
523
|
-
"/verification show the latest verification result",
|
|
524
|
-
"/rerun-verification rerun verification",
|
|
525
|
-
"/override-verification override the current blocking verification",
|
|
526
|
-
"/review-status show blocking review and latest reviewer outcome",
|
|
527
|
-
"/accept-reviewer-concerns clear blocking review by accepting the reviewer concerns",
|
|
528
|
-
"/override-reviewer override the current blocking reviewer outcome",
|
|
529
|
-
"/switch-executor-to-reviewer make the reviewer the executor",
|
|
530
|
-
"/assign-role <terminal|this terminal> <executor|reviewer|verifier|standby> assign a room role",
|
|
531
|
-
"/members list shared room members",
|
|
532
|
-
"/tasks list shared room tasks",
|
|
533
|
-
"/task add <text> add a shared task",
|
|
534
|
-
"/task move <id> <open|active|blocked|done> move a shared task",
|
|
535
|
-
"/task assign <id> <member-id> assign a shared task",
|
|
536
|
-
"/task claim <id> claim a shared task for yourself",
|
|
537
|
-
"/task comment <id> <text> add a shared task comment",
|
|
538
|
-
"/task history <id> show shared task history and comments",
|
|
539
|
-
"/events list recent shared room events",
|
|
540
|
-
"/invites list pending shared room invites",
|
|
541
|
-
"/invite <@user|user-id> [owner|editor|observer] create a shared room invite",
|
|
542
|
-
"/approve-invite <invite-id> approve a pending invite",
|
|
543
|
-
"/accept-invite <invite-id> accept your own pending invite",
|
|
544
|
-
"/reject-invite <invite-id> reject a pending invite",
|
|
545
|
-
"/remove-member <user-id> remove a shared room member",
|
|
546
|
-
"/claim claim operator control for the shared room",
|
|
547
|
-
"/release release operator control for the shared room",
|
|
548
|
-
"/mode show the current shared room mode",
|
|
549
|
-
"/mode <chat|plan|execute> set the shared room mode",
|
|
509
|
+
"Core",
|
|
510
|
+
"/status runtime and linked session status",
|
|
511
|
+
"/project current project and sharing state",
|
|
512
|
+
"/project-share share this project with this Discord room",
|
|
513
|
+
"/room shared room summary",
|
|
514
|
+
"/people recently seen Discord users",
|
|
550
515
|
"",
|
|
551
|
-
"
|
|
552
|
-
"/
|
|
553
|
-
"/
|
|
554
|
-
"/
|
|
555
|
-
"/
|
|
516
|
+
"Roles and verification",
|
|
517
|
+
"/terminals live Waterbrother terminals",
|
|
518
|
+
"/executor selected executor",
|
|
519
|
+
"/reviewer assigned reviewer",
|
|
520
|
+
"/verifier assigned verifier",
|
|
521
|
+
"/assign-role target role assignment",
|
|
522
|
+
"/verify run verification",
|
|
523
|
+
"/verification latest verification result",
|
|
524
|
+
"/review-status reviewer status",
|
|
556
525
|
"",
|
|
557
|
-
"
|
|
526
|
+
"Tasks and invites",
|
|
527
|
+
"/tasks list tasks",
|
|
528
|
+
"/task-add add task",
|
|
529
|
+
"/task-move move task",
|
|
530
|
+
"/task-assign assign task",
|
|
531
|
+
"/task-claim claim task",
|
|
532
|
+
"/task-comment comment on task",
|
|
533
|
+
"/invites list invites",
|
|
534
|
+
"/invite create invite",
|
|
535
|
+
"",
|
|
536
|
+
"Sessions",
|
|
537
|
+
"/new fresh session",
|
|
538
|
+
"/sessions recent sessions",
|
|
539
|
+
"/resume switch session",
|
|
540
|
+
"/clear clear conversation",
|
|
541
|
+
"",
|
|
542
|
+
"Tip: type / in Discord to browse the full command list.",
|
|
543
|
+
"Natural language also works: make bert the verifier, who is in the room?, which terminals are live?"
|
|
558
544
|
].join("\n");
|
|
559
545
|
}
|
|
560
546
|
|