@lousy-agents/cli 5.21.0 → 5.21.1
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.
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@biomejs/biome": "2.5.7",
|
|
21
|
-
"@lousy-agents/mcp": "5.
|
|
21
|
+
"@lousy-agents/mcp": "5.21.0",
|
|
22
22
|
"@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
|
|
23
23
|
"@testcontainers/postgresql": "12.1.0",
|
|
24
24
|
"@types/node": "24.13.3",
|
|
@@ -955,9 +955,9 @@
|
|
|
955
955
|
}
|
|
956
956
|
},
|
|
957
957
|
"node_modules/@lousy-agents/mcp": {
|
|
958
|
-
"version": "5.
|
|
959
|
-
"resolved": "https://registry.npmjs.org/@lousy-agents/mcp/-/mcp-5.
|
|
960
|
-
"integrity": "sha512-
|
|
958
|
+
"version": "5.21.0",
|
|
959
|
+
"resolved": "https://registry.npmjs.org/@lousy-agents/mcp/-/mcp-5.21.0.tgz",
|
|
960
|
+
"integrity": "sha512-UgFLq8H6MbI965IFwSDgA6OcDSwdEseIhnzlBUb72/KcgN4DQqde4QDAm38Er+3U8fvg6eJMUXcA/rH/N9L54w==",
|
|
961
961
|
"dev": true,
|
|
962
962
|
"license": "BSD-2-Clause-Patent",
|
|
963
963
|
"dependencies": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@biomejs/biome": "2.5.7",
|
|
32
|
-
"@lousy-agents/mcp": "5.
|
|
32
|
+
"@lousy-agents/mcp": "5.21.0",
|
|
33
33
|
"@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
|
|
34
34
|
"@testcontainers/postgresql": "12.1.0",
|
|
35
35
|
"@types/node": "24.13.3",
|
package/dist/index.js
CHANGED
|
@@ -3032,7 +3032,7 @@ exports.basename = (path, { windows } = {}) => {
|
|
|
3032
3032
|
|
|
3033
3033
|
|
|
3034
3034
|
},
|
|
3035
|
-
|
|
3035
|
+
3808(__unused_rspack_module, __unused_rspack___webpack_exports__, __webpack_require__) {
|
|
3036
3036
|
// NAMESPACE OBJECT: ../../node_modules/micromark/lib/constructs.js
|
|
3037
3037
|
var constructs_namespaceObject = {};
|
|
3038
3038
|
__webpack_require__.r(constructs_namespaceObject);
|
|
@@ -6870,6 +6870,21 @@ async function read_opened_file_readOpenedFileSafely(params) {
|
|
|
6870
6870
|
};
|
|
6871
6871
|
}
|
|
6872
6872
|
|
|
6873
|
+
;// CONCATENATED MODULE: ../../node_modules/@openclaw/fs-safe/dist/read-open-flags.js
|
|
6874
|
+
|
|
6875
|
+
function resolveReadOpenFlags(options) {
|
|
6876
|
+
const constants = options?.constants ?? external_node_fs_.constants;
|
|
6877
|
+
const noFollow = process.platform !== "win32" &&
|
|
6878
|
+
options?.followSymlinks !== true &&
|
|
6879
|
+
typeof constants.O_NOFOLLOW === "number"
|
|
6880
|
+
? constants.O_NOFOLLOW
|
|
6881
|
+
: 0;
|
|
6882
|
+
const nonBlocking = process.platform !== "win32" && typeof constants.O_NONBLOCK === "number"
|
|
6883
|
+
? constants.O_NONBLOCK
|
|
6884
|
+
: 0;
|
|
6885
|
+
return constants.O_RDONLY | noFollow | nonBlocking;
|
|
6886
|
+
}
|
|
6887
|
+
|
|
6873
6888
|
;// CONCATENATED MODULE: ../../node_modules/@openclaw/fs-safe/dist/home-dir.js
|
|
6874
6889
|
|
|
6875
6890
|
|
|
@@ -7367,6 +7382,7 @@ async function serializePathWrite(key, run) {
|
|
|
7367
7382
|
|
|
7368
7383
|
|
|
7369
7384
|
|
|
7385
|
+
|
|
7370
7386
|
|
|
7371
7387
|
|
|
7372
7388
|
function logWarn(message) {
|
|
@@ -7375,11 +7391,8 @@ function logWarn(message) {
|
|
|
7375
7391
|
}
|
|
7376
7392
|
}
|
|
7377
7393
|
const SUPPORTS_NOFOLLOW = process.platform !== "win32" && "O_NOFOLLOW" in external_node_fs_.constants;
|
|
7378
|
-
const
|
|
7379
|
-
const
|
|
7380
|
-
(SUPPORTS_NOFOLLOW ? external_node_fs_.constants.O_NOFOLLOW : 0) |
|
|
7381
|
-
NONBLOCK_OPEN_FLAG;
|
|
7382
|
-
const OPEN_READ_FOLLOW_FLAGS = external_node_fs_.constants.O_RDONLY | NONBLOCK_OPEN_FLAG;
|
|
7394
|
+
const OPEN_READ_FLAGS = resolveReadOpenFlags();
|
|
7395
|
+
const OPEN_READ_FOLLOW_FLAGS = resolveReadOpenFlags({ followSymlinks: true });
|
|
7383
7396
|
const OPEN_WRITE_EXISTING_FLAGS = external_node_fs_.constants.O_WRONLY | (SUPPORTS_NOFOLLOW ? external_node_fs_.constants.O_NOFOLLOW : 0);
|
|
7384
7397
|
const OPEN_WRITE_CREATE_FLAGS = external_node_fs_.constants.O_WRONLY |
|
|
7385
7398
|
external_node_fs_.constants.O_CREAT |
|
|
@@ -64968,4 +64981,4 @@ if (installedChunkData !== 0) { // 0 means "already installed".'
|
|
|
64968
64981
|
// module factories are used so entry inlining is disabled
|
|
64969
64982
|
// startup
|
|
64970
64983
|
// Load entry module and return exports
|
|
64971
|
-
var __webpack_exports__ = __webpack_require__(
|
|
64984
|
+
var __webpack_exports__ = __webpack_require__(3808);
|
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@biomejs/biome": "2.5.7",
|
|
25
25
|
"@eslint/eslintrc": "3.3.6",
|
|
26
|
-
"@lousy-agents/mcp": "5.
|
|
26
|
+
"@lousy-agents/mcp": "5.21.0",
|
|
27
27
|
"@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
|
|
28
28
|
"@testing-library/jest-dom": "7.0.1",
|
|
29
29
|
"@testing-library/react": "16.3.2",
|