-
Notifications
You must be signed in to change notification settings - Fork 5
feat: add loki-skills pre-install to all packs #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -290,5 +290,11 @@ cat << NOTICE | |
| NOTICE | ||
|
|
||
| # ── Done ────────────────────────────────────────────────────────────────────── | ||
|
|
||
| # ── Install loki-skills library ─────────────────────────────────────────────── | ||
| # Best-effort: pre-install skills (shared or pack-specific). | ||
| PACK_SKILLS_DIR="${HOME}/.local/share/lowkey/skills" | ||
| ensure_skills_clone "${PACK_SKILLS_DIR}" || true | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The new skills bootstrap path is currently a no-op because Useful? React with 👍 / 👎. |
||
| log "Skills installed to ${PACK_SKILLS_DIR}" | ||
| write_done_marker "codex-cli" | ||
| printf "\n[PACK:codex-cli] INSTALLED — codex CLI ready (model: %s)\n" "${MODEL}" | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This commit adds
ensure_skills_clonecalls in six pack installers, but there is noensure_skills_clonefunction or executable anywhere in the repo (includingpacks/common.sh, which these scripts source). At runtime this line emitscommand not found; because it is wrapped in|| true, the install appears to continue while silently skipping the intended skills bootstrap, so the new feature does not work in any of the touched packs.Useful? React with 👍 / 👎.