happyskills 0.35.3 → 0.35.4
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/CHANGELOG.md +5 -0
- package/package.json +1 -1
- package/src/commands/refresh.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.35.4] - 2026-04-11
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fix `refresh` symlink repair skipping dependency-installed skills — only directly-installed skills had their symlinks validated; transitive dependencies with stale symlinks were left untouched
|
|
14
|
+
|
|
10
15
|
## [0.35.3] - 2026-04-11
|
|
11
16
|
|
|
12
17
|
### Fixed
|
package/package.json
CHANGED
package/src/commands/refresh.js
CHANGED
|
@@ -123,7 +123,7 @@ const run = (args) => catch_errors('Refresh failed', async () => {
|
|
|
123
123
|
let symlink_repairs = []
|
|
124
124
|
if (detected_agents.length > 0) {
|
|
125
125
|
const skills_to_check = []
|
|
126
|
-
for (const [name] of
|
|
126
|
+
for (const [name] of entries) {
|
|
127
127
|
const short_name = name.split('/')[1] || name
|
|
128
128
|
const source_dir = skill_install_dir(base_dir, short_name)
|
|
129
129
|
const [, enabled] = await is_skill_enabled(short_name, detected_agents, is_global, project_root)
|