@proxysoul/soulforge 1.5.1 → 1.5.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/dist/bin.sh CHANGED
@@ -8,13 +8,11 @@ if ! command -v bun >/dev/null 2>&1; then
8
8
  echo "Then run: soulforge" >&2
9
9
  exit 1
10
10
  fi
11
- # Resolve symlinks (bun/pnpm global installs symlink into ~/.bun/bin/)
11
+ # Resolve symlinks — follow chain (pnpm/bun can nest multiple levels)
12
12
  SELF="$0"
13
- if [ -L "$SELF" ]; then
14
- TARGET="$(readlink "$SELF")"
15
- case "$TARGET" in
16
- /*) SELF="$TARGET" ;;
17
- *) SELF="$(dirname "$SELF")/$TARGET" ;;
18
- esac
19
- fi
13
+ while [ -L "$SELF" ]; do
14
+ DIR="$(cd "$(dirname "$SELF")" && pwd)"
15
+ SELF="$(readlink "$SELF")"
16
+ case "$SELF" in /*) ;; *) SELF="$DIR/$SELF" ;; esac
17
+ done
20
18
  exec bun "$(cd "$(dirname "$SELF")" && pwd)/index.js" "$@"
package/dist/index.js CHANGED
@@ -57814,7 +57814,7 @@ var package_default;
57814
57814
  var init_package = __esm(() => {
57815
57815
  package_default = {
57816
57816
  name: "@proxysoul/soulforge",
57817
- version: "1.5.1",
57817
+ version: "1.5.2",
57818
57818
  description: "Graph-powered code intelligence \u2014 multi-agent coding with codebase-aware AI",
57819
57819
  repository: {
57820
57820
  type: "git",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proxysoul/soulforge",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Graph-powered code intelligence — multi-agent coding with codebase-aware AI",
5
5
  "repository": {
6
6
  "type": "git",