@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.
- package/README.md +49 -13
- 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.
|
|
38
|
+
## What's new in v1.10
|
|
39
39
|
|
|
40
|
-
**
|
|
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
|
-
|
|
42
|
+
### v1.10 — Hive
|
|
43
43
|
|
|
44
|
-
**
|
|
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
|
-
**
|
|
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
|
-
**
|
|
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
|
-
**
|
|
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
|
-
|
|
52
|
+
### v1.9 — Cortex
|
|
53
53
|
|
|
54
|
-
|
|
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
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
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.
|
|
15
|
+
"version": "1.10.0",
|
|
16
16
|
"license": "SEE LICENSE IN LICENSE",
|
|
17
17
|
"optionalDependencies": {
|
|
18
|
-
"@toolkit-cli/toolkode-darwin-arm64": "1.
|
|
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
|
}
|