@skilly-hand/skilly-hand 0.15.1 → 0.16.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
@@ -16,11 +16,43 @@ All notable changes to this project are documented in this file.
16
16
  ### Removed
17
17
  - _None._
18
18
 
19
+ ## [0.16.1] - 2026-04-08
20
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.16.1)
21
+
22
+ ### Added
23
+ - Added a Mandatory Skill Gate section to generated agent instruction files to enforce optimizer sequencing across interactions.
24
+
25
+ ### Changed
26
+ - Updated routing guidance to apply mandatory-gate precedence before task-specific skill chains.
27
+ - Synced catalog markdown rendering so generated AGENTS output includes the Mandatory Skill Gate and precedence guidance.
28
+
29
+ ### Fixed
30
+ - Updated install and self-sync test coverage to assert Mandatory Skill Gate propagation across managed instruction targets.
31
+
32
+ ### Removed
33
+ - _None._
34
+
35
+ ## [0.16.0] - 2026-04-07
36
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.16.0)
37
+
38
+ ### Added
39
+ - _None._
40
+
41
+ ### Changed
42
+ - _None._
43
+
44
+ ### Fixed
45
+ - Added missing `output-optimizer` and `project-security` to the README catalog list.
46
+
47
+ ### Removed
48
+ - _None._
49
+
19
50
  ## [0.15.1] - 2026-04-07
20
51
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.15.1)
21
52
 
22
53
  ### Added
23
- - _None._
54
+ - Added portable skill `output-optimizer` for compact interpreter modes that minimize response verbosity while preserving clarity and correctness.
55
+ - Added portable skill `project-security` for scanning and enforcing security gates on commit, push, and publish workflows across GitHub, GitLab, npm, pnpm, yarn, and generic CI.
24
56
 
25
57
  ### Changed
26
58
  - _None._
@@ -56,7 +88,7 @@ All notable changes to this project are documented in this file.
56
88
 
57
89
  - Removed "Clarification-First Planning Workflow" from `AGENTS.md` (superseded by refined workflows)
58
90
 
59
- ## [0.14.0] - 2026-04-06
91
+ ## [0.14.0] - 2026-04-05
60
92
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.14.0)
61
93
 
62
94
  ### Added
@@ -88,6 +120,8 @@ All notable changes to this project are documented in this file.
88
120
 
89
121
  ### Removed
90
122
  - _None._
123
+
124
+ ## [0.12.0] - 2026-04-05
91
125
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.12.0)
92
126
 
93
127
  ### Added
package/README.md CHANGED
@@ -73,9 +73,11 @@ The catalog currently includes:
73
73
  - `angular-guidelines`
74
74
  - `figma-mcp-0to1`
75
75
  - `frontend-design`
76
+ - `output-optimizer`
77
+ - `project-security`
76
78
  - `project-teacher`
77
- - `review-rangers`
78
79
  - `react-guidelines`
80
+ - `review-rangers`
79
81
  - `skill-creator`
80
82
  - `spec-driven-development`
81
83
  - `test-driven-development`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/skilly-hand",
3
- "version": "0.15.1",
3
+ "version": "0.16.1",
4
4
  "license": "CC-BY-NC-4.0",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/catalog",
3
- "version": "0.15.1",
3
+ "version": "0.16.1",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -118,9 +118,22 @@ export function renderAgentsMarkdown({ skills, detections, generatedAt, projectN
118
118
  }
119
119
 
120
120
  lines.push(
121
+ "",
122
+ "### Mandatory Skill Gate (Must Use / Must Read)",
123
+ "",
124
+ "This gate has global precedence and applies to every user interaction across all supported agent conventions/files.",
125
+ "",
126
+ "1. Always run `token-optimizer` first to classify complexity and set the minimum viable reasoning depth.",
127
+ "2. Always run `output-optimizer` immediately after `token-optimizer` for response-shape control.",
128
+ "3. `output-optimizer` mode policy:",
129
+ " - Default: select a random canonical mode for each new interaction.",
130
+ " - Override: if user explicitly requests a mode (for example `mode: step-brief`), that explicit mode wins.",
131
+ " - Persistence: keep the explicitly requested mode active until the user asks for a different mode.",
121
132
  "",
122
133
  "### Task Routing",
123
134
  "",
135
+ "**Mandatory-gate precedence:** apply the mandatory optimizer gate before task-routing chains below.",
136
+ "",
124
137
  "**SDD-first policy:** for feature delivery, bug fixes, or any multi-step implementation, start with `spec-driven-development` unless the task is clearly trivial and one-step.",
125
138
  "",
126
139
  "| Task Type | Recommended Skill Chain |",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/cli",
3
- "version": "0.15.1",
3
+ "version": "0.16.1",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/core",
3
- "version": "0.15.1",
3
+ "version": "0.16.1",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/detectors",
3
- "version": "0.15.1",
3
+ "version": "0.16.1",
4
4
  "private": true,
5
5
  "type": "module"
6
6
  }