happyskills 1.20.0 → 1.20.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,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.20.1] - 2026-07-09
11
+
12
+ ### Changed
13
+
14
+ - Raise the publish bundle cap `MAX_TOTAL_SIZE` from 1 MB to 2 MB (`cli/src/config/limits.js`, mirroring `api/app/config/limits.js`; per-file `MAX_FILE_SIZE` unchanged at 1 MB). Affects the `validate`/`publish` pre-flight (`max_total_size` rule) and the streaming archive-install extraction cap. Guarded by the new root contract test `test/limits-mirror.test.js`. **Release after (or with) the API bump of the same constant so production never sees a CLI cap higher than the API's** (docs/architecture.md § 9).
15
+
10
16
  ## [1.20.0] - 2026-07-06
11
17
 
12
18
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "happyskills",
3
- "version": "1.20.0",
3
+ "version": "1.20.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)",
@@ -3,7 +3,7 @@
3
3
  // validation will be rejected by the API.
4
4
 
5
5
  const MAX_FILE_SIZE = 1 * 1024 * 1024 // 1 MB per file
6
- const MAX_TOTAL_SIZE = 1 * 1024 * 1024 // 1 MB per skill bundle (also the decompressed-archive cap — SUP-04)
6
+ const MAX_TOTAL_SIZE = 2 * 1024 * 1024 // 2 MB per skill bundle (also the decompressed-archive cap — SUP-04)
7
7
  const MAX_FILE_COUNT = 1000 // max entries per archive (zip-bomb / DoS guard; real skills have <100 files) — SUP-04
8
8
 
9
9
  module.exports = {