@j0hanz/code-review-analyst-mcp 1.6.3 → 1.6.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/lib/tool-factory.js +0 -3
- package/package.json +1 -1
package/dist/lib/tool-factory.js
CHANGED
|
@@ -242,7 +242,6 @@ function createFailureStatusMessage(outcome, errorMessage) {
|
|
|
242
242
|
async function sendSingleStepProgress(extra, toolName, context, current, state) {
|
|
243
243
|
await sendTaskProgress(extra, {
|
|
244
244
|
current,
|
|
245
|
-
total: 1,
|
|
246
245
|
message: current === 0
|
|
247
246
|
? formatProgressStep(toolName, context, state)
|
|
248
247
|
: formatProgressCompletion(toolName, context, state),
|
|
@@ -251,14 +250,12 @@ async function sendSingleStepProgress(extra, toolName, context, current, state)
|
|
|
251
250
|
async function reportProgressStepUpdate(reportProgress, toolName, context, current, metadata) {
|
|
252
251
|
await reportProgress({
|
|
253
252
|
current,
|
|
254
|
-
total: TASK_PROGRESS_TOTAL,
|
|
255
253
|
message: formatProgressStep(toolName, context, metadata),
|
|
256
254
|
});
|
|
257
255
|
}
|
|
258
256
|
async function reportProgressCompletionUpdate(reportProgress, toolName, context, outcome) {
|
|
259
257
|
await reportProgress({
|
|
260
258
|
current: TASK_PROGRESS_TOTAL,
|
|
261
|
-
total: TASK_PROGRESS_TOTAL,
|
|
262
259
|
message: formatProgressCompletion(toolName, context, outcome),
|
|
263
260
|
});
|
|
264
261
|
}
|