happyskills 0.45.0 → 0.45.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 +5 -0
- package/package.json +1 -1
- package/src/validation/skill_md_rules.js +3 -3
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.45.1] - 2026-05-14
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- `validate` soft-cap warning text now references the **Constellation Pattern** (formerly "Suite Pattern") and the **Constellation Decomposition Workflow** (formerly "Suite Decomposition Workflow"), and points at `happyskills-design references/constellation-pattern.md` (formerly `references/suite-pattern.md`). Terminology alignment with `happyskillsai/happyskills-design@0.8.0` — no behaviour change; the warning still fires at the same 250-char threshold and still recommends decomposition.
|
|
14
|
+
|
|
10
15
|
## [0.45.0] - 2026-05-13
|
|
11
16
|
|
|
12
17
|
### Fixed
|
package/package.json
CHANGED
|
@@ -95,12 +95,12 @@ const validate_description = (fm) => {
|
|
|
95
95
|
|
|
96
96
|
if (desc.length > DESC_SOFT_CAP) {
|
|
97
97
|
results.push({
|
|
98
|
-
...result('description', 'soft_cap', 'warning', `Description is ${desc.length} chars (target: ${DESC_TARGET_MIN}-${DESC_TARGET_MAX}, soft cap: ${DESC_SOFT_CAP}). Above ${DESC_SOFT_CAP} chars usually signals a mega-skill — apply the
|
|
98
|
+
...result('description', 'soft_cap', 'warning', `Description is ${desc.length} chars (target: ${DESC_TARGET_MIN}-${DESC_TARGET_MAX}, soft cap: ${DESC_SOFT_CAP}). Above ${DESC_SOFT_CAP} chars usually signals a mega-skill — apply the Constellation Pattern to decompose it into a core skill plus focused satellites. Run "npx happyskills audit <name>" or ask your agent "audit this skill" — happyskills-design will walk you through the Constellation Decomposition Workflow.`, desc),
|
|
99
99
|
recommendations: [
|
|
100
|
-
'CANONICAL — Apply the
|
|
100
|
+
'CANONICAL — Apply the Constellation Pattern: decompose the skill into a core entry-point skill plus satellite skills, each owning one orthogonal verb cluster, bundled via the core skill.json dependencies. This is the answer once a description crosses the soft cap. happyskills-design implements the Constellation Decomposition Workflow end-to-end — invoke it with "audit this skill" or "decompose this mega-skill".',
|
|
101
101
|
'Alternative — Compress the description first (AUDIT/LOSSLESS/LOSSY procedure in happyskills-design references/skill-authoring.md). Buys time, but compression alone will not keep up as the API surface grows.',
|
|
102
102
|
'Alternative — Hybrid umbrella+satellites: keep one main skill for high-frequency operations, extract specialized domains into satellites.',
|
|
103
|
-
'For the canonical
|
|
103
|
+
'For the canonical Constellation Pattern reference (orthogonal verb ownership, the five-slot description grammar, failure modes, orthogonality test): happyskills-design references/constellation-pattern.md, or docs/cli-skill.md in the HappySkills repo.'
|
|
104
104
|
]
|
|
105
105
|
})
|
|
106
106
|
} else {
|