legion-llm 0.7.5 → 0.7.7

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: 14ea97502e51c6baf291165f3e36bbf37b28b93eb119ad750e6157089b0058c6
4
- data.tar.gz: 6881a3b870cbdb2b7f7bbc2ce3af39b7331f27aefd48e742073a5c1149a8d0bf
3
+ metadata.gz: 7f705099bfc2774572c4e0b12fbee7d017d1f536994b90d31bfd032999f65605
4
+ data.tar.gz: 1161c2c308f15c07cc15a2e15c2eae58e85a324da5c22fcb0c48176433590106
5
5
  SHA512:
6
- metadata.gz: 83d59e98b5fe417f762bdf7aec41c8bdbe10246db47d9f9dcf620a9c5b7bc97768a0f05a13e5865a30400fb37c018ee019047fd68ddf717d760b213dd36c58e2
7
- data.tar.gz: 43897c5332b7c641812f3e75981b1712a5d5262f607ce55bf8cd49f27c04a6a62f4bddd3d5f6abd8c0adc634a41b60e9b894383a211955ae1197d09d9c16bfb3
6
+ metadata.gz: cc5b89701e7dadcc0183c86eb8779c820473cf6c4d7bf84af7fc0d2356d91e7d6f10ad34769771e1fd99363c091dbcca9de1994f0de71370957e6b1cd8f0bd09
7
+ data.tar.gz: b36c275f9aeffde1922a2471bfcbff7903b8be908d4b3ab3ec98710abcba4634457b853089649e5d5f22b92ec796d61bb9d20b9ded39cd9a0173b88c678b60d2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.7.7] - 2026-04-15
6
+
7
+ ### Added
8
+ - Sticky runner tool injection: deferred tool runners stay injected for N human turns (trigger tier) or N deferred tool executions (execution tier) after activity, preventing the LLM from falling back to `legion_do` on follow-up messages
9
+ - Tool call history: every tool call is appended to a per-conversation enrichment block so the LLM can reference prior results (e.g. "the issue I created was #142")
10
+ - `Steps::StickyRunners`, `Steps::ToolHistory`, `Steps::StickyPersist` pipeline steps
11
+ - `ConversationStore#read_sticky_state` / `#write_sticky_state` for in-memory per-conversation state
12
+ - `Steps::StickyHelpers` shared settings helpers
13
+
14
+ ## [0.7.6] - 2026-04-14
15
+
16
+ ### Added
17
+ - `DaemonUnavailableError < LLMError` error class for fleet fail-closed semantics
18
+ - Metering wired as explicit pipeline executor step (`:metering` in STEPS)
19
+ - Router `exclude:` parameter — provider-keyed hash for anti-bias model exclusion (step 4.6 in `select_candidates`)
20
+ - `thinking:` forwarded to RubyLLM provider via `ruby_llm_chat_options`
21
+
22
+ ### Fixed
23
+ - Tool injection suppression: `tools: []` (explicit empty array) now skips `inject_registry_tools` — prevents 60+ MCP tools from being injected into fleet LLM calls
24
+ - RBAC fail-closed for fleet: callers with `agent.id` starting with `fleet:` are blocked when RBAC is unavailable (scoped, does not affect non-fleet callers)
25
+ - `exclude:` normalized defensively — `nil` or non-Hash values treated as empty
26
+
5
27
  ## [0.7.5] - 2026-04-14
6
28
 
7
29
  ### Added