ace-handbook 0.21.1 → 0.21.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.
- checksums.yaml +4 -4
- data/.ace-defaults/nav/protocols/skill-sources/ace-handbook.yml +19 -0
- data/CHANGELOG.md +5 -0
- data/lib/ace/handbook/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ff9dbb1f4871cfe112f0308f955d33f3004c5f7e363c34f33e98814e9b948f5
|
|
4
|
+
data.tar.gz: 95cc2c73bd63005208b4bab666714117b3010aad5d5815850405fc78aa3645f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55bd101a81580560dce70c362c18a9c7424431a26fc7390e14e79741d54371683d3e881551588196a7d224a5f1370907c50ee42f7aa29aa9f8bdcfb1a5b40dde
|
|
7
|
+
data.tar.gz: a99bc39bfd4832196dc918af93cdd416492fa2107ac93a532068e359072b4f7885aea12b3f316de94f5594a8118c6d21a3f99989bfd901b8bad439a9ba9052a1
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Skill Sources Protocol Configuration for ace-handbook gem
|
|
3
|
+
# This enables canonical skill discovery from the installed ace-handbook gem
|
|
4
|
+
|
|
5
|
+
name: ace-handbook
|
|
6
|
+
type: gem
|
|
7
|
+
description: Canonical skills from ace-handbook gem
|
|
8
|
+
priority: 10
|
|
9
|
+
|
|
10
|
+
# Configuration for skill discovery within the gem
|
|
11
|
+
config:
|
|
12
|
+
# Relative path within the gem
|
|
13
|
+
relative_path: handbook/skills
|
|
14
|
+
|
|
15
|
+
# Pattern for finding canonical skill files
|
|
16
|
+
pattern: "*/SKILL.md"
|
|
17
|
+
|
|
18
|
+
# Enable discovery
|
|
19
|
+
enabled: true
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.21.2] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Technical
|
|
13
|
+
- Register package-level `.ace-defaults` skill-sources for ace-handbook to enable canonical skill discovery in fresh installs.
|
|
14
|
+
|
|
10
15
|
|
|
11
16
|
## [0.21.1] - 2026-03-29
|
|
12
17
|
|
data/lib/ace/handbook/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-handbook
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.21.
|
|
4
|
+
version: 0.21.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
@@ -118,6 +118,7 @@ extra_rdoc_files: []
|
|
|
118
118
|
files:
|
|
119
119
|
- ".ace-defaults/handbook/config.yml"
|
|
120
120
|
- ".ace-defaults/nav/protocols/guide-sources/ace-handbook.yml"
|
|
121
|
+
- ".ace-defaults/nav/protocols/skill-sources/ace-handbook.yml"
|
|
121
122
|
- ".ace-defaults/nav/protocols/tmpl-sources/ace-handbook.yml"
|
|
122
123
|
- ".ace-defaults/nav/protocols/wfi-sources/ace-handbook.yml"
|
|
123
124
|
- CHANGELOG.md
|