ace-prompt-prep 0.23.1 → 0.23.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-prompt-prep.yml +19 -0
- data/CHANGELOG.md +5 -0
- data/lib/ace/prompt_prep/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: 42fcf237a645665e04514be50fdbd7bb358a541b0e5d080350eb02b90348b4f7
|
|
4
|
+
data.tar.gz: 2a29249b45d23133674fc15c09a40f2882f42dd1e81dd422e257b862fa83e852
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ef837def6a9cf4ee1ca0f5ad326b9453b8cf691d29e82a8216ede654674f8ea066bfceaff24d54470348209ec0399b43bae395711f4e4e033a4e40477e021dde
|
|
7
|
+
data.tar.gz: 67bc9b3d471e4d5a86bcc35bc9b426521fabf7ca9af961f54970894bf815323495c428e8cb5bcd9ab620b5eb55b3b0f7649298104adb05be8a78a3583b0c8675
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Skill Sources Protocol Configuration for ace-prompt-prep gem
|
|
3
|
+
# This enables canonical skill discovery from the installed ace-prompt-prep gem
|
|
4
|
+
|
|
5
|
+
name: ace-prompt-prep
|
|
6
|
+
type: gem
|
|
7
|
+
description: Canonical skills from ace-prompt-prep 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.23.2] - 2026-03-29
|
|
11
|
+
|
|
12
|
+
### Technical
|
|
13
|
+
- Register package-level `.ace-defaults` skill-sources for ace-prompt-prep to enable canonical skill discovery in fresh installs.
|
|
14
|
+
|
|
10
15
|
|
|
11
16
|
## [0.23.1] - 2026-03-29
|
|
12
17
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-prompt-prep
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.23.
|
|
4
|
+
version: 0.23.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
@@ -146,6 +146,7 @@ extensions: []
|
|
|
146
146
|
extra_rdoc_files: []
|
|
147
147
|
files:
|
|
148
148
|
- ".ace-defaults/nav/protocols/prompt-sources/ace-prompt-prep.yml"
|
|
149
|
+
- ".ace-defaults/nav/protocols/skill-sources/ace-prompt-prep.yml"
|
|
149
150
|
- ".ace-defaults/nav/protocols/tmpl-sources/ace-prompt-prep.yml"
|
|
150
151
|
- ".ace-defaults/prompt-prep/config.yml"
|
|
151
152
|
- CHANGELOG.md
|