mobbdev 1.2.3 → 1.2.4
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/args/commands/upload_ai_blame.d.mts +32 -32
- package/dist/args/commands/upload_ai_blame.mjs +3913 -3580
- package/dist/index.mjs +4474 -4285
- package/package.json +1 -1
|
@@ -56,22 +56,32 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
56
56
|
name: string;
|
|
57
57
|
parameters: string;
|
|
58
58
|
result: string;
|
|
59
|
-
rawArguments?: string | undefined;
|
|
60
59
|
accepted?: boolean | undefined;
|
|
60
|
+
rawArguments?: string | undefined;
|
|
61
61
|
mcpServer?: string | undefined;
|
|
62
62
|
mcpToolName?: string | undefined;
|
|
63
63
|
}, {
|
|
64
64
|
name: string;
|
|
65
65
|
parameters: string;
|
|
66
66
|
result: string;
|
|
67
|
-
rawArguments?: string | undefined;
|
|
68
67
|
accepted?: boolean | undefined;
|
|
68
|
+
rawArguments?: string | undefined;
|
|
69
69
|
mcpServer?: string | undefined;
|
|
70
70
|
mcpToolName?: string | undefined;
|
|
71
71
|
}>>;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
73
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING" | "MCP_TOOL_CALL";
|
|
74
|
+
tool?: {
|
|
75
|
+
name: string;
|
|
76
|
+
parameters: string;
|
|
77
|
+
result: string;
|
|
78
|
+
accepted?: boolean | undefined;
|
|
79
|
+
rawArguments?: string | undefined;
|
|
80
|
+
mcpServer?: string | undefined;
|
|
81
|
+
mcpToolName?: string | undefined;
|
|
82
|
+
} | undefined;
|
|
74
83
|
date?: Date | undefined;
|
|
84
|
+
text?: string | undefined;
|
|
75
85
|
attachedFiles?: {
|
|
76
86
|
relativePath: string;
|
|
77
87
|
startLine?: number | undefined;
|
|
@@ -80,19 +90,19 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
80
90
|
inputCount: number;
|
|
81
91
|
outputCount: number;
|
|
82
92
|
} | undefined;
|
|
83
|
-
|
|
93
|
+
}, {
|
|
94
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING" | "MCP_TOOL_CALL";
|
|
84
95
|
tool?: {
|
|
85
96
|
name: string;
|
|
86
97
|
parameters: string;
|
|
87
98
|
result: string;
|
|
88
|
-
rawArguments?: string | undefined;
|
|
89
99
|
accepted?: boolean | undefined;
|
|
100
|
+
rawArguments?: string | undefined;
|
|
90
101
|
mcpServer?: string | undefined;
|
|
91
102
|
mcpToolName?: string | undefined;
|
|
92
103
|
} | undefined;
|
|
93
|
-
}, {
|
|
94
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING" | "MCP_TOOL_CALL";
|
|
95
104
|
date?: Date | undefined;
|
|
105
|
+
text?: string | undefined;
|
|
96
106
|
attachedFiles?: {
|
|
97
107
|
relativePath: string;
|
|
98
108
|
startLine?: number | undefined;
|
|
@@ -101,16 +111,6 @@ declare const PromptItemZ: z.ZodObject<{
|
|
|
101
111
|
inputCount: number;
|
|
102
112
|
outputCount: number;
|
|
103
113
|
} | undefined;
|
|
104
|
-
text?: string | undefined;
|
|
105
|
-
tool?: {
|
|
106
|
-
name: string;
|
|
107
|
-
parameters: string;
|
|
108
|
-
result: string;
|
|
109
|
-
rawArguments?: string | undefined;
|
|
110
|
-
accepted?: boolean | undefined;
|
|
111
|
-
mcpServer?: string | undefined;
|
|
112
|
-
mcpToolName?: string | undefined;
|
|
113
|
-
} | undefined;
|
|
114
114
|
}>;
|
|
115
115
|
type PromptItem = z.infer<typeof PromptItemZ>;
|
|
116
116
|
declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
@@ -149,22 +149,32 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
149
149
|
name: string;
|
|
150
150
|
parameters: string;
|
|
151
151
|
result: string;
|
|
152
|
-
rawArguments?: string | undefined;
|
|
153
152
|
accepted?: boolean | undefined;
|
|
153
|
+
rawArguments?: string | undefined;
|
|
154
154
|
mcpServer?: string | undefined;
|
|
155
155
|
mcpToolName?: string | undefined;
|
|
156
156
|
}, {
|
|
157
157
|
name: string;
|
|
158
158
|
parameters: string;
|
|
159
159
|
result: string;
|
|
160
|
-
rawArguments?: string | undefined;
|
|
161
160
|
accepted?: boolean | undefined;
|
|
161
|
+
rawArguments?: string | undefined;
|
|
162
162
|
mcpServer?: string | undefined;
|
|
163
163
|
mcpToolName?: string | undefined;
|
|
164
164
|
}>>;
|
|
165
165
|
}, "strip", z.ZodTypeAny, {
|
|
166
166
|
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING" | "MCP_TOOL_CALL";
|
|
167
|
+
tool?: {
|
|
168
|
+
name: string;
|
|
169
|
+
parameters: string;
|
|
170
|
+
result: string;
|
|
171
|
+
accepted?: boolean | undefined;
|
|
172
|
+
rawArguments?: string | undefined;
|
|
173
|
+
mcpServer?: string | undefined;
|
|
174
|
+
mcpToolName?: string | undefined;
|
|
175
|
+
} | undefined;
|
|
167
176
|
date?: Date | undefined;
|
|
177
|
+
text?: string | undefined;
|
|
168
178
|
attachedFiles?: {
|
|
169
179
|
relativePath: string;
|
|
170
180
|
startLine?: number | undefined;
|
|
@@ -173,19 +183,19 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
173
183
|
inputCount: number;
|
|
174
184
|
outputCount: number;
|
|
175
185
|
} | undefined;
|
|
176
|
-
|
|
186
|
+
}, {
|
|
187
|
+
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING" | "MCP_TOOL_CALL";
|
|
177
188
|
tool?: {
|
|
178
189
|
name: string;
|
|
179
190
|
parameters: string;
|
|
180
191
|
result: string;
|
|
181
|
-
rawArguments?: string | undefined;
|
|
182
192
|
accepted?: boolean | undefined;
|
|
193
|
+
rawArguments?: string | undefined;
|
|
183
194
|
mcpServer?: string | undefined;
|
|
184
195
|
mcpToolName?: string | undefined;
|
|
185
196
|
} | undefined;
|
|
186
|
-
}, {
|
|
187
|
-
type: "USER_PROMPT" | "AI_RESPONSE" | "TOOL_EXECUTION" | "AI_THINKING" | "MCP_TOOL_CALL";
|
|
188
197
|
date?: Date | undefined;
|
|
198
|
+
text?: string | undefined;
|
|
189
199
|
attachedFiles?: {
|
|
190
200
|
relativePath: string;
|
|
191
201
|
startLine?: number | undefined;
|
|
@@ -194,16 +204,6 @@ declare const PromptItemArrayZ: z.ZodArray<z.ZodObject<{
|
|
|
194
204
|
inputCount: number;
|
|
195
205
|
outputCount: number;
|
|
196
206
|
} | undefined;
|
|
197
|
-
text?: string | undefined;
|
|
198
|
-
tool?: {
|
|
199
|
-
name: string;
|
|
200
|
-
parameters: string;
|
|
201
|
-
result: string;
|
|
202
|
-
rawArguments?: string | undefined;
|
|
203
|
-
accepted?: boolean | undefined;
|
|
204
|
-
mcpServer?: string | undefined;
|
|
205
|
-
mcpToolName?: string | undefined;
|
|
206
|
-
} | undefined;
|
|
207
207
|
}>, "many">;
|
|
208
208
|
type PromptItemArray = z.infer<typeof PromptItemArrayZ>;
|
|
209
209
|
type UploadAiBlameOptions = {
|