release-skill 0.6.0 → 0.6.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.
Files changed (36) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/.claude-plugin/plugin.json +1 -1
  3. package/.codebuddy-plugin/plugin.json +1 -1
  4. package/.codex-plugin/plugin.json +2 -2
  5. package/.kimi-plugin/plugin.json +1 -1
  6. package/CHANGELOG.md +14 -0
  7. package/INSTALL.md +2 -2
  8. package/INSTALL.zh-CN.md +2 -2
  9. package/README.md +9 -8
  10. package/README.zh-CN.md +9 -8
  11. package/adapters/claude/.claude-plugin/marketplace.json +1 -1
  12. package/adapters/claude/.claude-plugin/plugin.json +1 -1
  13. package/adapters/claude/bin/release-skill.bundle.mjs +705 -356
  14. package/adapters/claude/schemas/release-project.schema.json +8 -0
  15. package/adapters/codex/.codex-plugin/plugin.json +2 -2
  16. package/adapters/codex/bin/release-skill.bundle.mjs +705 -356
  17. package/adapters/codex/schemas/release-project.schema.json +8 -0
  18. package/adapters/kimi/.kimi-plugin/plugin.json +1 -1
  19. package/adapters/kimi/bin/release-skill.bundle.mjs +705 -356
  20. package/adapters/kimi/schemas/release-project.schema.json +8 -0
  21. package/adapters/workbuddy/.codebuddy-plugin/plugin.json +1 -1
  22. package/adapters/workbuddy/bin/release-skill.bundle.mjs +705 -356
  23. package/adapters/workbuddy/schemas/release-project.schema.json +8 -0
  24. package/bin/release-skill-cli.mjs +11 -0
  25. package/bin/release-skill.bundle.mjs +705 -356
  26. package/package.json +1 -1
  27. package/references/05-evidence-and-errors.md +1 -0
  28. package/schemas/release-project.schema.json +8 -0
  29. package/scripts/build-bundle.mjs +11 -2
  30. package/scripts/sync-public-files.mjs +4 -0
  31. package/src/commands/prepare.mjs +214 -8
  32. package/src/commands/verify.mjs +22 -0
  33. package/src/core/bundle-freshness.mjs +236 -0
  34. package/src/core/errors.mjs +2 -0
  35. package/src/core/frozen-marker.mjs +97 -0
  36. package/src/core/hooks.mjs +12 -1
@@ -873,6 +873,14 @@
873
873
  },
874
874
  "uniqueItems": true,
875
875
  "description": "Root-relative globs declaring the hook's full input set (source, scripts, config, lockfiles). The cache key fingerprints the content of every matched file; a glob that matches nothing fails closed. Must cover ALL inputs or the cache can return a false hit."
876
+ },
877
+ "testSelection": {
878
+ "type": "string",
879
+ "enum": [
880
+ "full",
881
+ "incremental"
882
+ ],
883
+ "description": "Only meaningful for the test hook: which test selection the hook command runs. Absence or 'full' means the hook runs the full suite, which prepare's built-in full-test freeze gate requires before the plan digest is computed. 'incremental' is reserved for a future preflight mode and is rejected at freeze time ('incremental selection is not allowed at freeze time'). Built-in gate; cannot be disabled by project overlays."
876
884
  }
877
885
  }
878
886
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-skill",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Safe preparation and frozen GitHub/npm production publishing with full happy end verification",
5
5
  "author": {
6
6
  "name": "广州市风荷科技有限公司"