@tractorscorch/clank 1.3.0 → 1.4.0

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.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,42 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
6
6
 
7
7
  ---
8
8
 
9
+ ## [1.4.0] — 2026-03-23
10
+
11
+ ### Added
12
+ - **Telegram streaming** — responses edit in real-time as tokens arrive (800ms interval, respects rate limits)
13
+ - **Telegram image handling** — send photos to the bot, routed to agent with image URL
14
+ - **Telegram document handling** — send files to the bot, saved to temp with sanitized filenames, agent can read them
15
+ - **File share tool** — `share_file` lets the agent send workspace files through channels (workspace containment enforced)
16
+ - **Per-agent voice** — each agent can have its own ElevenLabs voice ID in config
17
+ - **Compact prompt mode** — `compactPrompt: true` strips workspace files for small model context optimization
18
+ - **Thinking control** — `thinking: "off"` suppresses extended reasoning for faster responses
19
+ - **Auto-memory persistence** — "remember X", preference statements, and corrections auto-saved to MEMORY.md
20
+ - **Web UI session history** — loads last 50 messages on connect and session switch
21
+ - **Rate limiting** — 20 messages per minute per session, prevents model flooding
22
+
23
+ ### Improved
24
+ - **Model retry** — one retry with 2s backoff on transient connection failures
25
+ - **Session resume compaction** — auto-compacts on load if over context budget
26
+ - **Memory persistence instruction** — system prompt now encourages the agent to save learnings
27
+
28
+ ### Security
29
+ - Telegram document uploads: filename sanitized (path traversal protection), 10MB size limit
30
+ - File share tool: workspace containment via guardPath
31
+ - Rate limiting prevents denial-of-service via message flooding
32
+ - Per-agent voice IDs read from config only (not from user input)
33
+
34
+ ---
35
+
36
+ ## [1.3.1] — 2026-03-23
37
+
38
+ ### Fixed
39
+ - **STT not working** — local whisper.cpp was selected by default but not installed. Added Groq as the recommended free STT provider (whisper-large-v3-turbo).
40
+ - **STT provider priority:** Groq (free, fast) → OpenAI Whisper → local whisper.cpp
41
+ - **Setup wizard:** STT now offers Groq as option 1 (recommended), OpenAI as option 2, local as option 3
42
+
43
+ ---
44
+
9
45
  ## [1.3.0] — 2026-03-23
10
46
 
11
47
  ### Added