@toolkit-cli/toolkode 1.9.0 → 1.10.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 +49 -13
  2. package/package.json +13 -2
package/README.md CHANGED
@@ -35,33 +35,69 @@ toolkode --prompt "fix the failing tests"
35
35
  toolkode serve
36
36
  ```
37
37
 
38
- ## What's new in v1.5
38
+ ## What's new in v1.10
39
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.
40
+ **v1.10 is the biggest jump since the context rewrite.** From `v1.6` through `v1.10`, Toolkode grew from "good terminal agent" into a much more capable engineering environment: it understands long-running work better, remembers more across sessions, audits its own codebase, watches CI, and starts to coordinate across people as well as agents.
41
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.
42
+ ### v1.10Hive
43
43
 
44
- **Provider management.** The sidebar shows which providers you have connected by name with model counts, plus a clear "+ connect provider" action.
44
+ **CI awareness is built in.** Start a watcher with `/watch ci`, open the dashboard with `/ci`, and Toolkode will keep an eye on recent GitHub Actions runs. Failed runs can be pulled, summarized, and diagnosed directly in the terminal instead of bouncing between browser tabs and logs.
45
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.
46
+ **Cross-session recall is now real.** Toolkode writes session digests from structured memory and lets you search them with `/recall`. Past work is no longer trapped in old transcripts — goals, decisions, touched files, and summaries are available when you need to resume context weeks later.
47
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.
48
+ **Local team presence is visible.** Toolkode now advertises active files over the local network and flags conflicts when two people are working in the same area. It is lightweight, private, and degrades gracefully when mDNS is unavailable.
49
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.
50
+ **Mission Protocol is finally first-class.** `/mission` now runs through the normal command system instead of a special-case prompt path. That means the feature is reachable, visible in session history, and behaves like the rest of Toolkode's command surface.
51
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.
52
+ ### v1.9 Cortex
53
53
 
54
- ### Fixes
54
+ **Code intelligence landed.** `/search` adds semantic code search, `/impact` estimates blast radius from a file or symbol change, and `/health` scores the codebase across complexity, dead code, type safety, and dependency freshness. These are fast, practical tools for real repos, not toy demos.
55
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.
56
+ **The sidebar became operational.** Health status can now stay visible while you work, turning analysis from a one-off command into ambient signal.
57
+
58
+ ### v1.8 Total Recall
59
+
60
+ **Memory stopped being manual.** Toolkode now auto-extracts durable decisions, goals, and constraints from structured session memory and persists them to disk as project memory files. The memory layer also injects the `MEMORY.md` index back into context so saved memories actually influence future turns.
61
+
62
+ **Claude Code memory import is supported.** Existing memory files can be read and imported directly, which makes migration easier and lets teams keep continuity instead of starting from zero.
63
+
64
+ **Memory security is much stricter.** Path validation, containment checks, and safer memory file handling were hardened so the memory system is more trustworthy in real projects.
65
+
66
+ ### v1.7 — Mission Control
67
+
68
+ **Sessions became editable.** You can branch, retry, edit, and copy from message history instead of treating every conversation as a straight line.
69
+
70
+ **Mission Protocol arrived.** Toolkode gained a typed mission state machine, structured worker lifecycle, synthesis, and verification primitives for multi-agent coordination.
71
+
72
+ **Generation can be suspended cleanly.** Session suspend brought background-style generation tracking into the product without forcing you into a separate workflow.
73
+
74
+ ### v1.6 — Signal
75
+
76
+ **Context use became smarter.** Cache Resonance added visibility into prompt-cache behavior so you can see when repeated work is actually being reused instead of paid for again.
77
+
78
+ **Navigation got faster.** Pathfinder made in-session search much quicker, and onboarding plus sidebar polish reduced the amount of UI friction between "I know what I want" and "Toolkode is doing it."
79
+
80
+ ### New commands since v1.6
81
+
82
+ ```text
83
+ /mission structured multi-agent execution
84
+ /search semantic code search
85
+ /impact blast-radius analysis
86
+ /health codebase health report
87
+ /watch ci start CI polling + diagnosis
88
+ /ci open the CI dashboard
89
+ /recall search past session digests
90
+ ```
60
91
 
61
92
  ## Features
62
93
 
63
94
  - **Multi-provider** — Anthropic, OpenAI, Google, OpenRouter, GitHub Copilot, local models via Ollama
64
95
  - **Subagents** — Spawn parallel agents for complex tasks with `team` and `batch` tools
96
+ - **Mission Protocol** — Structured multi-agent coordination with first-class `/mission`
97
+ - **CI watcher** — Watch GitHub Actions with `/watch ci` and inspect failures in `/ci`
98
+ - **Memory intelligence** — Auto-extracted memory, Claude Code import, and cross-session `/recall`
99
+ - **Code intelligence** — Semantic search, impact analysis, and codebase health scoring
100
+ - **Team presence** — Local network presence and file conflict detection
65
101
  - **MCP servers** — Connect external tools via the Model Context Protocol
66
102
  - **Vim mode** — Full vim keybindings in the prompt editor
67
103
  - **Skills marketplace** — 90K+ community skills from skills.sh
package/package.json CHANGED
@@ -12,9 +12,20 @@
12
12
  "scripts": {
13
13
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
14
14
  },
15
- "version": "1.9.0",
15
+ "version": "1.10.0",
16
16
  "license": "SEE LICENSE IN LICENSE",
17
17
  "optionalDependencies": {
18
- "@toolkit-cli/toolkode-darwin-arm64": "1.9.0"
18
+ "@toolkit-cli/toolkode-darwin-arm64": "1.10.0",
19
+ "@toolkit-cli/toolkode-windows-x64": "1.10.0",
20
+ "@toolkit-cli/toolkode-linux-arm64": "1.10.0",
21
+ "@toolkit-cli/toolkode-linux-x64": "1.10.0",
22
+ "@toolkit-cli/toolkode-linux-arm64-musl": "1.10.0",
23
+ "@toolkit-cli/toolkode-linux-x64-musl": "1.10.0",
24
+ "@toolkit-cli/toolkode-darwin-x64-baseline": "1.10.0",
25
+ "@toolkit-cli/toolkode-windows-arm64": "1.10.0",
26
+ "@toolkit-cli/toolkode-linux-x64-baseline": "1.10.0",
27
+ "@toolkit-cli/toolkode-linux-x64-baseline-musl": "1.10.0",
28
+ "@toolkit-cli/toolkode-darwin-x64": "1.10.0",
29
+ "@toolkit-cli/toolkode-windows-x64-baseline": "1.10.0"
19
30
  }
20
31
  }