@gotza02/sequential-thinking 2026.2.43 → 2026.2.45
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/tools/thinking.js +1 -1
- package/package.json +1 -1
package/dist/tools/thinking.js
CHANGED
|
@@ -81,7 +81,7 @@ If you have tried to fix the same problem 3 times and failed:
|
|
|
81
81
|
]).describe("The structural role of this thought (see THOUGHT TYPES above)"),
|
|
82
82
|
thoughtNumber: z.number().int().min(1).describe("Current thought number (e.g., 1, 2, 3)"),
|
|
83
83
|
totalThoughts: z.number().int().min(1).describe("Estimated total thoughts needed (can be adjusted)"),
|
|
84
|
-
nextThoughtNeeded: z.boolean().describe("True if more thinking/action is needed"),
|
|
84
|
+
nextThoughtNeeded: z.boolean().optional().default(true).describe("True if more thinking/action is needed"),
|
|
85
85
|
// New Interleaved Fields
|
|
86
86
|
blockId: z.string().optional().describe("ID for the current topic block (e.g., 'auth-debug', 'api-research'). Keep same ID to stay in context."),
|
|
87
87
|
relatedToolCall: z.string().optional().describe("If type='execution', specify the tool name here (e.g., 'read_file', 'edit_file')"),
|