@skilly-hand/skilly-hand 0.25.1 → 0.25.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 +15 -0
- package/catalog/templates/AGENTS.template.md +20 -0
- package/package.json +1 -1
- package/packages/catalog/package.json +1 -1
- package/packages/catalog/src/index.js +10 -1
- package/packages/cli/package.json +1 -1
- package/packages/core/package.json +1 -1
- package/packages/detectors/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,21 @@ All notable changes to this project are documented in this file.
|
|
|
16
16
|
### Removed
|
|
17
17
|
- _None._
|
|
18
18
|
|
|
19
|
+
## [0.25.2] - 2026-04-29
|
|
20
|
+
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.25.2)
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- _None._
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- Added mandatory optimizer and planning challenge gates to generated convention files so `token-optimizer`, `output-optimizer`, and `roaster` are consistently enforced across agent instruction targets.
|
|
27
|
+
|
|
28
|
+
### Fixed
|
|
29
|
+
- _None._
|
|
30
|
+
|
|
31
|
+
### Removed
|
|
32
|
+
- _None._
|
|
33
|
+
|
|
19
34
|
## [0.25.1] - 2026-04-27
|
|
20
35
|
[View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.25.1)
|
|
21
36
|
|
|
@@ -16,6 +16,26 @@ This file is generated by `skilly-hand`.
|
|
|
16
16
|
| ----- | ------- | ---- |
|
|
17
17
|
{{skillsTable}}
|
|
18
18
|
|
|
19
|
+
### Mandatory Skill Gate (Must Use / Must Read)
|
|
20
|
+
|
|
21
|
+
This gate has global precedence and applies to every user interaction across all supported agent conventions/files.
|
|
22
|
+
|
|
23
|
+
1. Always run `token-optimizer` first to classify complexity and set the minimum viable reasoning depth.
|
|
24
|
+
2. Always run `output-optimizer` immediately after `token-optimizer` for response-shape control.
|
|
25
|
+
3. `output-optimizer` mode policy:
|
|
26
|
+
- Default: use `step-brief` when there is no explicit mode or strong phrasing signal.
|
|
27
|
+
- Override: if user explicitly requests a mode (for example `mode: step-brief`), that explicit mode wins.
|
|
28
|
+
- Persistence: keep the explicitly requested mode active until the user asks for a different mode.
|
|
29
|
+
|
|
30
|
+
### Mandatory Planning Challenge Gate (Must Use / Must Read)
|
|
31
|
+
|
|
32
|
+
This gate is mandatory whenever the user proposes, requests, or evaluates a plan of any kind.
|
|
33
|
+
|
|
34
|
+
1. Always run `roaster` before agreeing with or executing a plan.
|
|
35
|
+
2. Use `roaster` to critique assumptions, scope, sequencing, risks, and verification.
|
|
36
|
+
3. Keep the critique constructive and actionable; target the plan, not the person.
|
|
37
|
+
4. Skip only for emergencies, trivial one-step tasks, or sensitive contexts where roast tone would be inappropriate.
|
|
38
|
+
|
|
19
39
|
## When
|
|
20
40
|
|
|
21
41
|
### Auto-invoke Triggers
|
package/package.json
CHANGED
|
@@ -543,9 +543,18 @@ export function renderAgentsMarkdown({ skills, detections, generatedAt, projectN
|
|
|
543
543
|
" - Override: if user explicitly requests a mode (for example `mode: step-brief`), that explicit mode wins.",
|
|
544
544
|
" - Persistence: keep the explicitly requested mode active until the user asks for a different mode.",
|
|
545
545
|
"",
|
|
546
|
+
"### Mandatory Planning Challenge Gate (Must Use / Must Read)",
|
|
547
|
+
"",
|
|
548
|
+
"This gate is mandatory whenever the user proposes, requests, or evaluates a plan of any kind.",
|
|
549
|
+
"",
|
|
550
|
+
"1. Always run `roaster` before agreeing with or executing a plan.",
|
|
551
|
+
"2. Use `roaster` to critique assumptions, scope, sequencing, risks, and verification.",
|
|
552
|
+
"3. Keep the critique constructive and actionable; target the plan, not the person.",
|
|
553
|
+
"4. Skip only for emergencies, trivial one-step tasks, or sensitive contexts where roast tone would be inappropriate.",
|
|
554
|
+
"",
|
|
546
555
|
"### Task Routing",
|
|
547
556
|
"",
|
|
548
|
-
"**Mandatory-gate precedence:** apply the mandatory optimizer gate
|
|
557
|
+
"**Mandatory-gate precedence:** apply the mandatory optimizer gate first, then apply the mandatory planning challenge gate when the task includes planning.",
|
|
549
558
|
"",
|
|
550
559
|
"**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.",
|
|
551
560
|
"",
|