codewhale.history 2.8.8 → 2.8.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codewhale.history",
3
- "version": "2.8.8",
3
+ "version": "2.8.10",
4
4
  "description": "CodeWhale utility commands: session history, tool listing, file snapshot, interactive code quiz — global install",
5
5
  "bin": {
6
6
  "codewhale-history": "./_list_sessions.js",
@@ -166,7 +166,19 @@ explanation. The model removes lines from the file and the user restores them.
166
166
  7. **Re-read** the file. Diff the user's restored lines against the saved
167
167
  original.
168
168
  8. **Feedback** (see Interactive Evaluation below). Offer to restore the
169
- original if the user wants to undo.
169
+ original if the user wants to undo.
170
+
171
+ #### Thinking Suppression (Interactive Mode)
172
+
173
+ During steps 1–4 (selection through presentation), use **Skip** thinking
174
+ depth — emit no reasoning_content at all. Do not include the selected
175
+ snippet, the original lines, or which lines are being removed. The
176
+ thinking block is visible to the user and spoils the exercise before it
177
+ begins. Resume normal thinking depth at step 5 (after presentation).
178
+
179
+ The `edit_file` diff output is unavoidably visible in the transcript
180
+ (CodeWhale transparency), but thinking control keeps the primary leak
181
+ closed.
170
182
 
171
183
  #### Interactive Mode Presentation Format
172
184