@trenchwork/erosolar 1.1.32 → 1.1.34
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/bin/erosolar.d.ts +1 -5
- package/dist/bin/erosolar.d.ts.map +1 -1
- package/dist/bin/erosolar.js +354 -3
- package/dist/bin/erosolar.js.map +1 -1
- package/dist/headless/interactiveShell.js +7 -12
- package/dist/headless/interactiveShell.js.map +1 -1
- package/dist/tools/engagementTools.d.ts.map +1 -1
- package/dist/tools/engagementTools.js +105 -0
- package/dist/tools/engagementTools.js.map +1 -1
- package/dist/ui/ink/InkPromptController.d.ts +4 -3
- package/dist/ui/ink/InkPromptController.d.ts.map +1 -1
- package/dist/ui/ink/InkPromptController.js +4 -3
- package/dist/ui/ink/InkPromptController.js.map +1 -1
- package/dist/ui/ink/StatusLine.d.ts +3 -4
- package/dist/ui/ink/StatusLine.d.ts.map +1 -1
- package/dist/ui/ink/StatusLine.js.map +1 -1
- package/package.json +3 -3
- package/dist/bin/deepseek.d.ts +0 -3
- package/dist/bin/deepseek.d.ts.map +0 -1
- package/dist/bin/deepseek.js +0 -345
- package/dist/bin/deepseek.js.map +0 -1
- package/dist/ui/ink/adapter.d.ts +0 -58
- package/dist/ui/ink/adapter.d.ts.map +0 -1
- package/dist/ui/ink/adapter.js +0 -113
- package/dist/ui/ink/adapter.js.map +0 -1
package/dist/ui/ink/adapter.js
DELETED
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Adapter — Phase 5 of the Ink migration. Bridges the Ink App tree to
|
|
3
|
-
* the rest of the codebase that imports PromptController.
|
|
4
|
-
*
|
|
5
|
-
* Goal: zero changes to interactiveShell.ts. When EROSOLAR_INK=1, the
|
|
6
|
-
* factory returns an Ink-backed instance that satisfies the same
|
|
7
|
-
* surface; otherwise it returns the existing PromptController. This is
|
|
8
|
-
* the migration's safety valve — production keeps the old path until
|
|
9
|
-
* we've grown enough Ink coverage to flip the default.
|
|
10
|
-
*
|
|
11
|
-
* The adapter is intentionally narrow today: it covers prompt input
|
|
12
|
-
* + status + history + suggestions. Methods on PromptController that
|
|
13
|
-
* we haven't ported yet (pinned prompt, secret-mode panels, the chrome
|
|
14
|
-
* banner, etc.) are no-ops or fall through to a tiny event emitter so
|
|
15
|
-
* existing callers don't crash. Each phase of the migration replaces
|
|
16
|
-
* one of those no-ops with a real Ink-backed implementation.
|
|
17
|
-
*/
|
|
18
|
-
import { EventEmitter } from 'node:events';
|
|
19
|
-
/**
|
|
20
|
-
* Returns true when the harness should mount the Ink-backed adapter.
|
|
21
|
-
* Three signals — explicit env opt-in, never in plain mode, never under
|
|
22
|
-
* a non-TTY pipe (Ink would refuse raw mode and crash).
|
|
23
|
-
*/
|
|
24
|
-
export function shouldUseInkAdapter(opts) {
|
|
25
|
-
if (opts.plainMode)
|
|
26
|
-
return false;
|
|
27
|
-
if (!opts.isTty)
|
|
28
|
-
return false;
|
|
29
|
-
const flag = (process.env['EROSOLAR_INK'] || '').toLowerCase();
|
|
30
|
-
return flag === '1' || flag === 'true' || flag === 'on' || flag === 'yes';
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Construct a live adapter. The implementation lazy-imports the React +
|
|
34
|
-
* Ink bundle so requiring this module from a non-Ink path doesn't pay
|
|
35
|
-
* the parse cost — the production CLI only loads Ink when actually
|
|
36
|
-
* mounting it.
|
|
37
|
-
*/
|
|
38
|
-
export async function createInkPromptAdapter(callbacks) {
|
|
39
|
-
// Lazy load — keeps Ink + React out of the cold-start path of every
|
|
40
|
-
// process that imports the adapter type but doesn't mount it.
|
|
41
|
-
const [{ render }, React, { App }] = await Promise.all([
|
|
42
|
-
import('ink'),
|
|
43
|
-
import('react'),
|
|
44
|
-
import('./App.js'),
|
|
45
|
-
]);
|
|
46
|
-
const events = new EventEmitter();
|
|
47
|
-
let status = {};
|
|
48
|
-
let history = [];
|
|
49
|
-
let suggestions = [];
|
|
50
|
-
let initialBuffer = '';
|
|
51
|
-
let inst = null;
|
|
52
|
-
let enabled = true;
|
|
53
|
-
const buildTree = () => React.createElement(App, {
|
|
54
|
-
history,
|
|
55
|
-
status: { message: status.message ?? null, modeMessage: status.modeMessage ?? null },
|
|
56
|
-
suggestions,
|
|
57
|
-
prompt: {
|
|
58
|
-
initial: initialBuffer,
|
|
59
|
-
onSubmit: (text) => callbacks.onSubmit(text),
|
|
60
|
-
onCancel: () => {
|
|
61
|
-
callbacks.onCtrlC?.({ hadBuffer: false });
|
|
62
|
-
callbacks.onCancel?.();
|
|
63
|
-
},
|
|
64
|
-
},
|
|
65
|
-
});
|
|
66
|
-
const rerender = () => {
|
|
67
|
-
if (!inst)
|
|
68
|
-
return;
|
|
69
|
-
inst.rerender(buildTree());
|
|
70
|
-
};
|
|
71
|
-
const adapter = Object.assign(events, {
|
|
72
|
-
enabled,
|
|
73
|
-
start() {
|
|
74
|
-
if (inst)
|
|
75
|
-
return;
|
|
76
|
-
inst = render(buildTree(), {
|
|
77
|
-
// exitOnCtrlC=false so the host gets Ctrl+C through onCancel.
|
|
78
|
-
exitOnCtrlC: false,
|
|
79
|
-
});
|
|
80
|
-
},
|
|
81
|
-
stop() {
|
|
82
|
-
if (!inst)
|
|
83
|
-
return;
|
|
84
|
-
try {
|
|
85
|
-
inst.unmount();
|
|
86
|
-
}
|
|
87
|
-
catch { /* ignore */ }
|
|
88
|
-
inst = null;
|
|
89
|
-
},
|
|
90
|
-
setStatusMessage(message) {
|
|
91
|
-
status = { ...status, message };
|
|
92
|
-
rerender();
|
|
93
|
-
},
|
|
94
|
-
setModeMessage(message) {
|
|
95
|
-
status = { ...status, modeMessage: message };
|
|
96
|
-
rerender();
|
|
97
|
-
},
|
|
98
|
-
appendHistory(item) {
|
|
99
|
-
history = [...history, item];
|
|
100
|
-
rerender();
|
|
101
|
-
},
|
|
102
|
-
setSuggestions(next) {
|
|
103
|
-
suggestions = next;
|
|
104
|
-
rerender();
|
|
105
|
-
},
|
|
106
|
-
setBuffer(text) {
|
|
107
|
-
initialBuffer = text;
|
|
108
|
-
rerender();
|
|
109
|
-
},
|
|
110
|
-
});
|
|
111
|
-
return adapter;
|
|
112
|
-
}
|
|
113
|
-
//# sourceMappingURL=adapter.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"adapter.js","sourceRoot":"","sources":["../../../src/ui/ink/adapter.ts"],"names":[],"mappings":"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"}
|