create-claude-workspace 1.1.98 → 1.1.99
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.
|
@@ -497,6 +497,11 @@ export function runClaude(opts, log, runOpts = {}) {
|
|
|
497
497
|
detectErrorSignals(event);
|
|
498
498
|
// Track pending tool calls — tool_use in assistant, tool_result in user
|
|
499
499
|
if (event.type === 'assistant') {
|
|
500
|
+
// Reset resultReceived — Claude is still actively working, so any earlier
|
|
501
|
+
// result event (e.g. from a sub-agent with --include-partial-messages) was
|
|
502
|
+
// not the final one. Without this, postResultTimeout (30s) kills the process
|
|
503
|
+
// while Claude is thinking before its next tool call.
|
|
504
|
+
resultReceived = false;
|
|
500
505
|
const blocks = getContentBlocks(event);
|
|
501
506
|
if (blocks) {
|
|
502
507
|
for (const block of blocks) {
|