Skip to content
Open
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
2 changes: 1 addition & 1 deletion tools/skills_hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -3450,7 +3450,7 @@ def install_from_quarantine(
trust_level=bundle.trust_level,
scan_verdict=scan_result.verdict,
skill_hash=content_hash(install_dir),
install_path=str(install_dir.relative_to(SKILLS_DIR)),
install_path=str(install_dir.resolve().relative_to(SKILLS_DIR.resolve())),

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This addresses lock recording, but current main also computes an unresolved relative path in the successful CLI display at hermes_cli/skills_hub.py:731. Please fix that sibling site and cover both paths with one symlink-root regression.

files=list(bundle.files.keys()),
metadata=bundle.metadata,
)
Expand Down