@kernel.chat/kbot 2.13.0 → 2.13.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/README.md +17 -6
- package/dist/cli.js +1 -1
- package/dist/ide/acp-server.js +1 -1
- package/package.json +19 -13
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<strong>K:BOT</strong><br>
|
|
3
|
-
Open-source terminal AI agent. 39 specialists, 167 tools, 19 providers, local-first.
|
|
3
|
+
Open-source terminal AI agent. 39 specialists, 167 tools, 19 providers, local-first. The first CLI agent that evolves its own source code.
|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
6
|
<p align="center">
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
- **19 providers, zero lock-in** — Claude, GPT, Gemini, Mistral, Grok, DeepSeek, SambaNova, Cerebras, OpenRouter, and more
|
|
16
16
|
- **Runs fully offline** — `kbot local` for $0 local AI, no data leaves your machine
|
|
17
17
|
- **Learns your patterns** — remembers what worked, gets faster over time
|
|
18
|
-
- **
|
|
18
|
+
- **39 specialist agents** — auto-routes to the right expert for each task
|
|
19
|
+
- **Self-evolving** — diagnoses its own weaknesses and improves its own code (`/evolve`)
|
|
20
|
+
- **Shell completions** — tab completion for bash, zsh, and fish (`kbot completions zsh`)
|
|
19
21
|
- **MCP server built in** — plug kbot into any IDE as a tool provider
|
|
20
22
|
|
|
21
23
|
## Quick Start
|
|
@@ -34,6 +36,14 @@ kbot local
|
|
|
34
36
|
kbot
|
|
35
37
|
```
|
|
36
38
|
|
|
39
|
+
## What's New in v2.13.0
|
|
40
|
+
|
|
41
|
+
- **Self-evolution engine** — K:BOT diagnoses weaknesses, proposes code changes, validates them (typecheck + tests), and applies improvements automatically (`/evolve`)
|
|
42
|
+
- **Shell completions** — Tab completion for bash, zsh, fish (`kbot completions zsh >> ~/.zshrc`)
|
|
43
|
+
- **Interactive tutorial** — Step-by-step walkthrough for new users (`/tutorial`)
|
|
44
|
+
- **Changelog generator** — Auto-generate release notes from git history (`kbot changelog`)
|
|
45
|
+
- **Doctor diagnostics** — 10-point health check for your setup (`kbot doctor`)
|
|
46
|
+
|
|
37
47
|
## One-Shot Mode
|
|
38
48
|
|
|
39
49
|
```bash
|
|
@@ -43,18 +53,19 @@ kbot "deploy to production"
|
|
|
43
53
|
kbot -p "generate a migration for user roles" > migration.sql
|
|
44
54
|
```
|
|
45
55
|
|
|
46
|
-
## Specialists (
|
|
56
|
+
## Specialists (39)
|
|
47
57
|
|
|
48
58
|
Auto-routed or manual with `kbot --agent <name>`:
|
|
49
59
|
|
|
50
60
|
**Core**: kernel, researcher, coder, writer, analyst
|
|
51
61
|
**Extended**: aesthete, guardian, curator, strategist, infrastructure, quant, investigator, oracle, chronist, sage, communicator, adapter
|
|
52
62
|
**Domain**: physicist, mathematician, biologist, economist, psychologist, engineer, medic, linguist, ethicist, educator, diplomat
|
|
63
|
+
**Creative**: creative, developer, hacker, operator, dreamer
|
|
53
64
|
**Systems**: session, scholar, auditor, benchmarker, synthesizer, debugger
|
|
54
65
|
|
|
55
66
|
## Features
|
|
56
67
|
|
|
57
|
-
- **
|
|
68
|
+
- **167 Tools** — File ops, bash, git, GitHub, web search, Jupyter, Docker sandbox, browser, MCP client
|
|
58
69
|
- **Local-First** — File reads, git, grep run instantly without an API call
|
|
59
70
|
- **Learning Engine** — Patterns, solutions, and user preferences cached across sessions
|
|
60
71
|
- **Mimic Matrix** — Code like Claude Code, Cursor, Copilot, Next.js, React, Rust, Python
|
|
@@ -109,7 +120,7 @@ Works with Claude Code, Cursor, VS Code, Windsurf, Zed, Neovim. Exposes 14 tools
|
|
|
109
120
|
kbot serve --port 7437 --token mysecret
|
|
110
121
|
```
|
|
111
122
|
|
|
112
|
-
REST API exposing all
|
|
123
|
+
REST API exposing all 167 tools for any LLM or automation pipeline.
|
|
113
124
|
|
|
114
125
|
## Commands
|
|
115
126
|
|
|
@@ -136,7 +147,7 @@ REST API exposing all 60+ tools for any LLM or automation pipeline.
|
|
|
136
147
|
|
|
137
148
|
## Web Companion
|
|
138
149
|
|
|
139
|
-
[kernel.chat](https://kernel.chat) — same
|
|
150
|
+
[kernel.chat](https://kernel.chat) — same 39 agents with a visual interface. Free (20 msgs/day).
|
|
140
151
|
|
|
141
152
|
## Links
|
|
142
153
|
|
package/dist/cli.js
CHANGED
|
@@ -23,7 +23,7 @@ import { checkForUpdate, selfUpdate } from './updater.js';
|
|
|
23
23
|
import { runTutorial } from './tutorial.js';
|
|
24
24
|
import { syncOnStartup, schedulePush, flushCloudSync, isCloudSyncEnabled, setCloudToken, getCloudToken } from './cloud-sync.js';
|
|
25
25
|
import chalk from 'chalk';
|
|
26
|
-
const VERSION = '2.13.
|
|
26
|
+
const VERSION = '2.13.1';
|
|
27
27
|
async function main() {
|
|
28
28
|
const program = new Command();
|
|
29
29
|
program
|
package/dist/ide/acp-server.js
CHANGED
|
@@ -11,7 +11,7 @@ import { initBridge, chat, executeCommand, getStatus, getAgents, getContext, get
|
|
|
11
11
|
import { formatDiagnostics } from './lsp-bridge.js';
|
|
12
12
|
const AGENT_IDENTITY = {
|
|
13
13
|
name: 'K:BOT',
|
|
14
|
-
version: '2.13.
|
|
14
|
+
version: '2.13.1',
|
|
15
15
|
description: 'Open-source terminal AI agent — 39 specialists, 167 tools, 19 providers, local-first',
|
|
16
16
|
capabilities: ['chat', 'codeAction', 'diagnostics', 'tools'],
|
|
17
17
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernel.chat/kbot",
|
|
3
|
-
"version": "2.13.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.13.1",
|
|
4
|
+
"description": "Local-first AI agent for your terminal. 39 specialists, 167 tools, 19 providers. Self-evolving, learns your patterns, runs offline with Ollama. Open-source Claude Code alternative.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -24,20 +24,26 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
|
-
"ai",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
27
|
+
"ai-agent",
|
|
28
|
+
"local-ai",
|
|
29
|
+
"terminal-ai",
|
|
30
|
+
"cli-ai",
|
|
31
|
+
"code-generation",
|
|
32
|
+
"ai-coding-assistant",
|
|
33
|
+
"local-first",
|
|
32
34
|
"llm",
|
|
33
|
-
"
|
|
35
|
+
"automation",
|
|
36
|
+
"developer-tools",
|
|
34
37
|
"ollama",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
38
|
+
"claude",
|
|
39
|
+
"gpt",
|
|
40
|
+
"ai-terminal",
|
|
41
|
+
"code-review",
|
|
42
|
+
"self-evolving",
|
|
39
43
|
"multi-model",
|
|
40
|
-
"
|
|
44
|
+
"mcp",
|
|
45
|
+
"shell-assistant",
|
|
46
|
+
"open-source-ai"
|
|
41
47
|
],
|
|
42
48
|
"author": "kernel.chat group",
|
|
43
49
|
"license": "MIT",
|