@kernel.chat/kbot 2.12.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/changelog.d.ts +21 -0
- package/dist/changelog.d.ts.map +1 -0
- package/dist/changelog.js +204 -0
- package/dist/changelog.js.map +1 -0
- package/dist/cli.js +43 -114
- package/dist/cli.js.map +1 -1
- package/dist/completions.d.ts +2 -0
- package/dist/completions.d.ts.map +1 -0
- package/dist/completions.js +526 -0
- package/dist/completions.js.map +1 -0
- package/dist/doctor.d.ts +15 -0
- package/dist/doctor.d.ts.map +1 -0
- package/dist/doctor.js +381 -0
- package/dist/doctor.js.map +1 -0
- package/dist/ide/acp-server.js +1 -1
- package/dist/tutorial.d.ts +3 -0
- package/dist/tutorial.d.ts.map +1 -0
- package/dist/tutorial.js +195 -0
- package/dist/tutorial.js.map +1 -0
- package/package.json +19 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernel.chat/kbot",
|
|
3
|
-
"version": "2.
|
|
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",
|