@openclaw/qqbot 2026.6.5-beta.2 → 2026.6.5-beta.3
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/api.js +7 -657
- package/dist/{channel-BLMrGYfg.js → channel-CcN43bPL.js} +32 -287
- package/dist/channel-entry-api.js +2 -0
- package/dist/channel-entry-fUBLXKPr.js +143 -0
- package/dist/channel-plugin-api.js +1 -1
- package/dist/{channel.setup-xBlmSU4X.js → channel.setup-CQ_DFfPx.js} +1 -1
- package/dist/config-ZEfgeoL4.js +257 -0
- package/dist/{config-schema-BI7AYP6Q.js → config-schema-BFLNZ8Nf.js} +17 -259
- package/dist/doctor-contract-BYTS8-ia.js +135 -0
- package/dist/doctor-contract-api.js +2 -0
- package/dist/{gateway-iL9SWAED.js → gateway-DdM2k3ss.js} +23 -26
- package/dist/{handler-runtime-CjXwuNlq.js → handler-runtime-JKYDlRdq.js} +4 -3
- package/dist/index.js +8 -1
- package/dist/log-SDfMMBWe.js +107 -0
- package/dist/{outbound-CEqyriPT.js → outbound-C9wV892v.js} +3 -14
- package/dist/request-context-Bm7PTBD1.js +43 -0
- package/dist/runtime-B9UoQ5NI.js +18 -0
- package/dist/runtime-api.js +1 -1
- package/dist/{runtime-BSgtMZ6G.js → sender-DIMG7jHz.js} +36 -123
- package/dist/setup-plugin-api.js +1 -1
- package/dist/{request-context-DsuA124s.js → slash-commands-impl-FRw-Dl44.js} +3 -45
- package/dist/target-parser-BdCUmxK7.js +285 -0
- package/dist/tools-2d9t-N1b.js +518 -0
- package/dist/tools-api.js +2 -0
- package/npm-shrinkwrap.json +3 -3
- package/openclaw.plugin.json +162 -0
- package/package.json +4 -4
package/openclaw.plugin.json
CHANGED
|
@@ -530,6 +530,87 @@
|
|
|
530
530
|
},
|
|
531
531
|
"additionalProperties": false
|
|
532
532
|
},
|
|
533
|
+
"groups": {
|
|
534
|
+
"type": "object",
|
|
535
|
+
"propertyNames": {
|
|
536
|
+
"type": "string"
|
|
537
|
+
},
|
|
538
|
+
"additionalProperties": {
|
|
539
|
+
"type": "object",
|
|
540
|
+
"properties": {
|
|
541
|
+
"requireMention": {
|
|
542
|
+
"type": "boolean"
|
|
543
|
+
},
|
|
544
|
+
"ignoreOtherMentions": {
|
|
545
|
+
"type": "boolean"
|
|
546
|
+
},
|
|
547
|
+
"historyLimit": {
|
|
548
|
+
"type": "number"
|
|
549
|
+
},
|
|
550
|
+
"name": {
|
|
551
|
+
"type": "string"
|
|
552
|
+
},
|
|
553
|
+
"prompt": {
|
|
554
|
+
"type": "string"
|
|
555
|
+
},
|
|
556
|
+
"tools": {
|
|
557
|
+
"type": "object",
|
|
558
|
+
"properties": {
|
|
559
|
+
"allow": {
|
|
560
|
+
"type": "array",
|
|
561
|
+
"items": {
|
|
562
|
+
"type": "string"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
"alsoAllow": {
|
|
566
|
+
"type": "array",
|
|
567
|
+
"items": {
|
|
568
|
+
"type": "string"
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"deny": {
|
|
572
|
+
"type": "array",
|
|
573
|
+
"items": {
|
|
574
|
+
"type": "string"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"additionalProperties": false
|
|
579
|
+
},
|
|
580
|
+
"toolsBySender": {
|
|
581
|
+
"type": "object",
|
|
582
|
+
"propertyNames": {
|
|
583
|
+
"type": "string"
|
|
584
|
+
},
|
|
585
|
+
"additionalProperties": {
|
|
586
|
+
"type": "object",
|
|
587
|
+
"properties": {
|
|
588
|
+
"allow": {
|
|
589
|
+
"type": "array",
|
|
590
|
+
"items": {
|
|
591
|
+
"type": "string"
|
|
592
|
+
}
|
|
593
|
+
},
|
|
594
|
+
"alsoAllow": {
|
|
595
|
+
"type": "array",
|
|
596
|
+
"items": {
|
|
597
|
+
"type": "string"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"deny": {
|
|
601
|
+
"type": "array",
|
|
602
|
+
"items": {
|
|
603
|
+
"type": "string"
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"additionalProperties": false
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
"additionalProperties": false
|
|
612
|
+
}
|
|
613
|
+
},
|
|
533
614
|
"stt": {
|
|
534
615
|
"type": "object",
|
|
535
616
|
"properties": {
|
|
@@ -804,6 +885,87 @@
|
|
|
804
885
|
}
|
|
805
886
|
},
|
|
806
887
|
"additionalProperties": false
|
|
888
|
+
},
|
|
889
|
+
"groups": {
|
|
890
|
+
"type": "object",
|
|
891
|
+
"propertyNames": {
|
|
892
|
+
"type": "string"
|
|
893
|
+
},
|
|
894
|
+
"additionalProperties": {
|
|
895
|
+
"type": "object",
|
|
896
|
+
"properties": {
|
|
897
|
+
"requireMention": {
|
|
898
|
+
"type": "boolean"
|
|
899
|
+
},
|
|
900
|
+
"ignoreOtherMentions": {
|
|
901
|
+
"type": "boolean"
|
|
902
|
+
},
|
|
903
|
+
"historyLimit": {
|
|
904
|
+
"type": "number"
|
|
905
|
+
},
|
|
906
|
+
"name": {
|
|
907
|
+
"type": "string"
|
|
908
|
+
},
|
|
909
|
+
"prompt": {
|
|
910
|
+
"type": "string"
|
|
911
|
+
},
|
|
912
|
+
"tools": {
|
|
913
|
+
"type": "object",
|
|
914
|
+
"properties": {
|
|
915
|
+
"allow": {
|
|
916
|
+
"type": "array",
|
|
917
|
+
"items": {
|
|
918
|
+
"type": "string"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"alsoAllow": {
|
|
922
|
+
"type": "array",
|
|
923
|
+
"items": {
|
|
924
|
+
"type": "string"
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
"deny": {
|
|
928
|
+
"type": "array",
|
|
929
|
+
"items": {
|
|
930
|
+
"type": "string"
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
"additionalProperties": false
|
|
935
|
+
},
|
|
936
|
+
"toolsBySender": {
|
|
937
|
+
"type": "object",
|
|
938
|
+
"propertyNames": {
|
|
939
|
+
"type": "string"
|
|
940
|
+
},
|
|
941
|
+
"additionalProperties": {
|
|
942
|
+
"type": "object",
|
|
943
|
+
"properties": {
|
|
944
|
+
"allow": {
|
|
945
|
+
"type": "array",
|
|
946
|
+
"items": {
|
|
947
|
+
"type": "string"
|
|
948
|
+
}
|
|
949
|
+
},
|
|
950
|
+
"alsoAllow": {
|
|
951
|
+
"type": "array",
|
|
952
|
+
"items": {
|
|
953
|
+
"type": "string"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"deny": {
|
|
957
|
+
"type": "array",
|
|
958
|
+
"items": {
|
|
959
|
+
"type": "string"
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"additionalProperties": false
|
|
964
|
+
}
|
|
965
|
+
}
|
|
966
|
+
},
|
|
967
|
+
"additionalProperties": false
|
|
968
|
+
}
|
|
807
969
|
}
|
|
808
970
|
},
|
|
809
971
|
"additionalProperties": {}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openclaw/qqbot",
|
|
3
|
-
"version": "2026.6.5-beta.
|
|
3
|
+
"version": "2026.6.5-beta.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "OpenClaw QQ Bot channel plugin for group and direct-message workflows.",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"zod": "4.4.3"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"openclaw": ">=2026.6.5-beta.
|
|
19
|
+
"openclaw": ">=2026.6.5-beta.3"
|
|
20
20
|
},
|
|
21
21
|
"peerDependenciesMeta": {
|
|
22
22
|
"openclaw": {
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"minHostVersion": ">=2026.4.10"
|
|
46
46
|
},
|
|
47
47
|
"compat": {
|
|
48
|
-
"pluginApi": ">=2026.6.5-beta.
|
|
48
|
+
"pluginApi": ">=2026.6.5-beta.3"
|
|
49
49
|
},
|
|
50
50
|
"build": {
|
|
51
|
-
"openclawVersion": "2026.6.5-beta.
|
|
51
|
+
"openclawVersion": "2026.6.5-beta.3"
|
|
52
52
|
},
|
|
53
53
|
"release": {
|
|
54
54
|
"publishToClawHub": true,
|