@simplysm/sd-claude 13.0.65 → 13.0.67
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.
|
@@ -35,6 +35,22 @@ If a referenced file or document cannot be found, **stop immediately and ask the
|
|
|
35
35
|
|
|
36
36
|
## Bug Workarounds
|
|
37
37
|
|
|
38
|
-
### AskUserQuestion UI Clipping
|
|
38
|
+
### AskUserQuestion UI Clipping — CRITICAL
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
The `AskUserQuestion` widget overlaps and hides the text above it in the UI.
|
|
41
|
+
|
|
42
|
+
**Mitigation:** Before every `AskUserQuestion` call, output **5 blank lines** at the end of your text so the important content is pushed above the clipping zone.
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
(your text here)⏎
|
|
46
|
+
⏎
|
|
47
|
+
⏎
|
|
48
|
+
⏎
|
|
49
|
+
⏎
|
|
50
|
+
⏎
|
|
51
|
+
→ AskUserQuestion tool call
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
- This applies to EVERY `AskUserQuestion` call, no exceptions.
|
|
55
|
+
- The blank lines MUST be in the same message, immediately before the tool call.
|
|
56
|
+
- If you forget the blank lines, the user will not be able to read your preceding text.
|