From a8d98b5637258e432df47cece418c91d0f270958 Mon Sep 17 00:00:00 2001 From: Wojtek Date: Tue, 7 Apr 2026 13:56:54 -0400 Subject: [PATCH 1/2] fix: update cllama for cache-friendly feed injection (#122) Points cllama submodule at fix that appends feeds/time after the static system prompt instead of prepending. Keeps the system prompt as a stable prefix for Anthropic prompt caching (~$60/week savings on tiverton pod). Fixes #122 --- cllama | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cllama b/cllama index 86f6071..82bf1cf 160000 --- a/cllama +++ b/cllama @@ -1 +1 @@ -Subproject commit 86f6071b5fbc1d95a22b03e729d10f12a4eb211e +Subproject commit 82bf1cf9d59ec348909d8cd157f0daa780b134d6 From 1119334a4097b8b947809673d29e7a3fa52b1475 Mon Sep 17 00:00:00 2001 From: Wojtek Date: Tue, 7 Apr 2026 14:00:34 -0400 Subject: [PATCH 2/2] docs: add changelog entry for cache-friendly feed injection --- site/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/changelog.md b/site/changelog.md index c05998f..802d81a 100644 --- a/site/changelog.md +++ b/site/changelog.md @@ -29,7 +29,7 @@ outline: deep ## Unreleased - +- **Fix: cllama prompt cache efficiency** ([#122](https://github.com/mostlydev/clawdapus/issues/122)) — feed and time context is now appended after the system prompt rather than prepended, enabling Anthropic prompt cache reuse across requests. ## v0.6.1 {#v0-6-1}