kairos-chain 3.9.1 → 3.9.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/CHANGELOG.md +9 -1
- data/lib/kairos_mcp/version.rb +1 -1
- metadata +12 -12
- /data/templates/skillsets/llm_client/{llm_client.yml → config/llm_client.yml} +0 -0
- /data/templates/skillsets/llm_client/{llm_client → lib/llm_client}/adapter.rb +0 -0
- /data/templates/skillsets/llm_client/{llm_client → lib/llm_client}/anthropic_adapter.rb +0 -0
- /data/templates/skillsets/llm_client/{llm_client → lib/llm_client}/bedrock_adapter.rb +0 -0
- /data/templates/skillsets/llm_client/{llm_client → lib/llm_client}/claude_code_adapter.rb +0 -0
- /data/templates/skillsets/llm_client/{llm_client → lib/llm_client}/openai_adapter.rb +0 -0
- /data/templates/skillsets/llm_client/{llm_client → lib/llm_client}/schema_converter.rb +0 -0
- /data/templates/skillsets/llm_client/{llm_call.rb → tools/llm_call.rb} +0 -0
- /data/templates/skillsets/llm_client/{llm_configure.rb → tools/llm_configure.rb} +0 -0
- /data/templates/skillsets/llm_client/{llm_status.rb → tools/llm_status.rb} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58adf58a025748f0645e1933fc19c3fab811c68eb459d2f5a8a152417146c386
|
|
4
|
+
data.tar.gz: 1547a6b41b36061550ea60709eca097778500344b18f00849da26a47ed70397f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dcb1eb4a44279b9d0c94a61b47093d95b2d5f997d9b6ec3850424a2c9d11e26aeb75a4d1a04cc67e5848ceee4638b350233489f7b1f76d4acf3f16852a4bcd68
|
|
7
|
+
data.tar.gz: a10800df40fd5105ca2f84c21350a89d5ab4e2c3adf91cc41ac288dc2695a01141a4e96ae6df346b7613d9c03fdc5c0aa0afe1571ed269fc843d595f800ba3f2
|
data/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,7 @@ All notable changes to the `kairos-chain` gem will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
This project follows [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
-
## [3.9.
|
|
7
|
+
## [3.9.2] - 2026-03-30
|
|
8
8
|
|
|
9
9
|
### Fixed
|
|
10
10
|
|
|
@@ -13,6 +13,14 @@ This project follows [Semantic Versioning](https://semver.org/).
|
|
|
13
13
|
`KairosChain_mcp_server/templates/skillsets/llm_client/`. This caused
|
|
14
14
|
`llm_call`, `llm_configure`, and `llm_status` tools to be unavailable on
|
|
15
15
|
fresh installs, breaking the `agent` SkillSet (`depends_on: ["llm_client"]`).
|
|
16
|
+
- **llm_client directory structure non-standard** — Tool files were at the
|
|
17
|
+
SkillSet top level instead of `tools/`, lib files in `llm_client/` instead
|
|
18
|
+
of `lib/llm_client/`, config at top level instead of `config/`. The
|
|
19
|
+
`skillset.rb` loader only scans `tools/` so tools were never loaded.
|
|
20
|
+
|
|
21
|
+
## [3.9.1] - 2026-03-30 [yanked]
|
|
22
|
+
|
|
23
|
+
- Included llm_client files but with non-standard directory structure.
|
|
16
24
|
|
|
17
25
|
## [3.9.0] - 2026-03-30
|
|
18
26
|
|
data/lib/kairos_mcp/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kairos-chain
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.9.
|
|
4
|
+
version: 3.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Masaomi Hatakeyama
|
|
@@ -307,17 +307,17 @@ files:
|
|
|
307
307
|
- templates/skillsets/knowledge_creator/skillset.json
|
|
308
308
|
- templates/skillsets/knowledge_creator/tools/kc_compare.rb
|
|
309
309
|
- templates/skillsets/knowledge_creator/tools/kc_evaluate.rb
|
|
310
|
-
- templates/skillsets/llm_client/
|
|
311
|
-
- templates/skillsets/llm_client/llm_client.
|
|
312
|
-
- templates/skillsets/llm_client/llm_client/
|
|
313
|
-
- templates/skillsets/llm_client/llm_client/
|
|
314
|
-
- templates/skillsets/llm_client/llm_client/
|
|
315
|
-
- templates/skillsets/llm_client/llm_client/
|
|
316
|
-
- templates/skillsets/llm_client/llm_client/
|
|
317
|
-
- templates/skillsets/llm_client/llm_client/schema_converter.rb
|
|
318
|
-
- templates/skillsets/llm_client/llm_configure.rb
|
|
319
|
-
- templates/skillsets/llm_client/llm_status.rb
|
|
310
|
+
- templates/skillsets/llm_client/config/llm_client.yml
|
|
311
|
+
- templates/skillsets/llm_client/lib/llm_client/adapter.rb
|
|
312
|
+
- templates/skillsets/llm_client/lib/llm_client/anthropic_adapter.rb
|
|
313
|
+
- templates/skillsets/llm_client/lib/llm_client/bedrock_adapter.rb
|
|
314
|
+
- templates/skillsets/llm_client/lib/llm_client/claude_code_adapter.rb
|
|
315
|
+
- templates/skillsets/llm_client/lib/llm_client/openai_adapter.rb
|
|
316
|
+
- templates/skillsets/llm_client/lib/llm_client/schema_converter.rb
|
|
320
317
|
- templates/skillsets/llm_client/skillset.json
|
|
318
|
+
- templates/skillsets/llm_client/tools/llm_call.rb
|
|
319
|
+
- templates/skillsets/llm_client/tools/llm_configure.rb
|
|
320
|
+
- templates/skillsets/llm_client/tools/llm_status.rb
|
|
321
321
|
- templates/skillsets/mcp_client/config/mcp_client.yml
|
|
322
322
|
- templates/skillsets/mcp_client/lib/mcp_client.rb
|
|
323
323
|
- templates/skillsets/mcp_client/lib/mcp_client/client.rb
|
|
@@ -462,7 +462,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
462
462
|
- !ruby/object:Gem::Version
|
|
463
463
|
version: '0'
|
|
464
464
|
requirements: []
|
|
465
|
-
rubygems_version: 3.
|
|
465
|
+
rubygems_version: 3.3.26
|
|
466
466
|
signing_key:
|
|
467
467
|
specification_version: 4
|
|
468
468
|
summary: KairosChain - Self-referential MCP server for auditable skill self-management
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|