ace-test 0.6.0 → 0.6.1
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-test.yml +19 -0
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/lib/ace/test/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: 03f1568b0abaf1ec15db4503fb0deb7022d8174dba577270eef50578a79ed750
|
|
4
|
+
data.tar.gz: dc057abd1b2f18b9109fdeec968cb334a5ece633b18dcaaceedb86a6fe124f78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e72c6d07bf3b2159cadf2d7f7943af58c0ad6c93948fdb896c2351723d46e8c191c1aab5b16c8d1fe03042a9e4aa279701305c0778a55314bc2f3c7b1c6447a
|
|
7
|
+
data.tar.gz: da5c418d16c6276c265c1bd59048875b77a9caf2dfca7fd55fd77c331754fc01be165f0dd70b55c48b881691d86c95f23b1983f720805ef18f87370bf6adfa78
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
# Skill Sources Protocol Configuration for ace-test gem
|
|
3
|
+
# This enables canonical skill discovery from the installed ace-test gem
|
|
4
|
+
|
|
5
|
+
name: ace-test
|
|
6
|
+
type: gem
|
|
7
|
+
description: Canonical skills from ace-test 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
|
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.6.1] - 2026-03-29
|
|
10
|
+
|
|
11
|
+
### Technical
|
|
12
|
+
- Register package-level `.ace-defaults` skill-sources for ace-test to enable canonical skill discovery in fresh installs.
|
|
13
|
+
|
|
9
14
|
## [0.6.0] - 2026-03-24
|
|
10
15
|
|
|
11
16
|
### Changed
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
Testing knowledge base for ACE — guides, patterns, and workflows for fast, reliable tests.
|
|
5
5
|
|
|
6
|
-
<img src="
|
|
6
|
+
<img src="../docs/brand/AgenticCodingEnvironment.Logo.XS.jpg" alt="ACE Logo" width="480">
|
|
7
7
|
<br><br>
|
|
8
8
|
|
|
9
9
|
<a href="https://rubygems.org/gems/ace-test"><img alt="Gem Version" src="https://img.shields.io/gem/v/ace-test.svg" /></a>
|
data/lib/ace/test/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ace-test
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michal Czyz
|
|
@@ -61,6 +61,7 @@ extra_rdoc_files: []
|
|
|
61
61
|
files:
|
|
62
62
|
- ".ace-defaults/nav/protocols/agent-sources/ace-test.yml"
|
|
63
63
|
- ".ace-defaults/nav/protocols/guide-sources/ace-test.yml"
|
|
64
|
+
- ".ace-defaults/nav/protocols/skill-sources/ace-test.yml"
|
|
64
65
|
- ".ace-defaults/nav/protocols/tmpl-sources/ace-test.yml"
|
|
65
66
|
- ".ace-defaults/nav/protocols/wfi-sources/ace-test.yml"
|
|
66
67
|
- CHANGELOG.md
|