@lousy-agents/cli 5.17.10 → 5.17.11

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.3",
21
- "@lousy-agents/mcp": "5.17.9",
21
+ "@lousy-agents/mcp": "5.17.10",
22
22
  "@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
23
23
  "@testcontainers/postgresql": "12.0.4",
24
24
  "@types/node": "24.13.3",
@@ -972,9 +972,9 @@
972
972
  }
973
973
  },
974
974
  "node_modules/@lousy-agents/mcp": {
975
- "version": "5.17.9",
976
- "resolved": "https://registry.npmjs.org/@lousy-agents/mcp/-/mcp-5.17.9.tgz",
977
- "integrity": "sha512-nhR+W9TcfMThEaF9rGOxh7jvgeZnvB6r5xFwgvc7Fwdi4GWqOb2/44E++lkGrp+cJ//vbH9yabJVo1xPHpB6RQ==",
975
+ "version": "5.17.10",
976
+ "resolved": "https://registry.npmjs.org/@lousy-agents/mcp/-/mcp-5.17.10.tgz",
977
+ "integrity": "sha512-kyuOOgHi46onNnI510/L5y8REr+7Rnk4ane5z/ehtTM+7KnfHSqzWfbgxAbiOagx1tmIlISqFsZgwyFQ/g+EOQ==",
978
978
  "dev": true,
979
979
  "license": "BSD-2-Clause-Patent",
980
980
  "dependencies": {
@@ -29,7 +29,7 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "@biomejs/biome": "2.5.3",
32
- "@lousy-agents/mcp": "5.17.9",
32
+ "@lousy-agents/mcp": "5.17.10",
33
33
  "@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
34
34
  "@testcontainers/postgresql": "12.0.4",
35
35
  "@types/node": "24.13.3",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "@biomejs/biome": "2.5.3",
23
- "@lousy-agents/mcp": "5.17.9",
23
+ "@lousy-agents/mcp": "5.17.10",
24
24
  "@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
25
25
  "@types/node": "24.13.3",
26
26
  "@upstash/context7-mcp": "3.2.4",
package/dist/index.js CHANGED
@@ -6029,7 +6029,15 @@ function isWindowsNetworkPath(filePath, platform = process.platform) {
6029
6029
  return false;
6030
6030
  }
6031
6031
  const normalized = filePath.replace(/\//g, "\\");
6032
- return normalized.startsWith("\\\\?\\UNC\\") || normalized.startsWith("\\\\");
6032
+ const extendedDrive = normalized.length >= 7 &&
6033
+ normalized.startsWith("\\\\?\\") &&
6034
+ /^[a-z]$/i.test(normalized[4] ?? "") &&
6035
+ normalized[5] === ":" &&
6036
+ normalized[6] === "\\";
6037
+ if (extendedDrive) {
6038
+ return false;
6039
+ }
6040
+ return normalized.startsWith("\\\\");
6033
6041
  }
6034
6042
  function isWindowsDriveLetterPath(filePath, platform = process.platform) {
6035
6043
  return platform === "win32" && /^[A-Za-z]:[\\/]/.test(filePath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lousy-agents/cli",
3
- "version": "5.17.10",
3
+ "version": "5.17.11",
4
4
  "description": "CLI scaffolding tool that sets up projects with structure, instructions, and feedback loops for AI coding assistants",
5
5
  "type": "module",
6
6
  "repository": {
@@ -23,7 +23,7 @@
23
23
  "devDependencies": {
24
24
  "@biomejs/biome": "2.5.3",
25
25
  "@eslint/eslintrc": "3.3.6",
26
- "@lousy-agents/mcp": "5.17.9",
26
+ "@lousy-agents/mcp": "5.17.10",
27
27
  "@modelcontextprotocol/server-sequential-thinking": "2026.7.4",
28
28
  "@testing-library/jest-dom": "7.0.0",
29
29
  "@testing-library/react": "16.3.2",