forked from tinyhumansai/openhuman-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathghost-input.ts
More file actions
324 lines (278 loc) · 8.4 KB
/
Copy pathghost-input.ts
File metadata and controls
324 lines (278 loc) · 8.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
/**
* ghost-input.ts - Fish shell-style ghost text suggestions for the REPL
*
* Replaces readline.question() with a custom raw-mode keypress handler that
* renders dim ANSI ghost suggestions inline after the cursor. Accept them
* with Tab or Right arrow.
*/
import * as readlineSync from 'readline';
import * as readline from 'readline/promises';
// ─── Types ──────────────────────────────────────────────────────────
export interface SuggestionSource {
/** Return the suffix to show as ghost text, or null if no suggestion. */
suggest(line: string): string | null;
}
export interface GhostInputOptions {
prompt: string;
sources: SuggestionSource[];
}
export interface GhostInput {
/** Prompt for a line of input with ghost text suggestions. */
question(): Promise<string>;
/** Clear the line, run writeFn, then re-render the prompt. */
interruptForLog(writeFn: () => void): void;
/** Whether a question() call is currently active. */
readonly isActive: boolean;
/** Clean up resources. */
destroy(): void;
}
// ─── ANSI helpers ───────────────────────────────────────────────────
const ESC = '\x1b';
const CLEAR_LINE = `${ESC}[2K\r`;
const DIM = `${ESC}[2m`;
const RESET = `${ESC}[0m`;
// ─── Factory ────────────────────────────────────────────────────────
export function createGhostInput(
stdin: NodeJS.ReadStream,
stdout: NodeJS.WriteStream,
options: GhostInputOptions,
): GhostInput {
const { prompt, sources } = options;
let active = false;
let destroyed = false;
// Current line editing state (only meaningful while active)
let buf = '';
let cursor = 0;
let ghost = '';
let resolveFn: ((line: string) => void) | null = null;
// ─── Rendering ──────────────────────────────────────────────────
function computeGhost(): string {
// Only suggest when cursor is at end of input
if (cursor !== buf.length) return '';
for (const src of sources) {
const suggestion = src.suggest(buf);
if (suggestion) return suggestion;
}
return '';
}
function render(): void {
ghost = computeGhost();
// Clear line and redraw: prompt + user text + dim ghost
stdout.write(CLEAR_LINE);
stdout.write(prompt + buf);
if (ghost) {
stdout.write(DIM + ghost + RESET);
}
// Reposition cursor to actual editing position
const totalAfterCursor = (buf.length - cursor) + ghost.length;
if (totalAfterCursor > 0) {
stdout.write(`${ESC}[${totalAfterCursor}D`);
}
}
// ─── Keypress handler ───────────────────────────────────────────
function onKeypress(_ch: string | undefined, key: readlineSync.Key | undefined): void {
if (!active) return;
// Handle special keys via key.name / key.sequence
const name = key?.name;
const ctrl = key?.ctrl ?? false;
const meta = key?.meta ?? false;
const seq = key?.sequence ?? '';
// Ctrl+C: clear line or signal interrupt
if (ctrl && name === 'c') {
if (buf.length > 0) {
buf = '';
cursor = 0;
render();
} else {
// Signal interrupt on empty line
stdout.write('\n');
finish('');
// Also signal to the process that Ctrl+C was pressed on empty
process.emit('SIGINT' as never);
}
return;
}
// Ctrl+D: EOF on empty line
if (ctrl && name === 'd') {
if (buf.length === 0) {
stdout.write('\n');
finish(null as unknown as string);
}
return;
}
// Enter: submit
if (name === 'return') {
stdout.write('\n');
finish(buf);
return;
}
// Tab: accept ghost text (or do nothing if no ghost)
if (name === 'tab') {
if (ghost && cursor === buf.length) {
buf += ghost;
cursor = buf.length;
render();
}
return;
}
// Right arrow: accept ghost if at end, else move cursor
if (name === 'right') {
if (cursor === buf.length && ghost) {
buf += ghost;
cursor = buf.length;
render();
} else if (cursor < buf.length) {
cursor++;
render();
}
return;
}
// Left arrow
if (name === 'left') {
if (cursor > 0) {
cursor--;
render();
}
return;
}
// Home / Ctrl+A
if (name === 'home' || (ctrl && name === 'a')) {
cursor = 0;
render();
return;
}
// End / Ctrl+E
if (name === 'end' || (ctrl && name === 'e')) {
cursor = buf.length;
render();
return;
}
// Backspace
if (name === 'backspace') {
if (cursor > 0) {
buf = buf.slice(0, cursor - 1) + buf.slice(cursor);
cursor--;
render();
}
return;
}
// Delete
if (name === 'delete') {
if (cursor < buf.length) {
buf = buf.slice(0, cursor) + buf.slice(cursor + 1);
render();
}
return;
}
// Ctrl+U: kill line before cursor
if (ctrl && name === 'u') {
buf = buf.slice(cursor);
cursor = 0;
render();
return;
}
// Ctrl+K: kill line after cursor
if (ctrl && name === 'k') {
buf = buf.slice(0, cursor);
render();
return;
}
// Ctrl+W: kill word before cursor
if (ctrl && name === 'w') {
if (cursor > 0) {
let i = cursor - 1;
// skip trailing spaces
while (i > 0 && buf[i - 1] === ' ') i--;
// skip word characters
while (i > 0 && buf[i - 1] !== ' ') i--;
buf = buf.slice(0, i) + buf.slice(cursor);
cursor = i;
render();
}
return;
}
// Ctrl+L: clear screen, re-render
if (ctrl && name === 'l') {
stdout.write(`${ESC}[2J${ESC}[H`);
render();
return;
}
// Up/Down arrows: ignore (no history for now)
if (name === 'up' || name === 'down') {
return;
}
// Ignore other ctrl/meta combos
if (ctrl || meta) return;
// Regular character input
if (seq && seq.length === 1 && seq.charCodeAt(0) >= 32) {
buf = buf.slice(0, cursor) + seq + buf.slice(cursor);
cursor++;
render();
return;
}
// Multi-byte characters (emoji, unicode)
if (seq && seq.length > 1 && !name) {
buf = buf.slice(0, cursor) + seq + buf.slice(cursor);
cursor += seq.length;
render();
return;
}
}
function finish(line: string): void {
if (!active) return;
active = false;
ghost = '';
// Exit raw mode and remove listener
if (stdin.isTTY && stdin.isRaw) {
stdin.setRawMode(false);
}
stdin.removeListener('keypress', onKeypress);
if (resolveFn) {
const fn = resolveFn;
resolveFn = null;
fn(line);
}
}
// ─── Public API ─────────────────────────────────────────────────
function question(): Promise<string> {
if (destroyed) return Promise.reject(new Error('GhostInput destroyed'));
// Non-TTY fallback: use plain readline
if (!stdin.isTTY) {
const rl = readline.createInterface({ input: stdin, output: stdout });
return rl.question(prompt).finally(() => rl.close());
}
return new Promise<string>((resolve, reject) => {
active = true;
buf = '';
cursor = 0;
ghost = '';
resolveFn = resolve;
// Enable raw mode and keypress events
readlineSync.emitKeypressEvents(stdin);
stdin.setRawMode(true);
stdin.resume();
stdin.on('keypress', onKeypress);
// Initial render (just the prompt)
render();
});
}
function interruptForLog(writeFn: () => void): void {
if (!active) {
writeFn();
return;
}
// Clear current line, write the log, then re-render
stdout.write(CLEAR_LINE);
writeFn();
render();
}
return {
question,
interruptForLog,
get isActive() { return active; },
destroy() {
destroyed = true;
if (active) finish('');
},
};
}