happyskills 0.7.1 → 0.7.2

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.7.2] - 2026-03-06
11
+
12
+ ### Fixed
13
+ - Fix `setup` command pointing to the old `happyskillsai/happyskills-cli` skill name; it now installs `happyskillsai/happyskills`
14
+
10
15
  ## [0.7.1] - 2026-03-06
11
16
 
12
17
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happyskills",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
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)",
@@ -5,13 +5,13 @@ const { print_success, print_info, print_help, print_hint, print_json, code } =
5
5
  const { exit_with_error } = require('../utils/errors')
6
6
  const { EXIT_CODES } = require('../constants')
7
7
 
8
- const SKILL_NAME = 'happyskillsai/happyskills-cli'
8
+ const SKILL_NAME = 'happyskillsai/happyskills'
9
9
 
10
10
  const HELP_TEXT = `Usage: happyskills setup [options]
11
11
 
12
12
  Install (or update) the official HappySkills CLI skill.
13
13
 
14
- Installs happyskillsai/happyskills-cli into .claude/skills/ so AI agents
14
+ Installs happyskillsai/happyskills into .claude/skills/ so AI agents
15
15
  (Claude Code, etc.) can interact with HappySkills using natural language.
16
16
 
17
17
  Options:
@@ -418,7 +418,7 @@ describe('CLI — setup command', () => {
418
418
  it('setup --help exits 0 and describes the command', () => {
419
419
  const { stdout, code } = run(['setup', '--help'])
420
420
  assert.strictEqual(code, 0)
421
- assert.match(stdout, /happyskillsai\/happyskills-cli/)
421
+ assert.match(stdout, /happyskillsai\/happyskills/)
422
422
  assert.match(stdout, /Options:/)
423
423
  assert.match(stdout, /Examples:/)
424
424
  })