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 +5 -0
- package/package.json +1 -1
- package/src/commands/setup.js +2 -2
- package/src/integration/cli.test.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.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
package/src/commands/setup.js
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
421
|
+
assert.match(stdout, /happyskillsai\/happyskills/)
|
|
422
422
|
assert.match(stdout, /Options:/)
|
|
423
423
|
assert.match(stdout, /Examples:/)
|
|
424
424
|
})
|