@bike4mind/cli 0.2.49-feat-cli-multiline-input.21031 → 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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// package.json
|
|
4
4
|
var package_default = {
|
|
5
5
|
name: "@bike4mind/cli",
|
|
6
|
-
version: "0.2.49-feat-cli-multiline-input.
|
|
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-cli-multiline-input.
|
|
122
|
-
"@bike4mind/mcp": "1.33.11-feat-cli-multiline-input.
|
|
123
|
-
"@bike4mind/services": "2.63.1-feat-cli-multiline-input.
|
|
124
|
-
"@bike4mind/utils": "2.15.4-feat-cli-multiline-input.
|
|
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
|
@@ -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
|
|
@@ -847,7 +847,10 @@ function InputPrompt({
|
|
|
847
847
|
const handlePaste = (content) => {
|
|
848
848
|
const truncated = content.length > MAX_PASTE_SIZE ? content.slice(0, MAX_PASTE_SIZE) : content;
|
|
849
849
|
const lineCount = truncated.split("\n").length;
|
|
850
|
-
|
|
850
|
+
const prefix = value.trim();
|
|
851
|
+
const combined = prefix ? `${prefix}
|
|
852
|
+
${truncated}` : truncated;
|
|
853
|
+
setPastedContent(combined, lineCount);
|
|
851
854
|
};
|
|
852
855
|
const handleChange = async (newValue) => {
|
|
853
856
|
if (pastedContent) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bike4mind/cli",
|
|
3
|
-
"version": "0.2.49-feat-cli-multiline-input.
|
|
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-cli-multiline-input.
|
|
119
|
-
"@bike4mind/mcp": "1.33.11-feat-cli-multiline-input.
|
|
120
|
-
"@bike4mind/services": "2.63.1-feat-cli-multiline-input.
|
|
121
|
-
"@bike4mind/utils": "2.15.4-feat-cli-multiline-input.
|
|
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
|
}
|