kairos-chain 3.25.1 → 3.25.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ff49b5dba49e9c78161990be5bbf9bc94252542aeafe636b0c6cd424952ccff
|
|
4
|
+
data.tar.gz: 816f240e2cea9d045b4ac0c19c622792fe603dc49d2b454ec9409a8a6ab4f74a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa98790fe6f4b71d1995b6d6a6822692a246c5aff24e3d99c9087ed44e78c9dc92ee19497628335862b1b6c93d156da514a7059bb275116d6e2ee62474e091a2
|
|
7
|
+
data.tar.gz: d50285be992138c811fb27bf9bf375648bbab801b71f37c9150d980996fc418da9e8bbd0bbaed6b506d19ecb187df932395f0a70f4501772b027c2bea8695581
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ 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.25.2] - 2026-05-07
|
|
8
|
+
|
|
9
|
+
### Changed (L1 knowledge: reviewer evaluation feedback loop)
|
|
10
|
+
|
|
11
|
+
- `multi_llm_review_workflow` § L2 Save Points: 各 review round 終了時に
|
|
12
|
+
per-reviewer observation (verdict, (a)/(b)/(c) breakdown, briefing-reaction
|
|
13
|
+
shift, anomalies) を `reviewer_evaluation_observation_<reviewer>_<date>`
|
|
14
|
+
prefix で L2 context に記録するよう明示。次回以降の
|
|
15
|
+
`multi_llm_reviewer_evaluation` refinement 用 sample 蓄積 channel として
|
|
16
|
+
workflow に組み込み。
|
|
17
|
+
- `multi_llm_reviewer_evaluation` 末尾に "Refinement Source" section を追加。
|
|
18
|
+
上記 L2 context を refinement の source として明示することで L2 → L1
|
|
19
|
+
promotion loop を reviewer profile 自身に対しても閉じる (Prop 5
|
|
20
|
+
constitutive recording + Prop 6 incompleteness as driving force)。
|
|
21
|
+
|
|
22
|
+
Surface 拡張なし: 既存セクションへの bullet 追加 + 新規 1 段落のみ。新 mechanism /
|
|
23
|
+
新 field / 新 tool なし。
|
|
24
|
+
|
|
7
25
|
## [3.25.1] - 2026-05-07
|
|
8
26
|
|
|
9
27
|
### Changed (L1 knowledge: multi-LLM review)
|
data/lib/kairos_mcp/version.rb
CHANGED
|
@@ -344,6 +344,14 @@ Save to L2 context at these moments:
|
|
|
344
344
|
- After design/implementation complete (before review)
|
|
345
345
|
- After synthesis of reviews (revised version)
|
|
346
346
|
- After final convergence (implementation-ready / merge-ready)
|
|
347
|
+
- **After each review round**: capture per-reviewer observations — verdict,
|
|
348
|
+
(a)/(b)/(c) classification breakdown, briefing-reaction shift (did the
|
|
349
|
+
reviewer change verdict after Step 0.5 design direction?), anomalies
|
|
350
|
+
(off-pattern findings, format failures, refusal). Tag context name with
|
|
351
|
+
prefix `reviewer_evaluation_observation_<reviewer>_<date>` so future
|
|
352
|
+
refinement of `multi_llm_reviewer_evaluation` can sample these records
|
|
353
|
+
systematically. This closes the L2→L1 promotion loop for reviewer
|
|
354
|
+
profiles themselves.
|
|
347
355
|
|
|
348
356
|
---
|
|
349
357
|
|
|
@@ -293,3 +293,12 @@ Deployment: Composer-2 or Cursor GPT-5.4
|
|
|
293
293
|
5. Some REJECTs reflect the reviewer's value system, not the artifact. The (a)/(b)/(c)
|
|
294
294
|
classification (see § Reviewer Value-System Divergence) is required to separate
|
|
295
295
|
blocking signal from advisory noise. Codex models in particular require this lens.
|
|
296
|
+
|
|
297
|
+
## Refinement Source
|
|
298
|
+
|
|
299
|
+
Profiles in this knowledge are refined from accumulated L2 contexts named with prefix
|
|
300
|
+
`reviewer_evaluation_observation_<reviewer>_<date>`, recorded after each multi-LLM
|
|
301
|
+
review round per `multi_llm_review_workflow` § L2 Save Points. When updating this
|
|
302
|
+
file, sample those records to revise per-reviewer profiles, Strength Matrix entries,
|
|
303
|
+
Cost-Benefit ratings, and the value-system divergence section. This closes the
|
|
304
|
+
L2 → L1 promotion loop for reviewer profiles themselves.
|