@tractorscorch/clank 1.6.0 → 1.7.1
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 +39 -0
- package/README.md +2 -2
- package/dist/index.js +1069 -195
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,45 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/).
|
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## [1.7.1] — 2026-03-23
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- **Telegram bot menu** — all commands registered with Telegram via `setMyCommands()`, appear when you type `/`
|
|
13
|
+
- **Tool indicators with emojis** — when the agent uses tools, Telegram shows emoji indicators above the response (📄 read\_file, 💻 bash, 🔍 search, 🌐 web, ✏️ edit, 🚀 spawn, etc.)
|
|
14
|
+
- **`/kill <id>` command** — kill a specific background task by short ID (first 8 chars), cascades to children
|
|
15
|
+
- **`/killall` command** — kill all running background tasks
|
|
16
|
+
- **`/version` command** — show Clank version
|
|
17
|
+
- **`/think` per-chat toggle** — actually toggles thinking display per Telegram chat (was a no-op before)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- **`/tasks` shows short IDs** — each task now shows its 8-char ID for use with `/kill`
|
|
21
|
+
- **`/status` shows more info** — model, agents, running tasks, thinking state, uptime
|
|
22
|
+
- **`/agents` shows default agent** — includes the default agent and its model, not just custom agents
|
|
23
|
+
- **`/model` shows fallbacks** — displays the full fallback chain
|
|
24
|
+
- **`/agent <name>` works** — actually switches agent by resetting session (was a stub)
|
|
25
|
+
- **Comprehensive docs** — full rewrite of Install Guide and User Guide for v1.7.x features
|
|
26
|
+
- **Website docs page** — new /docs tab on clanksuite.dev with provider table, command reference, and quick start
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## [1.7.0] — 2026-03-23
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- **OpenAI Codex OAuth** — sign in with your ChatGPT Plus/Pro account to use Codex models without API costs. Full Authorization Code + PKCE flow with browser-based login, token refresh, and credential storage
|
|
34
|
+
- **`clank auth` commands** — `clank auth login` (OAuth flow), `clank auth status` (show credentials), `clank auth logout` (remove credentials)
|
|
35
|
+
- **OpenCode provider** — subscription-based API at `opencode.ai/zen` with many models
|
|
36
|
+
- **Sub-agent depth control** — configurable `maxSpawnDepth` (default 1) prevents infinite nesting. Depth 0 = main, depth 1+ = sub-agent. Leaf agents cannot spawn further
|
|
37
|
+
- **Sub-agent concurrent limits** — configurable `maxConcurrent` (default 8) prevents resource exhaustion
|
|
38
|
+
- **Task kill/steer/message** — parent agents can kill running tasks (with cascade), restart with new instructions (steer), or send messages to running children
|
|
39
|
+
- **Parent-child task tree** — tasks track their children and parent for full tree visibility
|
|
40
|
+
- **Sub-agent system prompt** — spawned agents are told who spawned them and whether they can spawn further
|
|
41
|
+
- **`task.kill` RPC** — kill tasks from Web UI and TUI
|
|
42
|
+
|
|
43
|
+
### Changed
|
|
44
|
+
- **Spawn system depth-aware** — any agent within the depth limit can spawn (not just the default agent), enabling orchestrator → worker patterns
|
|
45
|
+
|
|
46
|
+
---
|
|
47
|
+
|
|
9
48
|
## [1.6.0] — 2026-03-23
|
|
10
49
|
|
|
11
50
|
### 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.
|
|
12
|
+
<a href="https://github.com/ItsTrag1c/Clank/releases/latest"><img src="https://img.shields.io/badge/version-1.7.1-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>
|
|
@@ -75,7 +75,7 @@ That's it. Setup auto-detects your local models, configures the gateway, and get
|
|
|
75
75
|
| Platform | Download |
|
|
76
76
|
|----------|----------|
|
|
77
77
|
| **npm** (all platforms) | `npm install -g @tractorscorch/clank` |
|
|
78
|
-
| **macOS** (Apple Silicon) | [Clank_1.
|
|
78
|
+
| **macOS** (Apple Silicon) | [Clank_1.7.1_macos](https://github.com/ItsTrag1c/Clank/releases/latest/download/Clank_1.7.1_macos) |
|
|
79
79
|
|
|
80
80
|
## Security Notice
|
|
81
81
|
|