cadenya 0.39.0 → 0.40.0
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e294afb83985b1864a4de1b54ead56fc84155436be7680ef970b7e4a7bb81e11
|
|
4
|
+
data.tar.gz: 490831f8d6c255f16cc3af0b2d0f8d587c2d6d42866e5b827efd99b3120494d2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37d2d6e3511e24300872dd3efdacc6a51f134350451d02d4ce28b61fdba3ad6a70efa5ac449863541b9a6b17a0f24071f75257dd83e78cddff770b492bc91430
|
|
7
|
+
data.tar.gz: b5f69dda694d28fbd291053e204a2cdd079cb00f0c2b168c1e9a8d3fb4a5768a2e035deaecefc312136b39ec00bdcc510bf21dc4765352befe46cc1eee001164
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.40.0 (2026-07-08)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.39.0...v0.40.0](https://github.com/cadenya/cadenya-ruby/compare/v0.39.0...v0.40.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([2e7ec18](https://github.com/cadenya/cadenya-ruby/commit/2e7ec184483882012105e9f25e97d46dbedd4ca1))
|
|
10
|
+
|
|
3
11
|
## 0.39.0 (2026-07-08)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.38.0...v0.39.0](https://github.com/cadenya/cadenya-ruby/compare/v0.38.0...v0.39.0)
|
data/README.md
CHANGED
|
@@ -19,8 +19,8 @@ module Cadenya
|
|
|
19
19
|
# - Case-sensitive
|
|
20
20
|
# - Unique within the parent layer
|
|
21
21
|
#
|
|
22
|
-
# For skills entries, this key is
|
|
23
|
-
#
|
|
22
|
+
# For skills entries, this key is what the model passes to get_memory to load the
|
|
23
|
+
# entry's content.
|
|
24
24
|
#
|
|
25
25
|
# @return [String]
|
|
26
26
|
required :key, String
|
data/lib/cadenya/version.rb
CHANGED
|
@@ -26,8 +26,8 @@ module Cadenya
|
|
|
26
26
|
# - Case-sensitive
|
|
27
27
|
# - Unique within the parent layer
|
|
28
28
|
#
|
|
29
|
-
# For skills entries, this key is
|
|
30
|
-
#
|
|
29
|
+
# For skills entries, this key is what the model passes to get_memory to load the
|
|
30
|
+
# entry's content.
|
|
31
31
|
sig { returns(String) }
|
|
32
32
|
attr_accessor :key
|
|
33
33
|
|
|
@@ -62,8 +62,8 @@ module Cadenya
|
|
|
62
62
|
# - Case-sensitive
|
|
63
63
|
# - Unique within the parent layer
|
|
64
64
|
#
|
|
65
|
-
# For skills entries, this key is
|
|
66
|
-
#
|
|
65
|
+
# For skills entries, this key is what the model passes to get_memory to load the
|
|
66
|
+
# entry's content.
|
|
67
67
|
key:,
|
|
68
68
|
# One-line "when to use this" hint shown in the frontmatter manifest for skills
|
|
69
69
|
# entries. The model uses this to decide whether to load the body, so it should be
|