ace-docs 0.31.1 → 0.31.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-docs.yml +19 -0
- data/CHANGELOG.md +5 -0
- data/lib/ace/docs/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: 8e45db3ead545d320bc921b7f41bcfbc4c5fd8f2eaf4165de2ab6106b0c9d0db
|
|
4
|
+
data.tar.gz: '0097fed61a1fbdf765d55356fd23ad3e9263ecb29541b925149cf9b6ba2b4208'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0776c5313868d44137d73e365b0609da4018b55bcfab12e8395076c59f44635312802424964b4bba03bab13fd835c21472b4f6fdee0c924d6a3baa32244c5ded
|
|
7
|
+
data.tar.gz: d9f33f91c2a0a44813c7f8180cf1654ca739e8f706ee05ffd1a386d69c8681464394e9071843f0182cddedbb32db78f3e7bd4b0f165dd66793330e7e21034633
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Skill Sources Protocol Configuration for ace-docs gem
|
|
3
|
+
# This enables canonical skill discovery from the installed ace-docs gem
|
|
4
|
+
|
|
5
|
+
name: ace-docs
|
|
6
|
+
type: gem
|
|
7
|
+
description: Canonical skills from ace-docs 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.31.2] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Technical
|
|
13
|
+
- Register package-level `.ace-defaults` skill-sources for ace-docs to enable canonical skill discovery in fresh installs.
|
|
14
|
+
|
|
10
15
|
|
|
11
16
|
## [0.31.1] - 2026-03-29
|
|
12
17
|
|
data/lib/ace/docs/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-docs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.31.
|
|
4
|
+
version: 0.31.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
@@ -234,6 +234,7 @@ files:
|
|
|
234
234
|
- ".ace-defaults/docs/single-subject-example.md"
|
|
235
235
|
- ".ace-defaults/nav/protocols/guide-sources/ace-docs.yml"
|
|
236
236
|
- ".ace-defaults/nav/protocols/prompt-sources/ace-docs.yml"
|
|
237
|
+
- ".ace-defaults/nav/protocols/skill-sources/ace-docs.yml"
|
|
237
238
|
- ".ace-defaults/nav/protocols/tmpl-sources/ace-docs.yml"
|
|
238
239
|
- ".ace-defaults/nav/protocols/wfi-sources/ace-docs.yml"
|
|
239
240
|
- CHANGELOG.md
|