@tractorscorch/clank 1.7.0 → 1.7.2
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 +35 -0
- package/README.md +19 -2
- package/dist/index.js +429 -71
- package/dist/index.js.map +1 -1
- package/dist/workspace/templates/RUNNER.md +45 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,41 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [1.7.2] — 2026-03-24
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **Agent runner template (RUNNER.md)** — structured playbook for sub-agents with task decomposition, tool patterns, and report format. Automatically injected into system prompt for spawned tasks so the model doesn't have to figure out the approach from scratch
|
|
13
|
+
- **`/compact` command** — save model state, clear context, continue where you left off. Available in TUI and Telegram. Uses the LLM to summarize current task state, then clears the conversation and injects the summary as the starting point
|
|
14
|
+
- **CLI/TUI ASCII banner** — Clank logo displayed on startup in both direct chat and TUI mode
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- **Telegram typing indicator leak** — typing indicator now cleared in `finally` block instead of `try` block, so it always stops even if an error occurs during streaming or message editing. Previously, errors would leave the chat permanently showing "typing..."
|
|
18
|
+
- **Install instructions** — split `npm install` and `clank setup` into separate code blocks in README so copying the block doesn't auto-run setup before install finishes
|
|
19
|
+
- **CLI chat version** — was hardcoded as `v0.1.0`, now shows correct version
|
|
20
|
+
|
|
21
|
+
---
|
|
22
|
+
|
|
23
|
+
## [1.7.1] — 2026-03-23
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
- **Telegram bot menu** — all commands registered with Telegram via `setMyCommands()`, appear when you type `/`
|
|
27
|
+
- **Tool indicators with emojis** — when the agent uses tools, Telegram shows emoji indicators above the response (📄 read\_file, 💻 bash, 🔍 search, 🌐 web, ✏️ edit, 🚀 spawn, etc.)
|
|
28
|
+
- **`/kill <id>` command** — kill a specific background task by short ID (first 8 chars), cascades to children
|
|
29
|
+
- **`/killall` command** — kill all running background tasks
|
|
30
|
+
- **`/version` command** — show Clank version
|
|
31
|
+
- **`/think` per-chat toggle** — actually toggles thinking display per Telegram chat (was a no-op before)
|
|
32
|
+
|
|
33
|
+
### Changed
|
|
34
|
+
- **`/tasks` shows short IDs** — each task now shows its 8-char ID for use with `/kill`
|
|
35
|
+
- **`/status` shows more info** — model, agents, running tasks, thinking state, uptime
|
|
36
|
+
- **`/agents` shows default agent** — includes the default agent and its model, not just custom agents
|
|
37
|
+
- **`/model` shows fallbacks** — displays the full fallback chain
|
|
38
|
+
- **`/agent <name>` works** — actually switches agent by resetting session (was a stub)
|
|
39
|
+
- **Comprehensive docs** — full rewrite of Install Guide and User Guide for v1.7.x features
|
|
40
|
+
- **Website docs page** — new /docs tab on clanksuite.dev with provider table, command reference, and quick start
|
|
41
|
+
|
|
42
|
+
---
|
|
43
|
+
|
|
9
44
|
## [1.7.0] — 2026-03-23
|
|
10
45
|
|
|
11
46
|
### Added
|
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
-
<a href="https://github.com/ItsTrag1c/Clank/releases/latest"><img src="https://img.shields.io/badge/version-1.7.
|
|
12
|
+
<a href="https://github.com/ItsTrag1c/Clank/releases/latest"><img src="https://img.shields.io/badge/version-1.7.2-blue.svg" alt="Version" /></a>
|
|
13
13
|
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License" /></a>
|
|
14
14
|
<a href="https://www.npmjs.com/package/@tractorscorch/clank"><img src="https://img.shields.io/npm/v/@tractorscorch/clank.svg" alt="npm" /></a>
|
|
15
15
|
<a href="https://github.com/ItsTrag1c/Clank/stargazers"><img src="https://img.shields.io/github/stars/ItsTrag1c/Clank.svg" alt="Stars" /></a>
|
|
@@ -56,7 +56,17 @@ Clank is a personal AI gateway — **one daemon, many frontends**. It connects y
|
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
58
|
npm install -g @tractorscorch/clank
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Then run the setup wizard (creates config, picks your model):
|
|
62
|
+
|
|
63
|
+
```bash
|
|
59
64
|
clank setup
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
Start chatting:
|
|
68
|
+
|
|
69
|
+
```bash
|
|
60
70
|
clank
|
|
61
71
|
```
|
|
62
72
|
|
|
@@ -64,7 +74,14 @@ clank
|
|
|
64
74
|
|
|
65
75
|
```bash
|
|
66
76
|
curl -fsSL https://raw.githubusercontent.com/ItsTrag1c/Clank/main/install.sh | bash
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
Then run setup and start:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
67
82
|
clank setup
|
|
83
|
+
```
|
|
84
|
+
```bash
|
|
68
85
|
clank
|
|
69
86
|
```
|
|
70
87
|
|
|
@@ -75,7 +92,7 @@ That's it. Setup auto-detects your local models, configures the gateway, and get
|
|
|
75
92
|
| Platform | Download |
|
|
76
93
|
|----------|----------|
|
|
77
94
|
| **npm** (all platforms) | `npm install -g @tractorscorch/clank` |
|
|
78
|
-
| **macOS** (Apple Silicon) | [Clank_1.7.
|
|
95
|
+
| **macOS** (Apple Silicon) | [Clank_1.7.2_macos](https://github.com/ItsTrag1c/Clank/releases/latest/download/Clank_1.7.2_macos) |
|
|
79
96
|
|
|
80
97
|
## Security Notice
|
|
81
98
|
|