@anthropic-ai/claude-code 2.1.67 → 2.1.69
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/cli.js +3194 -2944
- package/package.json +1 -1
- package/sdk-tools.d.ts +443 -13
package/sdk-tools.d.ts
CHANGED
|
@@ -108,11 +108,6 @@ export type AgentOutput =
|
|
|
108
108
|
* Whether the calling agent has Read/Bash tools to check progress
|
|
109
109
|
*/
|
|
110
110
|
canReadOutputFile?: boolean;
|
|
111
|
-
}
|
|
112
|
-
| {
|
|
113
|
-
status: "sub_agent_entered";
|
|
114
|
-
description: string;
|
|
115
|
-
message: string;
|
|
116
111
|
};
|
|
117
112
|
export type FileReadOutput =
|
|
118
113
|
| {
|
|
@@ -269,10 +264,6 @@ export interface AgentInput {
|
|
|
269
264
|
* The type of specialized agent to use for this task
|
|
270
265
|
*/
|
|
271
266
|
subagent_type: string;
|
|
272
|
-
/**
|
|
273
|
-
* Optional model to use for this agent. If not specified, inherits from parent. Prefer haiku for quick, straightforward tasks to minimize cost and latency.
|
|
274
|
-
*/
|
|
275
|
-
model?: "sonnet" | "opus" | "haiku";
|
|
276
267
|
/**
|
|
277
268
|
* Optional agent ID to resume from. If provided, the agent will continue from the previous execution transcript.
|
|
278
269
|
*/
|
|
@@ -281,10 +272,6 @@ export interface AgentInput {
|
|
|
281
272
|
* Set to true to run this agent in the background. The tool result will include an output_file path - use Read tool or Bash tail to check on output.
|
|
282
273
|
*/
|
|
283
274
|
run_in_background?: boolean;
|
|
284
|
-
/**
|
|
285
|
-
* Maximum number of agentic turns (API round-trips) before stopping. Used internally for warmup.
|
|
286
|
-
*/
|
|
287
|
-
max_turns?: number;
|
|
288
275
|
/**
|
|
289
276
|
* Name for the spawned agent
|
|
290
277
|
*/
|
|
@@ -672,6 +659,10 @@ export interface AskUserQuestionInput {
|
|
|
672
659
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
673
660
|
*/
|
|
674
661
|
description: string;
|
|
662
|
+
/**
|
|
663
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
664
|
+
*/
|
|
665
|
+
preview?: string;
|
|
675
666
|
},
|
|
676
667
|
{
|
|
677
668
|
/**
|
|
@@ -682,6 +673,10 @@ export interface AskUserQuestionInput {
|
|
|
682
673
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
683
674
|
*/
|
|
684
675
|
description: string;
|
|
676
|
+
/**
|
|
677
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
678
|
+
*/
|
|
679
|
+
preview?: string;
|
|
685
680
|
}
|
|
686
681
|
]
|
|
687
682
|
| [
|
|
@@ -694,6 +689,10 @@ export interface AskUserQuestionInput {
|
|
|
694
689
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
695
690
|
*/
|
|
696
691
|
description: string;
|
|
692
|
+
/**
|
|
693
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
694
|
+
*/
|
|
695
|
+
preview?: string;
|
|
697
696
|
},
|
|
698
697
|
{
|
|
699
698
|
/**
|
|
@@ -704,6 +703,10 @@ export interface AskUserQuestionInput {
|
|
|
704
703
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
705
704
|
*/
|
|
706
705
|
description: string;
|
|
706
|
+
/**
|
|
707
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
708
|
+
*/
|
|
709
|
+
preview?: string;
|
|
707
710
|
},
|
|
708
711
|
{
|
|
709
712
|
/**
|
|
@@ -714,6 +717,10 @@ export interface AskUserQuestionInput {
|
|
|
714
717
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
715
718
|
*/
|
|
716
719
|
description: string;
|
|
720
|
+
/**
|
|
721
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
722
|
+
*/
|
|
723
|
+
preview?: string;
|
|
717
724
|
}
|
|
718
725
|
]
|
|
719
726
|
| [
|
|
@@ -726,6 +733,10 @@ export interface AskUserQuestionInput {
|
|
|
726
733
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
727
734
|
*/
|
|
728
735
|
description: string;
|
|
736
|
+
/**
|
|
737
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
738
|
+
*/
|
|
739
|
+
preview?: string;
|
|
729
740
|
},
|
|
730
741
|
{
|
|
731
742
|
/**
|
|
@@ -736,6 +747,10 @@ export interface AskUserQuestionInput {
|
|
|
736
747
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
737
748
|
*/
|
|
738
749
|
description: string;
|
|
750
|
+
/**
|
|
751
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
752
|
+
*/
|
|
753
|
+
preview?: string;
|
|
739
754
|
},
|
|
740
755
|
{
|
|
741
756
|
/**
|
|
@@ -746,6 +761,10 @@ export interface AskUserQuestionInput {
|
|
|
746
761
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
747
762
|
*/
|
|
748
763
|
description: string;
|
|
764
|
+
/**
|
|
765
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
766
|
+
*/
|
|
767
|
+
preview?: string;
|
|
749
768
|
},
|
|
750
769
|
{
|
|
751
770
|
/**
|
|
@@ -756,6 +775,10 @@ export interface AskUserQuestionInput {
|
|
|
756
775
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
757
776
|
*/
|
|
758
777
|
description: string;
|
|
778
|
+
/**
|
|
779
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
780
|
+
*/
|
|
781
|
+
preview?: string;
|
|
759
782
|
}
|
|
760
783
|
];
|
|
761
784
|
/**
|
|
@@ -791,6 +814,10 @@ export interface AskUserQuestionInput {
|
|
|
791
814
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
792
815
|
*/
|
|
793
816
|
description: string;
|
|
817
|
+
/**
|
|
818
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
819
|
+
*/
|
|
820
|
+
preview?: string;
|
|
794
821
|
},
|
|
795
822
|
{
|
|
796
823
|
/**
|
|
@@ -801,6 +828,10 @@ export interface AskUserQuestionInput {
|
|
|
801
828
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
802
829
|
*/
|
|
803
830
|
description: string;
|
|
831
|
+
/**
|
|
832
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
833
|
+
*/
|
|
834
|
+
preview?: string;
|
|
804
835
|
}
|
|
805
836
|
]
|
|
806
837
|
| [
|
|
@@ -813,6 +844,10 @@ export interface AskUserQuestionInput {
|
|
|
813
844
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
814
845
|
*/
|
|
815
846
|
description: string;
|
|
847
|
+
/**
|
|
848
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
849
|
+
*/
|
|
850
|
+
preview?: string;
|
|
816
851
|
},
|
|
817
852
|
{
|
|
818
853
|
/**
|
|
@@ -823,6 +858,10 @@ export interface AskUserQuestionInput {
|
|
|
823
858
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
824
859
|
*/
|
|
825
860
|
description: string;
|
|
861
|
+
/**
|
|
862
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
863
|
+
*/
|
|
864
|
+
preview?: string;
|
|
826
865
|
},
|
|
827
866
|
{
|
|
828
867
|
/**
|
|
@@ -833,6 +872,10 @@ export interface AskUserQuestionInput {
|
|
|
833
872
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
834
873
|
*/
|
|
835
874
|
description: string;
|
|
875
|
+
/**
|
|
876
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
877
|
+
*/
|
|
878
|
+
preview?: string;
|
|
836
879
|
}
|
|
837
880
|
]
|
|
838
881
|
| [
|
|
@@ -845,6 +888,10 @@ export interface AskUserQuestionInput {
|
|
|
845
888
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
846
889
|
*/
|
|
847
890
|
description: string;
|
|
891
|
+
/**
|
|
892
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
893
|
+
*/
|
|
894
|
+
preview?: string;
|
|
848
895
|
},
|
|
849
896
|
{
|
|
850
897
|
/**
|
|
@@ -855,6 +902,10 @@ export interface AskUserQuestionInput {
|
|
|
855
902
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
856
903
|
*/
|
|
857
904
|
description: string;
|
|
905
|
+
/**
|
|
906
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
907
|
+
*/
|
|
908
|
+
preview?: string;
|
|
858
909
|
},
|
|
859
910
|
{
|
|
860
911
|
/**
|
|
@@ -865,6 +916,10 @@ export interface AskUserQuestionInput {
|
|
|
865
916
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
866
917
|
*/
|
|
867
918
|
description: string;
|
|
919
|
+
/**
|
|
920
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
921
|
+
*/
|
|
922
|
+
preview?: string;
|
|
868
923
|
},
|
|
869
924
|
{
|
|
870
925
|
/**
|
|
@@ -875,6 +930,10 @@ export interface AskUserQuestionInput {
|
|
|
875
930
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
876
931
|
*/
|
|
877
932
|
description: string;
|
|
933
|
+
/**
|
|
934
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
935
|
+
*/
|
|
936
|
+
preview?: string;
|
|
878
937
|
}
|
|
879
938
|
];
|
|
880
939
|
/**
|
|
@@ -908,6 +967,10 @@ export interface AskUserQuestionInput {
|
|
|
908
967
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
909
968
|
*/
|
|
910
969
|
description: string;
|
|
970
|
+
/**
|
|
971
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
972
|
+
*/
|
|
973
|
+
preview?: string;
|
|
911
974
|
},
|
|
912
975
|
{
|
|
913
976
|
/**
|
|
@@ -918,6 +981,10 @@ export interface AskUserQuestionInput {
|
|
|
918
981
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
919
982
|
*/
|
|
920
983
|
description: string;
|
|
984
|
+
/**
|
|
985
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
986
|
+
*/
|
|
987
|
+
preview?: string;
|
|
921
988
|
}
|
|
922
989
|
]
|
|
923
990
|
| [
|
|
@@ -930,6 +997,10 @@ export interface AskUserQuestionInput {
|
|
|
930
997
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
931
998
|
*/
|
|
932
999
|
description: string;
|
|
1000
|
+
/**
|
|
1001
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1002
|
+
*/
|
|
1003
|
+
preview?: string;
|
|
933
1004
|
},
|
|
934
1005
|
{
|
|
935
1006
|
/**
|
|
@@ -940,6 +1011,10 @@ export interface AskUserQuestionInput {
|
|
|
940
1011
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
941
1012
|
*/
|
|
942
1013
|
description: string;
|
|
1014
|
+
/**
|
|
1015
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1016
|
+
*/
|
|
1017
|
+
preview?: string;
|
|
943
1018
|
},
|
|
944
1019
|
{
|
|
945
1020
|
/**
|
|
@@ -950,6 +1025,10 @@ export interface AskUserQuestionInput {
|
|
|
950
1025
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
951
1026
|
*/
|
|
952
1027
|
description: string;
|
|
1028
|
+
/**
|
|
1029
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1030
|
+
*/
|
|
1031
|
+
preview?: string;
|
|
953
1032
|
}
|
|
954
1033
|
]
|
|
955
1034
|
| [
|
|
@@ -962,6 +1041,10 @@ export interface AskUserQuestionInput {
|
|
|
962
1041
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
963
1042
|
*/
|
|
964
1043
|
description: string;
|
|
1044
|
+
/**
|
|
1045
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1046
|
+
*/
|
|
1047
|
+
preview?: string;
|
|
965
1048
|
},
|
|
966
1049
|
{
|
|
967
1050
|
/**
|
|
@@ -972,6 +1055,10 @@ export interface AskUserQuestionInput {
|
|
|
972
1055
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
973
1056
|
*/
|
|
974
1057
|
description: string;
|
|
1058
|
+
/**
|
|
1059
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1060
|
+
*/
|
|
1061
|
+
preview?: string;
|
|
975
1062
|
},
|
|
976
1063
|
{
|
|
977
1064
|
/**
|
|
@@ -982,6 +1069,10 @@ export interface AskUserQuestionInput {
|
|
|
982
1069
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
983
1070
|
*/
|
|
984
1071
|
description: string;
|
|
1072
|
+
/**
|
|
1073
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1074
|
+
*/
|
|
1075
|
+
preview?: string;
|
|
985
1076
|
},
|
|
986
1077
|
{
|
|
987
1078
|
/**
|
|
@@ -992,6 +1083,10 @@ export interface AskUserQuestionInput {
|
|
|
992
1083
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
993
1084
|
*/
|
|
994
1085
|
description: string;
|
|
1086
|
+
/**
|
|
1087
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1088
|
+
*/
|
|
1089
|
+
preview?: string;
|
|
995
1090
|
}
|
|
996
1091
|
];
|
|
997
1092
|
/**
|
|
@@ -1027,6 +1122,10 @@ export interface AskUserQuestionInput {
|
|
|
1027
1122
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1028
1123
|
*/
|
|
1029
1124
|
description: string;
|
|
1125
|
+
/**
|
|
1126
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1127
|
+
*/
|
|
1128
|
+
preview?: string;
|
|
1030
1129
|
},
|
|
1031
1130
|
{
|
|
1032
1131
|
/**
|
|
@@ -1037,6 +1136,10 @@ export interface AskUserQuestionInput {
|
|
|
1037
1136
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1038
1137
|
*/
|
|
1039
1138
|
description: string;
|
|
1139
|
+
/**
|
|
1140
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1141
|
+
*/
|
|
1142
|
+
preview?: string;
|
|
1040
1143
|
}
|
|
1041
1144
|
]
|
|
1042
1145
|
| [
|
|
@@ -1049,6 +1152,10 @@ export interface AskUserQuestionInput {
|
|
|
1049
1152
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1050
1153
|
*/
|
|
1051
1154
|
description: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1157
|
+
*/
|
|
1158
|
+
preview?: string;
|
|
1052
1159
|
},
|
|
1053
1160
|
{
|
|
1054
1161
|
/**
|
|
@@ -1059,6 +1166,10 @@ export interface AskUserQuestionInput {
|
|
|
1059
1166
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1060
1167
|
*/
|
|
1061
1168
|
description: string;
|
|
1169
|
+
/**
|
|
1170
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1171
|
+
*/
|
|
1172
|
+
preview?: string;
|
|
1062
1173
|
},
|
|
1063
1174
|
{
|
|
1064
1175
|
/**
|
|
@@ -1069,6 +1180,10 @@ export interface AskUserQuestionInput {
|
|
|
1069
1180
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1070
1181
|
*/
|
|
1071
1182
|
description: string;
|
|
1183
|
+
/**
|
|
1184
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1185
|
+
*/
|
|
1186
|
+
preview?: string;
|
|
1072
1187
|
}
|
|
1073
1188
|
]
|
|
1074
1189
|
| [
|
|
@@ -1081,6 +1196,10 @@ export interface AskUserQuestionInput {
|
|
|
1081
1196
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1082
1197
|
*/
|
|
1083
1198
|
description: string;
|
|
1199
|
+
/**
|
|
1200
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1201
|
+
*/
|
|
1202
|
+
preview?: string;
|
|
1084
1203
|
},
|
|
1085
1204
|
{
|
|
1086
1205
|
/**
|
|
@@ -1091,6 +1210,10 @@ export interface AskUserQuestionInput {
|
|
|
1091
1210
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1092
1211
|
*/
|
|
1093
1212
|
description: string;
|
|
1213
|
+
/**
|
|
1214
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1215
|
+
*/
|
|
1216
|
+
preview?: string;
|
|
1094
1217
|
},
|
|
1095
1218
|
{
|
|
1096
1219
|
/**
|
|
@@ -1101,6 +1224,10 @@ export interface AskUserQuestionInput {
|
|
|
1101
1224
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1102
1225
|
*/
|
|
1103
1226
|
description: string;
|
|
1227
|
+
/**
|
|
1228
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1229
|
+
*/
|
|
1230
|
+
preview?: string;
|
|
1104
1231
|
},
|
|
1105
1232
|
{
|
|
1106
1233
|
/**
|
|
@@ -1111,6 +1238,10 @@ export interface AskUserQuestionInput {
|
|
|
1111
1238
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1112
1239
|
*/
|
|
1113
1240
|
description: string;
|
|
1241
|
+
/**
|
|
1242
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1243
|
+
*/
|
|
1244
|
+
preview?: string;
|
|
1114
1245
|
}
|
|
1115
1246
|
];
|
|
1116
1247
|
/**
|
|
@@ -1144,6 +1275,10 @@ export interface AskUserQuestionInput {
|
|
|
1144
1275
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1145
1276
|
*/
|
|
1146
1277
|
description: string;
|
|
1278
|
+
/**
|
|
1279
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1280
|
+
*/
|
|
1281
|
+
preview?: string;
|
|
1147
1282
|
},
|
|
1148
1283
|
{
|
|
1149
1284
|
/**
|
|
@@ -1154,6 +1289,10 @@ export interface AskUserQuestionInput {
|
|
|
1154
1289
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1155
1290
|
*/
|
|
1156
1291
|
description: string;
|
|
1292
|
+
/**
|
|
1293
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1294
|
+
*/
|
|
1295
|
+
preview?: string;
|
|
1157
1296
|
}
|
|
1158
1297
|
]
|
|
1159
1298
|
| [
|
|
@@ -1166,6 +1305,10 @@ export interface AskUserQuestionInput {
|
|
|
1166
1305
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1167
1306
|
*/
|
|
1168
1307
|
description: string;
|
|
1308
|
+
/**
|
|
1309
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1310
|
+
*/
|
|
1311
|
+
preview?: string;
|
|
1169
1312
|
},
|
|
1170
1313
|
{
|
|
1171
1314
|
/**
|
|
@@ -1176,6 +1319,10 @@ export interface AskUserQuestionInput {
|
|
|
1176
1319
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1177
1320
|
*/
|
|
1178
1321
|
description: string;
|
|
1322
|
+
/**
|
|
1323
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1324
|
+
*/
|
|
1325
|
+
preview?: string;
|
|
1179
1326
|
},
|
|
1180
1327
|
{
|
|
1181
1328
|
/**
|
|
@@ -1186,6 +1333,10 @@ export interface AskUserQuestionInput {
|
|
|
1186
1333
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1187
1334
|
*/
|
|
1188
1335
|
description: string;
|
|
1336
|
+
/**
|
|
1337
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1338
|
+
*/
|
|
1339
|
+
preview?: string;
|
|
1189
1340
|
}
|
|
1190
1341
|
]
|
|
1191
1342
|
| [
|
|
@@ -1198,6 +1349,10 @@ export interface AskUserQuestionInput {
|
|
|
1198
1349
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1199
1350
|
*/
|
|
1200
1351
|
description: string;
|
|
1352
|
+
/**
|
|
1353
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1354
|
+
*/
|
|
1355
|
+
preview?: string;
|
|
1201
1356
|
},
|
|
1202
1357
|
{
|
|
1203
1358
|
/**
|
|
@@ -1208,6 +1363,10 @@ export interface AskUserQuestionInput {
|
|
|
1208
1363
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1209
1364
|
*/
|
|
1210
1365
|
description: string;
|
|
1366
|
+
/**
|
|
1367
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1368
|
+
*/
|
|
1369
|
+
preview?: string;
|
|
1211
1370
|
},
|
|
1212
1371
|
{
|
|
1213
1372
|
/**
|
|
@@ -1218,6 +1377,10 @@ export interface AskUserQuestionInput {
|
|
|
1218
1377
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1219
1378
|
*/
|
|
1220
1379
|
description: string;
|
|
1380
|
+
/**
|
|
1381
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1382
|
+
*/
|
|
1383
|
+
preview?: string;
|
|
1221
1384
|
},
|
|
1222
1385
|
{
|
|
1223
1386
|
/**
|
|
@@ -1228,6 +1391,10 @@ export interface AskUserQuestionInput {
|
|
|
1228
1391
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1229
1392
|
*/
|
|
1230
1393
|
description: string;
|
|
1394
|
+
/**
|
|
1395
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1396
|
+
*/
|
|
1397
|
+
preview?: string;
|
|
1231
1398
|
}
|
|
1232
1399
|
];
|
|
1233
1400
|
/**
|
|
@@ -1261,6 +1428,10 @@ export interface AskUserQuestionInput {
|
|
|
1261
1428
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1262
1429
|
*/
|
|
1263
1430
|
description: string;
|
|
1431
|
+
/**
|
|
1432
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1433
|
+
*/
|
|
1434
|
+
preview?: string;
|
|
1264
1435
|
},
|
|
1265
1436
|
{
|
|
1266
1437
|
/**
|
|
@@ -1271,6 +1442,10 @@ export interface AskUserQuestionInput {
|
|
|
1271
1442
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1272
1443
|
*/
|
|
1273
1444
|
description: string;
|
|
1445
|
+
/**
|
|
1446
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1447
|
+
*/
|
|
1448
|
+
preview?: string;
|
|
1274
1449
|
}
|
|
1275
1450
|
]
|
|
1276
1451
|
| [
|
|
@@ -1283,6 +1458,10 @@ export interface AskUserQuestionInput {
|
|
|
1283
1458
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1284
1459
|
*/
|
|
1285
1460
|
description: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1463
|
+
*/
|
|
1464
|
+
preview?: string;
|
|
1286
1465
|
},
|
|
1287
1466
|
{
|
|
1288
1467
|
/**
|
|
@@ -1293,6 +1472,10 @@ export interface AskUserQuestionInput {
|
|
|
1293
1472
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1294
1473
|
*/
|
|
1295
1474
|
description: string;
|
|
1475
|
+
/**
|
|
1476
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1477
|
+
*/
|
|
1478
|
+
preview?: string;
|
|
1296
1479
|
},
|
|
1297
1480
|
{
|
|
1298
1481
|
/**
|
|
@@ -1303,6 +1486,10 @@ export interface AskUserQuestionInput {
|
|
|
1303
1486
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1304
1487
|
*/
|
|
1305
1488
|
description: string;
|
|
1489
|
+
/**
|
|
1490
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1491
|
+
*/
|
|
1492
|
+
preview?: string;
|
|
1306
1493
|
}
|
|
1307
1494
|
]
|
|
1308
1495
|
| [
|
|
@@ -1315,6 +1502,10 @@ export interface AskUserQuestionInput {
|
|
|
1315
1502
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1316
1503
|
*/
|
|
1317
1504
|
description: string;
|
|
1505
|
+
/**
|
|
1506
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1507
|
+
*/
|
|
1508
|
+
preview?: string;
|
|
1318
1509
|
},
|
|
1319
1510
|
{
|
|
1320
1511
|
/**
|
|
@@ -1325,6 +1516,10 @@ export interface AskUserQuestionInput {
|
|
|
1325
1516
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1326
1517
|
*/
|
|
1327
1518
|
description: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1521
|
+
*/
|
|
1522
|
+
preview?: string;
|
|
1328
1523
|
},
|
|
1329
1524
|
{
|
|
1330
1525
|
/**
|
|
@@ -1335,6 +1530,10 @@ export interface AskUserQuestionInput {
|
|
|
1335
1530
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1336
1531
|
*/
|
|
1337
1532
|
description: string;
|
|
1533
|
+
/**
|
|
1534
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1535
|
+
*/
|
|
1536
|
+
preview?: string;
|
|
1338
1537
|
},
|
|
1339
1538
|
{
|
|
1340
1539
|
/**
|
|
@@ -1345,6 +1544,10 @@ export interface AskUserQuestionInput {
|
|
|
1345
1544
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1346
1545
|
*/
|
|
1347
1546
|
description: string;
|
|
1547
|
+
/**
|
|
1548
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1549
|
+
*/
|
|
1550
|
+
preview?: string;
|
|
1348
1551
|
}
|
|
1349
1552
|
];
|
|
1350
1553
|
/**
|
|
@@ -1380,6 +1583,10 @@ export interface AskUserQuestionInput {
|
|
|
1380
1583
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1381
1584
|
*/
|
|
1382
1585
|
description: string;
|
|
1586
|
+
/**
|
|
1587
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1588
|
+
*/
|
|
1589
|
+
preview?: string;
|
|
1383
1590
|
},
|
|
1384
1591
|
{
|
|
1385
1592
|
/**
|
|
@@ -1390,6 +1597,10 @@ export interface AskUserQuestionInput {
|
|
|
1390
1597
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1391
1598
|
*/
|
|
1392
1599
|
description: string;
|
|
1600
|
+
/**
|
|
1601
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1602
|
+
*/
|
|
1603
|
+
preview?: string;
|
|
1393
1604
|
}
|
|
1394
1605
|
]
|
|
1395
1606
|
| [
|
|
@@ -1402,6 +1613,10 @@ export interface AskUserQuestionInput {
|
|
|
1402
1613
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1403
1614
|
*/
|
|
1404
1615
|
description: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1618
|
+
*/
|
|
1619
|
+
preview?: string;
|
|
1405
1620
|
},
|
|
1406
1621
|
{
|
|
1407
1622
|
/**
|
|
@@ -1412,6 +1627,10 @@ export interface AskUserQuestionInput {
|
|
|
1412
1627
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1413
1628
|
*/
|
|
1414
1629
|
description: string;
|
|
1630
|
+
/**
|
|
1631
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1632
|
+
*/
|
|
1633
|
+
preview?: string;
|
|
1415
1634
|
},
|
|
1416
1635
|
{
|
|
1417
1636
|
/**
|
|
@@ -1422,6 +1641,10 @@ export interface AskUserQuestionInput {
|
|
|
1422
1641
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1423
1642
|
*/
|
|
1424
1643
|
description: string;
|
|
1644
|
+
/**
|
|
1645
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1646
|
+
*/
|
|
1647
|
+
preview?: string;
|
|
1425
1648
|
}
|
|
1426
1649
|
]
|
|
1427
1650
|
| [
|
|
@@ -1434,6 +1657,10 @@ export interface AskUserQuestionInput {
|
|
|
1434
1657
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1435
1658
|
*/
|
|
1436
1659
|
description: string;
|
|
1660
|
+
/**
|
|
1661
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1662
|
+
*/
|
|
1663
|
+
preview?: string;
|
|
1437
1664
|
},
|
|
1438
1665
|
{
|
|
1439
1666
|
/**
|
|
@@ -1444,6 +1671,10 @@ export interface AskUserQuestionInput {
|
|
|
1444
1671
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1445
1672
|
*/
|
|
1446
1673
|
description: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1676
|
+
*/
|
|
1677
|
+
preview?: string;
|
|
1447
1678
|
},
|
|
1448
1679
|
{
|
|
1449
1680
|
/**
|
|
@@ -1454,6 +1685,10 @@ export interface AskUserQuestionInput {
|
|
|
1454
1685
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1455
1686
|
*/
|
|
1456
1687
|
description: string;
|
|
1688
|
+
/**
|
|
1689
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1690
|
+
*/
|
|
1691
|
+
preview?: string;
|
|
1457
1692
|
},
|
|
1458
1693
|
{
|
|
1459
1694
|
/**
|
|
@@ -1464,6 +1699,10 @@ export interface AskUserQuestionInput {
|
|
|
1464
1699
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1465
1700
|
*/
|
|
1466
1701
|
description: string;
|
|
1702
|
+
/**
|
|
1703
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1704
|
+
*/
|
|
1705
|
+
preview?: string;
|
|
1467
1706
|
}
|
|
1468
1707
|
];
|
|
1469
1708
|
/**
|
|
@@ -1497,6 +1736,10 @@ export interface AskUserQuestionInput {
|
|
|
1497
1736
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1498
1737
|
*/
|
|
1499
1738
|
description: string;
|
|
1739
|
+
/**
|
|
1740
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1741
|
+
*/
|
|
1742
|
+
preview?: string;
|
|
1500
1743
|
},
|
|
1501
1744
|
{
|
|
1502
1745
|
/**
|
|
@@ -1507,6 +1750,10 @@ export interface AskUserQuestionInput {
|
|
|
1507
1750
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1508
1751
|
*/
|
|
1509
1752
|
description: string;
|
|
1753
|
+
/**
|
|
1754
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1755
|
+
*/
|
|
1756
|
+
preview?: string;
|
|
1510
1757
|
}
|
|
1511
1758
|
]
|
|
1512
1759
|
| [
|
|
@@ -1519,6 +1766,10 @@ export interface AskUserQuestionInput {
|
|
|
1519
1766
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1520
1767
|
*/
|
|
1521
1768
|
description: string;
|
|
1769
|
+
/**
|
|
1770
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1771
|
+
*/
|
|
1772
|
+
preview?: string;
|
|
1522
1773
|
},
|
|
1523
1774
|
{
|
|
1524
1775
|
/**
|
|
@@ -1529,6 +1780,10 @@ export interface AskUserQuestionInput {
|
|
|
1529
1780
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1530
1781
|
*/
|
|
1531
1782
|
description: string;
|
|
1783
|
+
/**
|
|
1784
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1785
|
+
*/
|
|
1786
|
+
preview?: string;
|
|
1532
1787
|
},
|
|
1533
1788
|
{
|
|
1534
1789
|
/**
|
|
@@ -1539,6 +1794,10 @@ export interface AskUserQuestionInput {
|
|
|
1539
1794
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1540
1795
|
*/
|
|
1541
1796
|
description: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1799
|
+
*/
|
|
1800
|
+
preview?: string;
|
|
1542
1801
|
}
|
|
1543
1802
|
]
|
|
1544
1803
|
| [
|
|
@@ -1551,6 +1810,10 @@ export interface AskUserQuestionInput {
|
|
|
1551
1810
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1552
1811
|
*/
|
|
1553
1812
|
description: string;
|
|
1813
|
+
/**
|
|
1814
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1815
|
+
*/
|
|
1816
|
+
preview?: string;
|
|
1554
1817
|
},
|
|
1555
1818
|
{
|
|
1556
1819
|
/**
|
|
@@ -1561,6 +1824,10 @@ export interface AskUserQuestionInput {
|
|
|
1561
1824
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1562
1825
|
*/
|
|
1563
1826
|
description: string;
|
|
1827
|
+
/**
|
|
1828
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1829
|
+
*/
|
|
1830
|
+
preview?: string;
|
|
1564
1831
|
},
|
|
1565
1832
|
{
|
|
1566
1833
|
/**
|
|
@@ -1571,6 +1838,10 @@ export interface AskUserQuestionInput {
|
|
|
1571
1838
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1572
1839
|
*/
|
|
1573
1840
|
description: string;
|
|
1841
|
+
/**
|
|
1842
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1843
|
+
*/
|
|
1844
|
+
preview?: string;
|
|
1574
1845
|
},
|
|
1575
1846
|
{
|
|
1576
1847
|
/**
|
|
@@ -1581,6 +1852,10 @@ export interface AskUserQuestionInput {
|
|
|
1581
1852
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1582
1853
|
*/
|
|
1583
1854
|
description: string;
|
|
1855
|
+
/**
|
|
1856
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1857
|
+
*/
|
|
1858
|
+
preview?: string;
|
|
1584
1859
|
}
|
|
1585
1860
|
];
|
|
1586
1861
|
/**
|
|
@@ -1614,6 +1889,10 @@ export interface AskUserQuestionInput {
|
|
|
1614
1889
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1615
1890
|
*/
|
|
1616
1891
|
description: string;
|
|
1892
|
+
/**
|
|
1893
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1894
|
+
*/
|
|
1895
|
+
preview?: string;
|
|
1617
1896
|
},
|
|
1618
1897
|
{
|
|
1619
1898
|
/**
|
|
@@ -1624,6 +1903,10 @@ export interface AskUserQuestionInput {
|
|
|
1624
1903
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1625
1904
|
*/
|
|
1626
1905
|
description: string;
|
|
1906
|
+
/**
|
|
1907
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1908
|
+
*/
|
|
1909
|
+
preview?: string;
|
|
1627
1910
|
}
|
|
1628
1911
|
]
|
|
1629
1912
|
| [
|
|
@@ -1636,6 +1919,10 @@ export interface AskUserQuestionInput {
|
|
|
1636
1919
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1637
1920
|
*/
|
|
1638
1921
|
description: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1924
|
+
*/
|
|
1925
|
+
preview?: string;
|
|
1639
1926
|
},
|
|
1640
1927
|
{
|
|
1641
1928
|
/**
|
|
@@ -1646,6 +1933,10 @@ export interface AskUserQuestionInput {
|
|
|
1646
1933
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1647
1934
|
*/
|
|
1648
1935
|
description: string;
|
|
1936
|
+
/**
|
|
1937
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1938
|
+
*/
|
|
1939
|
+
preview?: string;
|
|
1649
1940
|
},
|
|
1650
1941
|
{
|
|
1651
1942
|
/**
|
|
@@ -1656,6 +1947,10 @@ export interface AskUserQuestionInput {
|
|
|
1656
1947
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1657
1948
|
*/
|
|
1658
1949
|
description: string;
|
|
1950
|
+
/**
|
|
1951
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1952
|
+
*/
|
|
1953
|
+
preview?: string;
|
|
1659
1954
|
}
|
|
1660
1955
|
]
|
|
1661
1956
|
| [
|
|
@@ -1668,6 +1963,10 @@ export interface AskUserQuestionInput {
|
|
|
1668
1963
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1669
1964
|
*/
|
|
1670
1965
|
description: string;
|
|
1966
|
+
/**
|
|
1967
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1968
|
+
*/
|
|
1969
|
+
preview?: string;
|
|
1671
1970
|
},
|
|
1672
1971
|
{
|
|
1673
1972
|
/**
|
|
@@ -1678,6 +1977,10 @@ export interface AskUserQuestionInput {
|
|
|
1678
1977
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1679
1978
|
*/
|
|
1680
1979
|
description: string;
|
|
1980
|
+
/**
|
|
1981
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1982
|
+
*/
|
|
1983
|
+
preview?: string;
|
|
1681
1984
|
},
|
|
1682
1985
|
{
|
|
1683
1986
|
/**
|
|
@@ -1688,6 +1991,10 @@ export interface AskUserQuestionInput {
|
|
|
1688
1991
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1689
1992
|
*/
|
|
1690
1993
|
description: string;
|
|
1994
|
+
/**
|
|
1995
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
1996
|
+
*/
|
|
1997
|
+
preview?: string;
|
|
1691
1998
|
},
|
|
1692
1999
|
{
|
|
1693
2000
|
/**
|
|
@@ -1698,6 +2005,10 @@ export interface AskUserQuestionInput {
|
|
|
1698
2005
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1699
2006
|
*/
|
|
1700
2007
|
description: string;
|
|
2008
|
+
/**
|
|
2009
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2010
|
+
*/
|
|
2011
|
+
preview?: string;
|
|
1701
2012
|
}
|
|
1702
2013
|
];
|
|
1703
2014
|
/**
|
|
@@ -1731,6 +2042,10 @@ export interface AskUserQuestionInput {
|
|
|
1731
2042
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1732
2043
|
*/
|
|
1733
2044
|
description: string;
|
|
2045
|
+
/**
|
|
2046
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2047
|
+
*/
|
|
2048
|
+
preview?: string;
|
|
1734
2049
|
},
|
|
1735
2050
|
{
|
|
1736
2051
|
/**
|
|
@@ -1741,6 +2056,10 @@ export interface AskUserQuestionInput {
|
|
|
1741
2056
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1742
2057
|
*/
|
|
1743
2058
|
description: string;
|
|
2059
|
+
/**
|
|
2060
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2061
|
+
*/
|
|
2062
|
+
preview?: string;
|
|
1744
2063
|
}
|
|
1745
2064
|
]
|
|
1746
2065
|
| [
|
|
@@ -1753,6 +2072,10 @@ export interface AskUserQuestionInput {
|
|
|
1753
2072
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1754
2073
|
*/
|
|
1755
2074
|
description: string;
|
|
2075
|
+
/**
|
|
2076
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2077
|
+
*/
|
|
2078
|
+
preview?: string;
|
|
1756
2079
|
},
|
|
1757
2080
|
{
|
|
1758
2081
|
/**
|
|
@@ -1763,6 +2086,10 @@ export interface AskUserQuestionInput {
|
|
|
1763
2086
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1764
2087
|
*/
|
|
1765
2088
|
description: string;
|
|
2089
|
+
/**
|
|
2090
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2091
|
+
*/
|
|
2092
|
+
preview?: string;
|
|
1766
2093
|
},
|
|
1767
2094
|
{
|
|
1768
2095
|
/**
|
|
@@ -1773,6 +2100,10 @@ export interface AskUserQuestionInput {
|
|
|
1773
2100
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1774
2101
|
*/
|
|
1775
2102
|
description: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2105
|
+
*/
|
|
2106
|
+
preview?: string;
|
|
1776
2107
|
}
|
|
1777
2108
|
]
|
|
1778
2109
|
| [
|
|
@@ -1785,6 +2116,10 @@ export interface AskUserQuestionInput {
|
|
|
1785
2116
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1786
2117
|
*/
|
|
1787
2118
|
description: string;
|
|
2119
|
+
/**
|
|
2120
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2121
|
+
*/
|
|
2122
|
+
preview?: string;
|
|
1788
2123
|
},
|
|
1789
2124
|
{
|
|
1790
2125
|
/**
|
|
@@ -1795,6 +2130,10 @@ export interface AskUserQuestionInput {
|
|
|
1795
2130
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1796
2131
|
*/
|
|
1797
2132
|
description: string;
|
|
2133
|
+
/**
|
|
2134
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2135
|
+
*/
|
|
2136
|
+
preview?: string;
|
|
1798
2137
|
},
|
|
1799
2138
|
{
|
|
1800
2139
|
/**
|
|
@@ -1805,6 +2144,10 @@ export interface AskUserQuestionInput {
|
|
|
1805
2144
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1806
2145
|
*/
|
|
1807
2146
|
description: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2149
|
+
*/
|
|
2150
|
+
preview?: string;
|
|
1808
2151
|
},
|
|
1809
2152
|
{
|
|
1810
2153
|
/**
|
|
@@ -1815,6 +2158,10 @@ export interface AskUserQuestionInput {
|
|
|
1815
2158
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
1816
2159
|
*/
|
|
1817
2160
|
description: string;
|
|
2161
|
+
/**
|
|
2162
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2163
|
+
*/
|
|
2164
|
+
preview?: string;
|
|
1818
2165
|
}
|
|
1819
2166
|
];
|
|
1820
2167
|
/**
|
|
@@ -1829,6 +2176,21 @@ export interface AskUserQuestionInput {
|
|
|
1829
2176
|
answers?: {
|
|
1830
2177
|
[k: string]: string;
|
|
1831
2178
|
};
|
|
2179
|
+
/**
|
|
2180
|
+
* Optional per-question annotations from the user (e.g., notes on preview selections). Keyed by question text.
|
|
2181
|
+
*/
|
|
2182
|
+
annotations?: {
|
|
2183
|
+
[k: string]: {
|
|
2184
|
+
/**
|
|
2185
|
+
* The preview content of the selected option, if the question used previews.
|
|
2186
|
+
*/
|
|
2187
|
+
preview?: string;
|
|
2188
|
+
/**
|
|
2189
|
+
* Free-text notes the user added to their selection.
|
|
2190
|
+
*/
|
|
2191
|
+
notes?: string;
|
|
2192
|
+
};
|
|
2193
|
+
};
|
|
1832
2194
|
/**
|
|
1833
2195
|
* Optional metadata for tracking and analytics purposes. Not displayed to user.
|
|
1834
2196
|
*/
|
|
@@ -1931,6 +2293,10 @@ export interface ExitPlanModeOutput {
|
|
|
1931
2293
|
* Unique identifier for the plan approval request
|
|
1932
2294
|
*/
|
|
1933
2295
|
requestId?: string;
|
|
2296
|
+
/**
|
|
2297
|
+
* Whether this plan was generated by an ultraplan remote session
|
|
2298
|
+
*/
|
|
2299
|
+
isUltraplan?: boolean;
|
|
1934
2300
|
}
|
|
1935
2301
|
export interface FileEditOutput {
|
|
1936
2302
|
/**
|
|
@@ -1974,6 +2340,10 @@ export interface FileEditOutput {
|
|
|
1974
2340
|
deletions: number;
|
|
1975
2341
|
changes: number;
|
|
1976
2342
|
patch: string;
|
|
2343
|
+
/**
|
|
2344
|
+
* GitHub owner/repo when available
|
|
2345
|
+
*/
|
|
2346
|
+
repository?: string | null;
|
|
1977
2347
|
};
|
|
1978
2348
|
}
|
|
1979
2349
|
export interface FileWriteOutput {
|
|
@@ -2010,6 +2380,10 @@ export interface FileWriteOutput {
|
|
|
2010
2380
|
deletions: number;
|
|
2011
2381
|
changes: number;
|
|
2012
2382
|
patch: string;
|
|
2383
|
+
/**
|
|
2384
|
+
* GitHub owner/repo when available
|
|
2385
|
+
*/
|
|
2386
|
+
repository?: string | null;
|
|
2013
2387
|
};
|
|
2014
2388
|
}
|
|
2015
2389
|
export interface GlobOutput {
|
|
@@ -2110,6 +2484,10 @@ export interface ReadMcpResourceOutput {
|
|
|
2110
2484
|
* Text content of the resource
|
|
2111
2485
|
*/
|
|
2112
2486
|
text?: string;
|
|
2487
|
+
/**
|
|
2488
|
+
* Path where binary blob content was saved
|
|
2489
|
+
*/
|
|
2490
|
+
blobSavedTo?: string;
|
|
2113
2491
|
}[];
|
|
2114
2492
|
}
|
|
2115
2493
|
export interface SubscribeMcpResourceOutput {
|
|
@@ -2161,6 +2539,7 @@ export interface TodoWriteOutput {
|
|
|
2161
2539
|
status: "pending" | "in_progress" | "completed";
|
|
2162
2540
|
activeForm: string;
|
|
2163
2541
|
}[];
|
|
2542
|
+
verificationNudgeNeeded?: boolean;
|
|
2164
2543
|
}
|
|
2165
2544
|
export interface WebFetchOutput {
|
|
2166
2545
|
/**
|
|
@@ -2253,6 +2632,10 @@ export interface AskUserQuestionOutput {
|
|
|
2253
2632
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2254
2633
|
*/
|
|
2255
2634
|
description: string;
|
|
2635
|
+
/**
|
|
2636
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2637
|
+
*/
|
|
2638
|
+
preview?: string;
|
|
2256
2639
|
},
|
|
2257
2640
|
{
|
|
2258
2641
|
/**
|
|
@@ -2263,6 +2646,10 @@ export interface AskUserQuestionOutput {
|
|
|
2263
2646
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2264
2647
|
*/
|
|
2265
2648
|
description: string;
|
|
2649
|
+
/**
|
|
2650
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2651
|
+
*/
|
|
2652
|
+
preview?: string;
|
|
2266
2653
|
}
|
|
2267
2654
|
]
|
|
2268
2655
|
| [
|
|
@@ -2275,6 +2662,10 @@ export interface AskUserQuestionOutput {
|
|
|
2275
2662
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2276
2663
|
*/
|
|
2277
2664
|
description: string;
|
|
2665
|
+
/**
|
|
2666
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2667
|
+
*/
|
|
2668
|
+
preview?: string;
|
|
2278
2669
|
},
|
|
2279
2670
|
{
|
|
2280
2671
|
/**
|
|
@@ -2285,6 +2676,10 @@ export interface AskUserQuestionOutput {
|
|
|
2285
2676
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2286
2677
|
*/
|
|
2287
2678
|
description: string;
|
|
2679
|
+
/**
|
|
2680
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2681
|
+
*/
|
|
2682
|
+
preview?: string;
|
|
2288
2683
|
},
|
|
2289
2684
|
{
|
|
2290
2685
|
/**
|
|
@@ -2295,6 +2690,10 @@ export interface AskUserQuestionOutput {
|
|
|
2295
2690
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2296
2691
|
*/
|
|
2297
2692
|
description: string;
|
|
2693
|
+
/**
|
|
2694
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2695
|
+
*/
|
|
2696
|
+
preview?: string;
|
|
2298
2697
|
}
|
|
2299
2698
|
]
|
|
2300
2699
|
| [
|
|
@@ -2307,6 +2706,10 @@ export interface AskUserQuestionOutput {
|
|
|
2307
2706
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2308
2707
|
*/
|
|
2309
2708
|
description: string;
|
|
2709
|
+
/**
|
|
2710
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2711
|
+
*/
|
|
2712
|
+
preview?: string;
|
|
2310
2713
|
},
|
|
2311
2714
|
{
|
|
2312
2715
|
/**
|
|
@@ -2317,6 +2720,10 @@ export interface AskUserQuestionOutput {
|
|
|
2317
2720
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2318
2721
|
*/
|
|
2319
2722
|
description: string;
|
|
2723
|
+
/**
|
|
2724
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2725
|
+
*/
|
|
2726
|
+
preview?: string;
|
|
2320
2727
|
},
|
|
2321
2728
|
{
|
|
2322
2729
|
/**
|
|
@@ -2327,6 +2734,10 @@ export interface AskUserQuestionOutput {
|
|
|
2327
2734
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2328
2735
|
*/
|
|
2329
2736
|
description: string;
|
|
2737
|
+
/**
|
|
2738
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2739
|
+
*/
|
|
2740
|
+
preview?: string;
|
|
2330
2741
|
},
|
|
2331
2742
|
{
|
|
2332
2743
|
/**
|
|
@@ -2337,6 +2748,10 @@ export interface AskUserQuestionOutput {
|
|
|
2337
2748
|
* Explanation of what this option means or what will happen if chosen. Useful for providing context about trade-offs or implications.
|
|
2338
2749
|
*/
|
|
2339
2750
|
description: string;
|
|
2751
|
+
/**
|
|
2752
|
+
* Optional preview content rendered when this option is focused. Use for mockups, code snippets, or visual comparisons that help users compare options. See the tool description for the expected content format.
|
|
2753
|
+
*/
|
|
2754
|
+
preview?: string;
|
|
2340
2755
|
}
|
|
2341
2756
|
];
|
|
2342
2757
|
/**
|
|
@@ -2350,6 +2765,21 @@ export interface AskUserQuestionOutput {
|
|
|
2350
2765
|
answers: {
|
|
2351
2766
|
[k: string]: string;
|
|
2352
2767
|
};
|
|
2768
|
+
/**
|
|
2769
|
+
* Optional per-question annotations from the user (e.g., notes on preview selections). Keyed by question text.
|
|
2770
|
+
*/
|
|
2771
|
+
annotations?: {
|
|
2772
|
+
[k: string]: {
|
|
2773
|
+
/**
|
|
2774
|
+
* The preview content of the selected option, if the question used previews.
|
|
2775
|
+
*/
|
|
2776
|
+
preview?: string;
|
|
2777
|
+
/**
|
|
2778
|
+
* Free-text notes the user added to their selection.
|
|
2779
|
+
*/
|
|
2780
|
+
notes?: string;
|
|
2781
|
+
};
|
|
2782
|
+
};
|
|
2353
2783
|
}
|
|
2354
2784
|
export interface ConfigOutput {
|
|
2355
2785
|
success: boolean;
|