@bike4mind/cli 0.2.49-feat-token-encryption-at-rest.21032 → 0.2.49-feat-cli-multiline-input.21032
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/{chunk-TVH4JPED.js → chunk-623C44JW.js} +4 -0
- package/dist/{chunk-NWWFWUGB.js → chunk-U3MM4PII.js} +6 -6
- package/dist/commands/doctorCommand.js +1 -1
- package/dist/commands/headlessCommand.js +1 -1
- package/dist/commands/updateCommand.js +1 -1
- package/dist/index.js +32 -4
- package/dist/terminalSetup-C5FHMLC3.js +214 -0
- package/package.json +6 -6
|
@@ -503,6 +503,10 @@ var COMMANDS = [
|
|
|
503
503
|
name: "sandbox:violations:clear",
|
|
504
504
|
description: "Clear all recorded sandbox violations"
|
|
505
505
|
},
|
|
506
|
+
{
|
|
507
|
+
name: "terminal-setup",
|
|
508
|
+
description: "Configure Shift+Enter for multi-line input"
|
|
509
|
+
},
|
|
506
510
|
{
|
|
507
511
|
name: "add-dir",
|
|
508
512
|
description: "Add a directory for file access",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// package.json
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@bike4mind/cli",
|
|
6
|
-
version: "0.2.49-feat-
|
|
6
|
+
version: "0.2.49-feat-cli-multiline-input.21032+23042ba16",
|
|
7
7
|
type: "module",
|
|
8
8
|
description: "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
9
9
|
license: "UNLICENSED",
|
|
@@ -118,10 +118,10 @@ var package_default = {
|
|
|
118
118
|
},
|
|
119
119
|
devDependencies: {
|
|
120
120
|
"@bike4mind/agents": "0.1.0",
|
|
121
|
-
"@bike4mind/common": "2.67.1-feat-
|
|
122
|
-
"@bike4mind/mcp": "1.33.11-feat-
|
|
123
|
-
"@bike4mind/services": "2.63.1-feat-
|
|
124
|
-
"@bike4mind/utils": "2.15.4-feat-
|
|
121
|
+
"@bike4mind/common": "2.67.1-feat-cli-multiline-input.21032+23042ba16",
|
|
122
|
+
"@bike4mind/mcp": "1.33.11-feat-cli-multiline-input.21032+23042ba16",
|
|
123
|
+
"@bike4mind/services": "2.63.1-feat-cli-multiline-input.21032+23042ba16",
|
|
124
|
+
"@bike4mind/utils": "2.15.4-feat-cli-multiline-input.21032+23042ba16",
|
|
125
125
|
"@types/better-sqlite3": "^7.6.13",
|
|
126
126
|
"@types/diff": "^5.0.9",
|
|
127
127
|
"@types/jsonwebtoken": "^9.0.4",
|
|
@@ -140,7 +140,7 @@ var package_default = {
|
|
|
140
140
|
optionalDependencies: {
|
|
141
141
|
"@vscode/ripgrep": "^1.17.0"
|
|
142
142
|
},
|
|
143
|
-
gitHead: "
|
|
143
|
+
gitHead: "23042ba16b9f76d05f18dcdc3d5ccfd4df93dfc3"
|
|
144
144
|
};
|
|
145
145
|
|
|
146
146
|
// src/utils/updateChecker.ts
|
package/dist/index.js
CHANGED
|
@@ -46,7 +46,7 @@ import {
|
|
|
46
46
|
setWebSocketToolExecutor,
|
|
47
47
|
substituteArguments,
|
|
48
48
|
warmFileCache
|
|
49
|
-
} from "./chunk-
|
|
49
|
+
} from "./chunk-623C44JW.js";
|
|
50
50
|
import "./chunk-BDQBOLYG.js";
|
|
51
51
|
import "./chunk-F6IY547T.js";
|
|
52
52
|
import "./chunk-GQGOWACU.js";
|
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
import {
|
|
65
65
|
checkForUpdate,
|
|
66
66
|
package_default
|
|
67
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-U3MM4PII.js";
|
|
68
68
|
import {
|
|
69
69
|
selectActiveBackgroundAgents,
|
|
70
70
|
useCliStore
|
|
@@ -169,9 +169,21 @@ function CustomTextInput({
|
|
|
169
169
|
useInput(
|
|
170
170
|
(input, key) => {
|
|
171
171
|
if (key.return && !key.meta && !key.shift) {
|
|
172
|
+
if (value.length > 0 && value[cursorOffset - 1] === "\\") {
|
|
173
|
+
const newValue = value.slice(0, cursorOffset - 1) + "\n" + value.slice(cursorOffset);
|
|
174
|
+
emitChange(newValue);
|
|
175
|
+
setCursorOffset(cursorOffset);
|
|
176
|
+
return;
|
|
177
|
+
}
|
|
172
178
|
onSubmit(value);
|
|
173
179
|
return;
|
|
174
180
|
}
|
|
181
|
+
if (key.return && (key.shift || key.meta)) {
|
|
182
|
+
const newValue = value.slice(0, cursorOffset) + "\n" + value.slice(cursorOffset);
|
|
183
|
+
emitChange(newValue);
|
|
184
|
+
setCursorOffset(cursorOffset + 1);
|
|
185
|
+
return;
|
|
186
|
+
}
|
|
175
187
|
if (key.meta && !key.ctrl) {
|
|
176
188
|
if (key.shift) {
|
|
177
189
|
if (key.leftArrow) {
|
|
@@ -835,7 +847,10 @@ function InputPrompt({
|
|
|
835
847
|
const handlePaste = (content) => {
|
|
836
848
|
const truncated = content.length > MAX_PASTE_SIZE ? content.slice(0, MAX_PASTE_SIZE) : content;
|
|
837
849
|
const lineCount = truncated.split("\n").length;
|
|
838
|
-
|
|
850
|
+
const prefix = value.trim();
|
|
851
|
+
const combined = prefix ? `${prefix}
|
|
852
|
+
${truncated}` : truncated;
|
|
853
|
+
setPastedContent(combined, lineCount);
|
|
839
854
|
};
|
|
840
855
|
const handleChange = async (newValue) => {
|
|
841
856
|
if (pastedContent) {
|
|
@@ -4025,6 +4040,9 @@ Custom Commands:
|
|
|
4025
4040
|
/commands:new <name> - Create a new custom command
|
|
4026
4041
|
/commands:reload - Reload custom commands from disk
|
|
4027
4042
|
|
|
4043
|
+
Terminal Setup:
|
|
4044
|
+
/terminal-setup - Configure Shift+Enter for multi-line input
|
|
4045
|
+
|
|
4028
4046
|
Keyboard Shortcuts:
|
|
4029
4047
|
Ctrl+C - Press twice to exit
|
|
4030
4048
|
Esc - Abort current operation
|
|
@@ -4040,7 +4058,12 @@ Keyboard Shortcuts:
|
|
|
4040
4058
|
Ctrl+L - Clear input
|
|
4041
4059
|
\u2191 / \u2193 - Navigate history / autocomplete
|
|
4042
4060
|
Tab - Accept autocomplete suggestion
|
|
4043
|
-
Shift+Cmd+Click - Open links in browser
|
|
4061
|
+
Shift+Cmd+Click - Open links in browser
|
|
4062
|
+
|
|
4063
|
+
Multi-line Input:
|
|
4064
|
+
\\ + Enter - Insert newline (works everywhere)
|
|
4065
|
+
Option + Enter - Insert newline (macOS standard terminals)
|
|
4066
|
+
Shift + Enter - Insert newline (iTerm2, WezTerm, Ghostty, Kitty)${hasCustomCommands ? "\n\n\u{1F4DD} Custom Commands Available:" : ""}${hasCustomCommands ? customCommands.map((cmd) => {
|
|
4044
4067
|
const source = cmd.source === "global" ? "\u{1F3E0}" : "\u{1F4C1}";
|
|
4045
4068
|
const argHint = cmd.argumentHint ? ` ${cmd.argumentHint}` : "";
|
|
4046
4069
|
return `
|
|
@@ -5055,6 +5078,11 @@ Allowed domains (${domains.length}):`);
|
|
|
5055
5078
|
console.log("");
|
|
5056
5079
|
break;
|
|
5057
5080
|
}
|
|
5081
|
+
case "terminal-setup": {
|
|
5082
|
+
const { runTerminalSetup } = await import("./terminalSetup-C5FHMLC3.js");
|
|
5083
|
+
await runTerminalSetup();
|
|
5084
|
+
break;
|
|
5085
|
+
}
|
|
5058
5086
|
case "add-dir": {
|
|
5059
5087
|
let dirPath = args.join(" ").trim();
|
|
5060
5088
|
if (!dirPath) {
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
// src/utils/terminalSetup.ts
|
|
4
|
+
import { existsSync, promises as fs } from "fs";
|
|
5
|
+
import path from "path";
|
|
6
|
+
import { homedir } from "os";
|
|
7
|
+
var TERMINAL_INFO = {
|
|
8
|
+
iterm2: { name: "iTerm2", status: "native" },
|
|
9
|
+
wezterm: { name: "WezTerm", status: "native" },
|
|
10
|
+
ghostty: { name: "Ghostty", status: "native" },
|
|
11
|
+
kitty: { name: "Kitty", status: "native" },
|
|
12
|
+
vscode: { name: "VS Code", status: "configurable" },
|
|
13
|
+
alacritty: { name: "Alacritty", status: "configurable" },
|
|
14
|
+
zed: { name: "Zed", status: "manual" },
|
|
15
|
+
terminal_app: { name: "Terminal.app", status: "manual" },
|
|
16
|
+
warp: { name: "Warp", status: "manual" },
|
|
17
|
+
unknown: { name: "Unknown", status: "unknown" }
|
|
18
|
+
};
|
|
19
|
+
function detectTerminal() {
|
|
20
|
+
const termProgram = process.env["TERM_PROGRAM"] ?? "";
|
|
21
|
+
const term = process.env["TERM"] ?? "";
|
|
22
|
+
if (termProgram === "vscode" || process.env["VSCODE_PID"]) {
|
|
23
|
+
return { id: "vscode", ...TERMINAL_INFO.vscode };
|
|
24
|
+
}
|
|
25
|
+
if (termProgram === "iTerm.app" || process.env["ITERM_SESSION_ID"]) {
|
|
26
|
+
return { id: "iterm2", ...TERMINAL_INFO.iterm2 };
|
|
27
|
+
}
|
|
28
|
+
if (termProgram === "WezTerm" || process.env["WEZTERM_PANE"]) {
|
|
29
|
+
return { id: "wezterm", ...TERMINAL_INFO.wezterm };
|
|
30
|
+
}
|
|
31
|
+
if (termProgram === "ghostty" || term === "xterm-ghostty") {
|
|
32
|
+
return { id: "ghostty", ...TERMINAL_INFO.ghostty };
|
|
33
|
+
}
|
|
34
|
+
if (term === "xterm-kitty" || process.env["KITTY_PID"]) {
|
|
35
|
+
return { id: "kitty", ...TERMINAL_INFO.kitty };
|
|
36
|
+
}
|
|
37
|
+
if (termProgram === "Alacritty" || term === "alacritty") {
|
|
38
|
+
return { id: "alacritty", ...TERMINAL_INFO.alacritty };
|
|
39
|
+
}
|
|
40
|
+
if (termProgram === "WarpTerminal" || process.env["WARP_IS_LOCAL_SHELL_SESSION"]) {
|
|
41
|
+
return { id: "warp", ...TERMINAL_INFO.warp };
|
|
42
|
+
}
|
|
43
|
+
if (termProgram === "zed") {
|
|
44
|
+
return { id: "zed", ...TERMINAL_INFO.zed };
|
|
45
|
+
}
|
|
46
|
+
if (termProgram === "Apple_Terminal") {
|
|
47
|
+
return { id: "terminal_app", ...TERMINAL_INFO.terminal_app };
|
|
48
|
+
}
|
|
49
|
+
return { id: "unknown", ...TERMINAL_INFO.unknown };
|
|
50
|
+
}
|
|
51
|
+
var VSCODE_KEYBINDING = {
|
|
52
|
+
key: "shift+enter",
|
|
53
|
+
command: "workbench.action.terminal.sendSequence",
|
|
54
|
+
args: { text: "\x1B[13;2u" },
|
|
55
|
+
when: "terminalFocus"
|
|
56
|
+
};
|
|
57
|
+
async function setupVSCode() {
|
|
58
|
+
const vscodeDirs = [
|
|
59
|
+
path.join(homedir(), "Library", "Application Support", "Code", "User"),
|
|
60
|
+
// macOS
|
|
61
|
+
path.join(homedir(), ".config", "Code", "User"),
|
|
62
|
+
// Linux
|
|
63
|
+
path.join(homedir(), "AppData", "Roaming", "Code", "User")
|
|
64
|
+
// Windows
|
|
65
|
+
];
|
|
66
|
+
const vscodeDir = vscodeDirs.find((dir) => existsSync(dir));
|
|
67
|
+
if (!vscodeDir) {
|
|
68
|
+
return {
|
|
69
|
+
success: false,
|
|
70
|
+
message: "Could not find VS Code settings directory.\nManually add this to your keybindings.json (Cmd+K Cmd+S \u2192 Open Keyboard Shortcuts JSON):\n\n" + JSON.stringify(VSCODE_KEYBINDING, null, 2)
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
const keybindingsPath = path.join(vscodeDir, "keybindings.json");
|
|
74
|
+
let keybindings = [];
|
|
75
|
+
if (existsSync(keybindingsPath)) {
|
|
76
|
+
const content = await fs.readFile(keybindingsPath, "utf-8");
|
|
77
|
+
const stripped = content.replace(/\/\/.*$/gm, "").replace(/\/\*[\s\S]*?\*\//g, "");
|
|
78
|
+
try {
|
|
79
|
+
keybindings = JSON.parse(stripped);
|
|
80
|
+
} catch {
|
|
81
|
+
return {
|
|
82
|
+
success: false,
|
|
83
|
+
message: "Could not parse keybindings.json. Manually add this entry:\n\n" + JSON.stringify(VSCODE_KEYBINDING, null, 2)
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
const alreadyConfigured = keybindings.some(
|
|
88
|
+
(binding) => binding["key"] === "shift+enter" && binding["command"] === "workbench.action.terminal.sendSequence" && binding["when"] === "terminalFocus"
|
|
89
|
+
);
|
|
90
|
+
if (alreadyConfigured) {
|
|
91
|
+
return {
|
|
92
|
+
success: true,
|
|
93
|
+
message: "VS Code is already configured for Shift+Enter newlines."
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
keybindings.push(VSCODE_KEYBINDING);
|
|
97
|
+
await fs.writeFile(keybindingsPath, JSON.stringify(keybindings, null, 2) + "\n", "utf-8");
|
|
98
|
+
return {
|
|
99
|
+
success: true,
|
|
100
|
+
message: `Updated ${keybindingsPath}
|
|
101
|
+
Shift+Enter will now insert a newline in the B4M CLI.
|
|
102
|
+
Restart your VS Code terminal for the change to take effect.`
|
|
103
|
+
};
|
|
104
|
+
}
|
|
105
|
+
var ALACRITTY_TOML_SNIPPET = `
|
|
106
|
+
# B4M CLI: Shift+Enter sends Kitty-protocol sequence for newline
|
|
107
|
+
[[keyboard.bindings]]
|
|
108
|
+
key = "Return"
|
|
109
|
+
mods = "Shift"
|
|
110
|
+
chars = "\\u001b[13;2u"
|
|
111
|
+
`.trim();
|
|
112
|
+
async function setupAlacritty() {
|
|
113
|
+
const configPaths = [
|
|
114
|
+
path.join(homedir(), ".config", "alacritty", "alacritty.toml"),
|
|
115
|
+
path.join(homedir(), ".alacritty.toml")
|
|
116
|
+
];
|
|
117
|
+
const existingConfig = configPaths.find((p) => existsSync(p));
|
|
118
|
+
const configPath = existingConfig ?? configPaths[0];
|
|
119
|
+
let content = "";
|
|
120
|
+
if (existingConfig) {
|
|
121
|
+
content = await fs.readFile(configPath, "utf-8");
|
|
122
|
+
if (content.includes("[13;2u") || content.includes("\\u001b[13;2u")) {
|
|
123
|
+
return {
|
|
124
|
+
success: true,
|
|
125
|
+
message: "Alacritty is already configured for Shift+Enter newlines."
|
|
126
|
+
};
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
const newContent = content ? content.trimEnd() + "\n\n" + ALACRITTY_TOML_SNIPPET + "\n" : ALACRITTY_TOML_SNIPPET + "\n";
|
|
130
|
+
const configDir = path.dirname(configPath);
|
|
131
|
+
if (!existsSync(configDir)) {
|
|
132
|
+
await fs.mkdir(configDir, { recursive: true });
|
|
133
|
+
}
|
|
134
|
+
await fs.writeFile(configPath, newContent, "utf-8");
|
|
135
|
+
return {
|
|
136
|
+
success: true,
|
|
137
|
+
message: `Updated ${configPath}
|
|
138
|
+
Shift+Enter will now insert a newline in the B4M CLI.
|
|
139
|
+
Restart Alacritty for the change to take effect.`
|
|
140
|
+
};
|
|
141
|
+
}
|
|
142
|
+
function getManualInstructions(terminal) {
|
|
143
|
+
switch (terminal.id) {
|
|
144
|
+
case "zed":
|
|
145
|
+
return "Add this to your Zed keymap.json (Zed \u2192 Settings \u2192 Open Key Bindings):\n\n" + JSON.stringify(
|
|
146
|
+
[
|
|
147
|
+
{
|
|
148
|
+
context: "Terminal",
|
|
149
|
+
bindings: {
|
|
150
|
+
"shift-enter": ["terminal::SendText", "\\u001b[13;2u"]
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
],
|
|
154
|
+
null,
|
|
155
|
+
2
|
|
156
|
+
);
|
|
157
|
+
case "terminal_app":
|
|
158
|
+
return "macOS Terminal.app cannot send distinct Shift+Enter sequences.\n\nAlternatives:\n \u2022 Use Option+Enter (\u2325+Enter) to insert newlines\n \u2022 Type \\ then Enter to insert newlines\n \u2022 Switch to iTerm2, WezTerm, or Ghostty for native Shift+Enter support";
|
|
159
|
+
case "warp":
|
|
160
|
+
return "Warp terminal has limited keybinding customization.\n\nAlternatives:\n \u2022 Use Option+Enter (\u2325+Enter) to insert newlines\n \u2022 Type \\ then Enter to insert newlines";
|
|
161
|
+
default:
|
|
162
|
+
return "Your terminal needs to be configured to send a distinct escape sequence for Shift+Enter.\nConfigure Shift+Enter to send: \\x1b[13;2u (Kitty keyboard protocol)\n\nAlternatives that work in all terminals:\n \u2022 Option/Alt+Enter to insert newlines\n \u2022 Type \\ then Enter to insert newlines";
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
async function runTerminalSetup() {
|
|
166
|
+
const terminal = detectTerminal();
|
|
167
|
+
console.log(`
|
|
168
|
+
Detected terminal: ${terminal.name}
|
|
169
|
+
`);
|
|
170
|
+
switch (terminal.status) {
|
|
171
|
+
case "native":
|
|
172
|
+
console.log(`\u2705 ${terminal.name} natively supports Shift+Enter for newlines.
|
|
173
|
+
No configuration needed!
|
|
174
|
+
`);
|
|
175
|
+
break;
|
|
176
|
+
case "configurable": {
|
|
177
|
+
console.log(`Configuring ${terminal.name} for Shift+Enter support...
|
|
178
|
+
`);
|
|
179
|
+
let result;
|
|
180
|
+
switch (terminal.id) {
|
|
181
|
+
case "vscode":
|
|
182
|
+
result = await setupVSCode();
|
|
183
|
+
break;
|
|
184
|
+
case "alacritty":
|
|
185
|
+
result = await setupAlacritty();
|
|
186
|
+
break;
|
|
187
|
+
default:
|
|
188
|
+
result = { success: false, message: "No auto-configuration available." };
|
|
189
|
+
}
|
|
190
|
+
console.log(result.success ? `\u2705 ${result.message}` : `\u26A0\uFE0F ${result.message}`);
|
|
191
|
+
console.log();
|
|
192
|
+
break;
|
|
193
|
+
}
|
|
194
|
+
case "manual":
|
|
195
|
+
console.log(`\u26A0\uFE0F ${terminal.name} requires manual configuration.
|
|
196
|
+
`);
|
|
197
|
+
console.log(getManualInstructions(terminal));
|
|
198
|
+
console.log();
|
|
199
|
+
break;
|
|
200
|
+
case "unknown":
|
|
201
|
+
console.log(getManualInstructions(terminal));
|
|
202
|
+
console.log();
|
|
203
|
+
break;
|
|
204
|
+
}
|
|
205
|
+
console.log("Universal newline methods (work in all terminals):");
|
|
206
|
+
console.log(" \u2022 Option/Alt + Enter \u2014 insert newline");
|
|
207
|
+
console.log(" \u2022 \\ + Enter \u2014 insert newline (backslash-escape)");
|
|
208
|
+
console.log(" \u2022 Shift + Enter \u2014 insert newline (if terminal supports Kitty protocol)");
|
|
209
|
+
console.log();
|
|
210
|
+
}
|
|
211
|
+
export {
|
|
212
|
+
detectTerminal,
|
|
213
|
+
runTerminalSetup
|
|
214
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bike4mind/cli",
|
|
3
|
-
"version": "0.2.49-feat-
|
|
3
|
+
"version": "0.2.49-feat-cli-multiline-input.21032+23042ba16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Interactive CLI tool for Bike4Mind with ReAct agents",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -115,10 +115,10 @@
|
|
|
115
115
|
},
|
|
116
116
|
"devDependencies": {
|
|
117
117
|
"@bike4mind/agents": "0.1.0",
|
|
118
|
-
"@bike4mind/common": "2.67.1-feat-
|
|
119
|
-
"@bike4mind/mcp": "1.33.11-feat-
|
|
120
|
-
"@bike4mind/services": "2.63.1-feat-
|
|
121
|
-
"@bike4mind/utils": "2.15.4-feat-
|
|
118
|
+
"@bike4mind/common": "2.67.1-feat-cli-multiline-input.21032+23042ba16",
|
|
119
|
+
"@bike4mind/mcp": "1.33.11-feat-cli-multiline-input.21032+23042ba16",
|
|
120
|
+
"@bike4mind/services": "2.63.1-feat-cli-multiline-input.21032+23042ba16",
|
|
121
|
+
"@bike4mind/utils": "2.15.4-feat-cli-multiline-input.21032+23042ba16",
|
|
122
122
|
"@types/better-sqlite3": "^7.6.13",
|
|
123
123
|
"@types/diff": "^5.0.9",
|
|
124
124
|
"@types/jsonwebtoken": "^9.0.4",
|
|
@@ -137,5 +137,5 @@
|
|
|
137
137
|
"optionalDependencies": {
|
|
138
138
|
"@vscode/ripgrep": "^1.17.0"
|
|
139
139
|
},
|
|
140
|
-
"gitHead": "
|
|
140
|
+
"gitHead": "23042ba16b9f76d05f18dcdc3d5ccfd4df93dfc3"
|
|
141
141
|
}
|