Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,13 @@ fi
mkdir -p "$TARGET_DIR/.agents"
ln -sfn ../.hex/skills "$TARGET_DIR/.agents/skills"

# Symlink system/ → .hex/ so the hex Rust binary (v0.16+) resolves its hardcoded
# "system/skills/...", "system/scripts/..." paths against the install layout.
# Without this, `hex memory index/search`, `hex doctor`, and `hex integration`
# all fail with "No such file or directory" because the binary's path resolver
# was built against the foundation source-tree layout, not the install layout.
ln -sfn .hex "$TARGET_DIR/system"

# Seed optional configs doctor expects. Defaults are safe and overridable later.
echo '{}' > "$TARGET_DIR/.hex/settings.json"

Expand Down
File renamed without changes.