legion-llm 0.7.6 → 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: 2856c4fbdb896cc947ca9e64e1f16240db499ce49edb92d1a775009de9405a7b
4
- data.tar.gz: dde486aca3ebfefec431e4ac4578db846a2fcd597a118657ba44cfca05245cc6
3
+ metadata.gz: 7f705099bfc2774572c4e0b12fbee7d017d1f536994b90d31bfd032999f65605
4
+ data.tar.gz: 1161c2c308f15c07cc15a2e15c2eae58e85a324da5c22fcb0c48176433590106
5
5
  SHA512:
6
- metadata.gz: 96435d5a198f879241b1c04c2c17cd0caf2afd2ae3751c2efd6c416e19c3513bbfe3c3612289a4014fed6f461e9c801451e6fd767fa23c62075cd908cdb6f676
7
- data.tar.gz: 4978d31e8be17eadb107ac10481f1089ed32bb5403e60e1f5320510b6d93c7f73a1880d063ac55e05144dab64998839f7280c8e9271378adceaf08b41b4a35d8
6
+ metadata.gz: cc5b89701e7dadcc0183c86eb8779c820473cf6c4d7bf84af7fc0d2356d91e7d6f10ad34769771e1fd99363c091dbcca9de1994f0de71370957e6b1cd8f0bd09
7
+ data.tar.gz: b36c275f9aeffde1922a2471bfcbff7903b8be908d4b3ab3ec98710abcba4634457b853089649e5d5f22b92ec796d61bb9d20b9ded39cd9a0173b88c678b60d2
data/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
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
+
5
14
  ## [0.7.6] - 2026-04-14
6
15
 
7
16
  ### Added