@toolkit-cli/toolkode 1.4.1 → 1.9.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.
Files changed (2) hide show
  1. package/README.md +23 -0
  2. package/package.json +2 -30
package/README.md CHANGED
@@ -35,6 +35,29 @@ toolkode --prompt "fix the failing tests"
35
35
  toolkode serve
36
36
  ```
37
37
 
38
+ ## What's new in v1.5
39
+
40
+ **Your conversations last longer and remember more.** We completely rebuilt how Toolkode manages context. Long sessions no longer lose track of what you asked for, what files you were editing, or what errors you hit. When the context window fills up, Toolkode summarizes the older history while keeping your recent work intact — instead of compressing everything at once.
41
+
42
+ **Click to switch models.** The sidebar now shows your model name, and you can click it to change models instantly. Same for the agent mode. On the home screen, trending models are clickable — if you don't have the provider connected, clicking takes you straight to the setup flow. Two clicks from "I want that model" to using it.
43
+
44
+ **Provider management.** The sidebar shows which providers you have connected by name with model counts, plus a clear "+ connect provider" action.
45
+
46
+ **Agent inspector.** Click "Agents" in the sidebar to see what your sub-agents are doing. See their status, task, duration, files modified, and tools used. Send a nudge to steer them or stop them if they're stuck.
47
+
48
+ **Agents finish what they start.** When a sub-agent goes idle with unfinished tasks, Toolkode automatically sends it a continuation prompt. No more babysitting agents that complete 80% and then go idle.
49
+
50
+ **Clickable sidebar.** The model, agent mode, providers, MCP servers, and git sections are all clickable now. Click "commit" in the git section when you have changes. Click a provider to manage it.
51
+
52
+ **Safe auto-updater.** Toolkode checks for updates on startup and shows a subtle sidebar banner when a new version is available. It detects your install method (npm, Homebrew, bun, pnpm, curl) and suggests the right command. Updates require explicit confirmation and won't run while a session is active.
53
+
54
+ ### Fixes
55
+
56
+ - Arrow keys no longer hijacked by filter tabs in model picker and agent inspector. Filter cycling is now ctrl+left/right.
57
+ - Compaction no longer triggers prematurely on tool-heavy sessions.
58
+ - Free-tier models from third-party providers no longer auto-connect without explicit user action.
59
+ - All dialogs now adapt to terminal width — usable on 80-col tmux panes through 176-col ultrawides.
60
+
38
61
  ## Features
39
62
 
40
63
  - **Multi-provider** — Anthropic, OpenAI, Google, OpenRouter, GitHub Copilot, local models via Ollama
package/package.json CHANGED
@@ -12,37 +12,9 @@
12
12
  "scripts": {
13
13
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
14
14
  },
15
- "version": "1.4.1",
15
+ "version": "1.9.0",
16
16
  "license": "SEE LICENSE IN LICENSE",
17
- "description": "The AI engineering terminal. Free. Write code. Run agents. Ship faster.",
18
- "homepage": "https://toolkode.com",
19
- "repository": {
20
- "type": "git",
21
- "url": "https://github.com/aaronmrosenthal/toolkode-releases"
22
- },
23
- "keywords": [
24
- "ai",
25
- "terminal",
26
- "coding-agent",
27
- "cli",
28
- "llm",
29
- "code-generation",
30
- "subagents",
31
- "mcp",
32
- "toolkode"
33
- ],
34
17
  "optionalDependencies": {
35
- "@toolkit-cli/toolkode-darwin-arm64": "1.4.1",
36
- "@toolkit-cli/toolkode-darwin-x64-baseline": "1.4.1",
37
- "@toolkit-cli/toolkode-darwin-x64": "1.4.1",
38
- "@toolkit-cli/toolkode-linux-arm64-musl": "1.4.1",
39
- "@toolkit-cli/toolkode-linux-arm64": "1.4.1",
40
- "@toolkit-cli/toolkode-linux-x64-baseline-musl": "1.4.1",
41
- "@toolkit-cli/toolkode-linux-x64-baseline": "1.4.1",
42
- "@toolkit-cli/toolkode-linux-x64-musl": "1.4.1",
43
- "@toolkit-cli/toolkode-linux-x64": "1.4.1",
44
- "@toolkit-cli/toolkode-windows-arm64": "1.4.1",
45
- "@toolkit-cli/toolkode-windows-x64-baseline": "1.4.1",
46
- "@toolkit-cli/toolkode-windows-x64": "1.4.1"
18
+ "@toolkit-cli/toolkode-darwin-arm64": "1.9.0"
47
19
  }
48
20
  }