wormclaude 1.0.54 → 1.0.56
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/cli.js +2 -1
- package/dist/theme.js +1 -1
- package/dist/tools.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -109,7 +109,8 @@ const _initHistory = () => {
|
|
|
109
109
|
// silemeyip KASKAD yapıyor (scrollback reflow). Alt-screen tüm ekranı yönetir → resize'da
|
|
110
110
|
// temiz yeniden çizim, kaskad YOK. Kopyalama: alt-screen'de fare seçimi sınırlı olduğundan
|
|
111
111
|
// /kopyala komutu (OSC52 ile panoya) sağlanır. ?1049h alt-screen · ?1007h alternate-scroll.
|
|
112
|
-
|
|
112
|
+
// VARSAYILAN: özel renderer (TUI). Eski ink sürümüne dönmek için WORMCLAUDE_INK=1.
|
|
113
|
+
const _TUI = process.env.WORMCLAUDE_INK ? false : true;
|
|
113
114
|
if (!_TUI) {
|
|
114
115
|
try {
|
|
115
116
|
process.stdout.write('\x1b[?1049h\x1b[?1007h\x1b[2J\x1b[H');
|
package/dist/theme.js
CHANGED
package/dist/tools.js
CHANGED
|
@@ -507,7 +507,7 @@ export const toolSchemas = [
|
|
|
507
507
|
type: 'function',
|
|
508
508
|
function: {
|
|
509
509
|
name: 'AskUserQuestion',
|
|
510
|
-
description: 'Ask the user a multiple-choice question and get their answer. Use when you need a decision only the user can make.',
|
|
510
|
+
description: 'Ask the user a multiple-choice question and get their answer (renders as an interactive picker). Use when a request is AMBIGUOUS and you need a decision only the user can make BEFORE acting — e.g. they ask you to build a website/app/project but did not specify the type, tech stack, or style. Prefer asking ONE concise question with 2-4 clear options (each with a short description) over guessing. Do NOT use it for things you can reasonably decide yourself.',
|
|
511
511
|
parameters: {
|
|
512
512
|
type: 'object',
|
|
513
513
|
properties: {
|