@proxysoul/soulforge 2.14.1 → 2.14.2

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/README.md CHANGED
@@ -168,6 +168,8 @@ brew tap proxysoul/tap && brew install soulforge
168
168
 
169
169
  macOS and Linux. Neovim and a Nerd Font auto-install on first launch.
170
170
 
171
+ > **Windows:** not natively supported. Use [WSL](https://learn.microsoft.com/en-us/windows/wsl/install) for now. Tracked in [#57](https://github.com/proxysoul/soulforge/issues/57).
172
+
171
173
  <details>
172
174
  <summary><strong>Other install methods</strong></summary>
173
175
  <br/>
package/dist/index.js CHANGED
@@ -39317,7 +39317,9 @@ function buildHearthCallbacks(ctx) {
39317
39317
 
39318
39318
  // src/core/agents/agent-bus.ts
39319
39319
  function normalizePath(p) {
39320
- let n = p;
39320
+ if (typeof p !== "string" || p.length === 0)
39321
+ return "";
39322
+ let n = p.replace(/\\/g, "/");
39321
39323
  while (n.startsWith("./"))
39322
39324
  n = n.slice(2);
39323
39325
  return n.replace(/\/+/g, "/");
@@ -57906,7 +57908,7 @@ var package_default;
57906
57908
  var init_package = __esm(() => {
57907
57909
  package_default = {
57908
57910
  name: "@proxysoul/soulforge",
57909
- version: "2.14.1",
57911
+ version: "2.14.2",
57910
57912
  description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
57911
57913
  repository: {
57912
57914
  type: "git",
@@ -49520,7 +49520,7 @@ var package_default;
49520
49520
  var init_package = __esm(() => {
49521
49521
  package_default = {
49522
49522
  name: "@proxysoul/soulforge",
49523
- version: "2.14.1",
49523
+ version: "2.14.2",
49524
49524
  description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
49525
49525
  repository: {
49526
49526
  type: "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxysoul/soulforge",
3
- "version": "2.14.1",
3
+ "version": "2.14.2",
4
4
  "description": "Graph-powered code intelligence — multi-agent coding with codebase-aware AI",
5
5
  "repository": {
6
6
  "type": "git",