ace-overseer 0.13.4 → 0.13.6
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-overseer.yml +19 -0
- data/CHANGELOG.md +10 -1
- data/lib/ace/overseer/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 635ac87d8a3280127b48faff0f5c1488f008b6991bab4ef0a67ce08495ba3b7d
|
|
4
|
+
data.tar.gz: 2c5ac5511e9999fde68ea132d5a2eaefe39c1d8bb8e6c8b8076eb179631e64eb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f5ec0d0faf69570df1a09b835bc83d763f378a7642347f10b344da5fc1e32f307b43aa0fa2f6ae5ad0cbba568f6b69378e448ddd65a89354df65d2cc741149ab
|
|
7
|
+
data.tar.gz: 576c69f6d73ff4ed1a5ca6c25db86fb1a8c076612b4212c0ecae8ad1122aeb66fc5f703236378073a3b53ad448079a5b7e2e148128a232a264609a68b77e805f
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Skill Sources Protocol Configuration for ace-overseer gem
|
|
3
|
+
# This enables canonical skill discovery from the installed ace-overseer gem
|
|
4
|
+
|
|
5
|
+
name: ace-overseer
|
|
6
|
+
type: gem
|
|
7
|
+
description: Canonical skills from ace-overseer 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,11 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.13.6] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Updated the `ace-assign` runtime dependency constraint to `~> 0.41` to stay aligned with the current released assign API.
|
|
14
|
+
|
|
15
|
+
## [0.13.5] - 2026-03-29
|
|
16
|
+
|
|
17
|
+
### Technical
|
|
18
|
+
- Register package-level `.ace-defaults` skill-sources for ace-overseer to enable canonical skill discovery in fresh installs.
|
|
10
19
|
|
|
11
20
|
## [0.13.4] - 2026-03-29
|
|
12
21
|
|
|
13
22
|
### Fixed
|
|
14
|
-
-
|
|
23
|
+
- Bumped dependency constraints to currently available `~>` ranges on RubyGems and updated release metadata after dependency synchronization.
|
|
15
24
|
|
|
16
25
|
## [0.13.3] - 2026-03-28
|
|
17
26
|
|
data/lib/ace/overseer/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-overseer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.13.
|
|
4
|
+
version: 0.13.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
@@ -71,14 +71,14 @@ dependencies:
|
|
|
71
71
|
requirements:
|
|
72
72
|
- - "~>"
|
|
73
73
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '0.
|
|
74
|
+
version: '0.41'
|
|
75
75
|
type: :runtime
|
|
76
76
|
prerelease: false
|
|
77
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
78
78
|
requirements:
|
|
79
79
|
- - "~>"
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: '0.
|
|
81
|
+
version: '0.41'
|
|
82
82
|
- !ruby/object:Gem::Dependency
|
|
83
83
|
name: ace-git
|
|
84
84
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -200,6 +200,7 @@ executables:
|
|
|
200
200
|
extensions: []
|
|
201
201
|
extra_rdoc_files: []
|
|
202
202
|
files:
|
|
203
|
+
- ".ace-defaults/nav/protocols/skill-sources/ace-overseer.yml"
|
|
203
204
|
- ".ace-defaults/overseer/config.yml"
|
|
204
205
|
- CHANGELOG.md
|
|
205
206
|
- LICENSE
|