@skilly-hand/skilly-hand 0.10.3 → 0.10.5

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,6 +16,37 @@ All notable changes to this project are documented in this file.
16
16
  ### Removed
17
17
  - _None._
18
18
 
19
+ ## [0.10.5] - 2026-04-04
20
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.10.5)
21
+
22
+ ### Added
23
+ - _None._
24
+
25
+ ### Changed
26
+ - Renamed portable skill `life-guard` to `review-rangers` across manifests, tests, docs, and AGENTS routing output.
27
+ - Standardized skill instruction structure so metadata is defined in `manifest.json` (removed YAML front matter from `SKILL.md` files and updated skill-creator guidance/templates).
28
+
29
+ ### Fixed
30
+ - _None._
31
+
32
+ ### Removed
33
+ - _None._
34
+
35
+ ## [0.10.4] - 2026-04-04
36
+ [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.10.4)
37
+
38
+ ### Added
39
+ - _None._
40
+
41
+ ### Changed
42
+ - _None._
43
+
44
+ ### Fixed
45
+ - _None._
46
+
47
+ ### Removed
48
+ - _None._
49
+
19
50
  ## [0.10.3] - 2026-04-04
20
51
  [View on npm](https://www.npmjs.com/package/@skilly-hand/skilly-hand/v/0.10.3)
21
52
 
@@ -117,7 +148,7 @@ All notable changes to this project are documented in this file.
117
148
 
118
149
  ### Added
119
150
  - Added portable skill `frontend-design` for project-aware UI component design that enforces stack detection before any design work.
120
- - Added portable skill `life-guard` for multi-perspective code and decision review using a committee + domain expert safety guard pattern.
151
+ - Added portable skill `review-rangers` for multi-perspective code and decision review using a committee + domain expert safety guard pattern.
121
152
  - Added portable skill `test-driven-development` for guiding the RED → GREEN → REFACTOR TDD cycle.
122
153
 
123
154
  ### Changed
package/README.md CHANGED
@@ -73,7 +73,8 @@ The catalog currently includes:
73
73
  - `angular-guidelines`
74
74
  - `figma-mcp-0to1`
75
75
  - `frontend-design`
76
- - `life-guard`
76
+ - `review-rangers`
77
+ - `react-guidelines`
77
78
  - `skill-creator`
78
79
  - `spec-driven-development`
79
80
  - `test-driven-development`
package/catalog/README.md CHANGED
@@ -9,8 +9,8 @@ Published portable skills consumed by the `skilly-hand` CLI.
9
9
  | `angular-guidelines` | Guide Angular code generation and review using latest stable Angular verification and modern framework best practices. | angular, frontend, workflow, best-practices | all |
10
10
  | `figma-mcp-0to1` | Guide users from Figma MCP installation and authentication through first canvas creation, with function-level tool coverage and operational recovery patterns. | figma, mcp, workflow, design | all |
11
11
  | `frontend-design` | Project-aware frontend design skill that detects the existing tech stack, UI libraries, CSS variables, and design tokens before proposing any UI work. | frontend, design, workflow, ui | all |
12
- | `life-guard` | Review code, decisions, and artifacts through a multi-perspective committee and a domain expert safety guard, then synthesize a structured verdict. | core, workflow, review, quality | all |
13
12
  | `react-guidelines` | Guide React code generation and review using latest stable React verification and modern framework best practices. | react, frontend, workflow, best-practices | all |
13
+ | `review-rangers` | Review code, decisions, and artifacts through a multi-perspective committee and a domain expert safety guard, then synthesize a structured verdict. | core, workflow, review, quality | all |
14
14
  | `skill-creator` | Create and standardize AI skills with reusable structure, metadata rules, and templates. | core, workflow, authoring | all |
15
15
  | `spec-driven-development` | Plan, execute, and verify multi-step work through versioned specs with small, testable tasks. | core, workflow, planning | all |
16
16
  | `test-driven-development` | Guide implementation using the RED → GREEN → REFACTOR TDD cycle: write a failing test first, write the minimum code to pass, then refactor while tests stay green. | testing, workflow, quality, core | all |
@@ -4,8 +4,8 @@
4
4
  "angular-guidelines",
5
5
  "figma-mcp-0to1",
6
6
  "frontend-design",
7
- "life-guard",
8
7
  "react-guidelines",
8
+ "review-rangers",
9
9
  "skill-creator",
10
10
  "spec-driven-development",
11
11
  "test-driven-development",
@@ -1,23 +1,3 @@
1
- ---
2
- name: frontend-design
3
- description: >
4
- Project-aware frontend design skill that detects the existing tech stack, UI libraries,
5
- CSS variables, and design tokens before proposing any UI work. Never invents design
6
- decisions — reads the project first, confirms with the user, then designs.
7
- Trigger: user asks to build, design, style, or update any UI component, page, or visual element in a frontend project.
8
- metadata:
9
- author: skilly-hand
10
- last-edit: 2026-04-04
11
- license: Apache-2.0
12
- version: "1.0.0"
13
- changelog: "initial release; prevents AI slop design by enforcing project-aware stack detection before any design work; affects all frontend design and styling tasks"
14
- auto-invoke: "design a component, create a UI, style this page, build a frontend, update the layout"
15
- allowed-tools: Read, Grep, Glob, Bash, Edit, Write
16
- allowed-modes:
17
- - stack-detector # Scan the project for tech stack, UI libs, CSS vars, and design tokens
18
- - component-designer # Design and implement components following the confirmed project stack
19
- ---
20
-
21
1
  # Frontend Design Guide
22
2
 
23
3
  ## When to Use
@@ -1,19 +1,4 @@
1
- ---
2
- name: life-guard
3
- description: >
4
- Review code, decisions, and artifacts through a multi-perspective committee and a domain expert safety guard, then synthesize a structured verdict.
5
- Trigger: Reviewing code, decisions, pull requests, APIs, architecture, or any artifact that benefits from adversarial multi-perspective evaluation.
6
- metadata:
7
- author: skilly-hand
8
- last-edit: 2026-04-04
9
- license: Apache-2.0
10
- version: "1.0.0"
11
- changelog: "Added multi-perspective review skill with committee + safety guard synthesis; enables adversarial evaluation without permanent agent files; affects catalog skill coverage for review and quality workflows"
12
- auto-invoke: "Reviewing code, decisions, or artifacts where adversarial multi-perspective evaluation adds value"
13
- allowed-tools: Read, Grep, Glob, Bash, Task, SubAgent
14
- ---
15
-
16
- # Life-Guard Guide
1
+ # Review Rangers Guide
17
2
 
18
3
  ## When to Use
19
4
 
@@ -166,10 +151,10 @@ Does committee majority agree the target is sound?
166
151
 
167
152
  ```bash
168
153
  # Reference committee member template when constructing agent prompts
169
- cat .skilly-hand/catalog/life-guard/assets/committee-member-template.md
154
+ cat .skilly-hand/catalog/review-rangers/assets/committee-member-template.md
170
155
 
171
156
  # Reference safety guard template when constructing agent prompts
172
- cat .skilly-hand/catalog/life-guard/assets/safety-guard-template.md
157
+ cat .skilly-hand/catalog/review-rangers/assets/safety-guard-template.md
173
158
  ```
174
159
 
175
160
  ---
@@ -1,6 +1,6 @@
1
1
  {
2
- "id": "life-guard",
3
- "title": "Life-Guard",
2
+ "id": "review-rangers",
3
+ "title": "Review Rangers",
4
4
  "description": "Review code, decisions, and artifacts through a multi-perspective committee and a domain expert safety guard, then synthesize a structured verdict.",
5
5
  "portable": true,
6
6
  "tags": ["core", "workflow", "review", "quality"],
@@ -72,20 +72,20 @@ Generic skill needs {product-name} info? -> Add references/ pointing to {produ
72
72
 
73
73
  ---
74
74
 
75
- ## Frontmatter Fields
75
+ ## Manifest Metadata Fields
76
76
 
77
77
  | Field | Required | Format | Description |
78
78
  |-------|----------|--------|-------------|
79
- | `name` | Yes | `lowercase-hyphens` | Skill identifier |
80
- | `description` | Yes | Block with trigger | What skill does plus explicit `Trigger: ...` clause for AI recognition |
81
- | `metadata.author` | Yes | String | Always `skilly-hand` |
82
- | `metadata.last-edit` | Yes | ISO 8601 date | Format: `YYYY-MM-DD` (e.g., `2026-03-21`) |
83
- | `metadata.license` | Yes | String | Always `Apache-2.0` for `skilly-hand` |
84
- | `metadata.version` | Yes | Semantic version | Format: `"X.Y.Z"` as string |
85
- | `metadata.changelog` | Yes | Structured text | Format: `"<what changed>; <why it matters>; <where it affects>"` |
86
- | `metadata.auto-invoke` | Yes | String | Explicit trigger condition (e.g., `"When auditing, reviewing, or validating an existing skill"`) |
87
- | `allowed-tools` | Yes | Comma-separated | All tools this skill can invoke (e.g., `Read, Edit, Write, SubAgent`) |
88
- | `allowed-modes` | Optional | YAML list | Use only when skill has an `agents/` folder |
79
+ | `id` | Yes | `lowercase-hyphens` | Skill identifier |
80
+ | `description` | Yes | String | What skill does plus explicit `Trigger: ...` clause for AI recognition |
81
+ | `skillMetadata.author` | Yes | String | Always `skilly-hand` |
82
+ | `skillMetadata.last-edit` | Yes | ISO 8601 date | Format: `YYYY-MM-DD` (e.g., `2026-03-21`) |
83
+ | `skillMetadata.license` | Yes | String | Always `Apache-2.0` for `skilly-hand` |
84
+ | `skillMetadata.version` | Yes | Semantic version | Format: `"X.Y.Z"` as string |
85
+ | `skillMetadata.changelog` | Yes | Structured text | Format: `"<what changed>; <why it matters>; <where it affects>"` |
86
+ | `skillMetadata.auto-invoke` | Yes | String | Explicit trigger condition (e.g., `"When auditing, reviewing, or validating an existing skill"`) |
87
+ | `skillMetadata.allowed-tools` | Yes | String list | All tools this skill can invoke (e.g., `Read`, `Edit`, `Write`, `SubAgent`) |
88
+ | `skillMetadata.allowed-modes` | Optional | String list | Use only when skill has an `agents/` folder |
89
89
 
90
90
  ---
91
91
 
@@ -146,7 +146,7 @@ Do:
146
146
 
147
147
  Do not:
148
148
 
149
- - Add a Keywords section (agent searches frontmatter, not body).
149
+ - Add a Keywords section (agent searches manifest metadata, not body).
150
150
  - Duplicate content from existing docs (reference instead).
151
151
  - Include lengthy explanations when a concise rule is enough.
152
152
  - Add troubleshooting sections when they are not essential.
@@ -161,7 +161,7 @@ Do not:
161
161
  - [ ] Skill does not already exist.
162
162
  - [ ] Pattern is reusable (not one-off).
163
163
  - [ ] Name follows conventions.
164
- - [ ] Frontmatter includes all required fields.
164
+ - [ ] `manifest.json` includes all required metadata fields.
165
165
  - [ ] `description` includes explicit `Trigger: ...` clause.
166
166
  - [ ] `last-edit` uses ISO format (`YYYY-MM-DD`).
167
167
  - [ ] `changelog` uses structured format: `what; why; where`.
@@ -1,22 +1,3 @@
1
- ---
2
- name: {skill-name}
3
- description: >
4
- {Brief description of what this skill enables}.
5
- Trigger: {When the AI should load this skill - explicit trigger condition}.
6
- metadata:
7
- author: skilly-hand
8
- last-edit: {YYYY-MM-DD}
9
- license: Apache-2.0
10
- version: "1.0.0"
11
- changelog: "{<what changed>; <why it matters>; <where it affects>}"
12
- auto-invoke: "{Complete with a brief and specific phrase if the skill needs auto-invoke}"
13
- allowed-tools: {tool1, tool2, tool3} # Examples: Read, Edit, Write, Bash, Grep, SubAgent, Task, WebFetch
14
- # IMPORTANT: Only include 'allowed-modes' if your skill has an agents/ folder with sub-agents.
15
- # If you don't have agents/, delete the lines below.
16
- allowed-modes:
17
- - {mode-name} # {Description of when this mode is used}
18
- ---
19
-
20
1
  # {Name of the Skill} Guide
21
2
 
22
3
  ## When to Use
@@ -92,3 +73,4 @@ Otherwise -> {Default action}
92
73
  ## Resources
93
74
 
94
75
  - Template assets: Place reusable templates, schemas, and examples in `assets/`.
76
+ - Define metadata in `manifest.json` (`id`, `description`, `skillMetadata`, `allowed-tools`, optional `allowed-modes`).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skilly-hand/skilly-hand",
3
- "version": "0.10.3",
3
+ "version": "0.10.5",
4
4
  "license": "CC-BY-NC-4.0",
5
5
  "type": "module",
6
6
  "publishConfig": {