happyskills 0.43.0 → 0.43.1

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 CHANGED
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.43.1] - 2026-05-11
11
+
12
+ ### Fixed
13
+ - Fix `status` (no skill argument) filtering out transitive dependencies. The command's help text describes it as "Show divergence status for installed skills," but the previous behavior filtered `data?.requested_by?.includes('__root__')` — so only direct installs appeared, hiding diverged or outdated transitive deps from the result set. The empty-state message ("No root-level skills found") leaked the filter as a user-facing concept. Now returns all entries in `skills-lock.json` (matching the help text and `list`'s behavior), and the empty-state message reads "No installed skills found." Targeted status (`happyskills status owner/name`) is unaffected — that path never went through the filter.
14
+
10
15
  ## [0.43.0] - 2026-05-07
11
16
 
12
17
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happyskills",
3
- "version": "0.43.0",
3
+ "version": "0.43.1",
4
4
  "description": "Package manager for AI agent skills",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Nicolas Dao <nic@cloudlesslabs.com> (https://cloudlesslabs.com)",
@@ -56,14 +56,14 @@ const run = (args) => catch_errors('Status failed', async () => {
56
56
  const all_skills = get_all_locked_skills(lock_data)
57
57
  const entries = target_skill
58
58
  ? [[target_skill, all_skills[target_skill]]]
59
- : Object.entries(all_skills).filter(([, data]) => data?.requested_by?.includes('__root__'))
59
+ : Object.entries(all_skills).filter(([, data]) => data !== null)
60
60
 
61
61
  if (entries.length === 0) {
62
62
  if (args.flags.json) {
63
63
  print_json({ data: { results: [] } })
64
64
  return
65
65
  }
66
- print_info('No root-level skills found.')
66
+ print_info('No installed skills found.')
67
67
  return
68
68
  }
69
69