You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add plan mode for task execution — allows users to generate and review plans before execution, includes caching improvements for Anthropic prompts
Copy file name to clipboardExpand all lines: CHANGELOG.md
+60Lines changed: 60 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,66 @@ For releases before v1.3.35, see [GitHub Releases](https://github.com/VladoIvank
11
11
> as the social-share summary (IFTTT → X/Bluesky), capped at 220 chars.
12
12
> If omitted, the feed falls back to the first paragraph.
13
13
14
+
## [2.0.2] — 2026-05-19
15
+
16
+
> Two big quality-of-life additions: Anthropic prompt caching is on by default (60–90% cheaper on cache-eligible input), and `/plan` lets you preview an agent's full plan before any file gets touched. Run `/go` to execute, or `/plan <revised task>` to refine.
17
+
18
+
### Added — Anthropic prompt caching, automatic
19
+
20
+
-**Two cache breakpoints per request**: the system prompt (and embedded
21
+
skills catalog / project intelligence) and the tools array. Cache hits
22
+
bill at 0.1× the input rate; cache writes at 1.25×. Net win after the
23
+
second same-shape request, which is every iteration in an agent loop.
0 commit comments