@kernel.chat/kbot 3.31.2 → 3.32.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 +28 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
6
|
<p align="center">
|
|
7
|
-
<img src="../../tools/video-assets/demo.gif" alt="kbot demo" width="700">
|
|
7
|
+
<img src="../../tools/video-assets/demo-hero.gif" alt="kbot demo — The Kernel Stack" width="700">
|
|
8
8
|
</p>
|
|
9
9
|
|
|
10
10
|
<p align="center">
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
npm install -g @kernel.chat/kbot
|
|
20
20
|
```
|
|
21
21
|
|
|
22
|
-
**Self-defending AI agent.
|
|
22
|
+
**Self-defending AI agent. 350+ tools. 26 agents. 20 providers. Forges new tools at runtime. Built-in cybersecurity suite. $0 local AI. MIT licensed.**
|
|
23
|
+
|
|
24
|
+
> **New: [The Kernel Stack](./KERNEL_STACK.md)** — the architecture behind kbot + Claude Code. Agentic, self-improving, compound AI. Read the manifesto.
|
|
23
25
|
|
|
24
26
|
---
|
|
25
27
|
|
|
@@ -163,7 +165,7 @@ for await (const event of agent.stream("explain this code")) {
|
|
|
163
165
|
const files = await tools.execute('glob', { pattern: 'src/**/*.ts' })
|
|
164
166
|
console.log(files.result)
|
|
165
167
|
|
|
166
|
-
// List all
|
|
168
|
+
// List all 350+ tools
|
|
167
169
|
console.log(tools.list().map(t => t.name))
|
|
168
170
|
```
|
|
169
171
|
|
|
@@ -504,9 +506,32 @@ Inside the REPL, type `/help` for the full command list.
|
|
|
504
506
|
|
|
505
507
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, adding tools, and creating specialist agents.
|
|
506
508
|
|
|
509
|
+
## Demos
|
|
510
|
+
|
|
511
|
+
<details>
|
|
512
|
+
<summary><strong>Learning Engine</strong> — pattern extraction + skill routing</summary>
|
|
513
|
+
<img src="../../tools/video-assets/demo-learning.gif" alt="kbot learning engine" width="700">
|
|
514
|
+
</details>
|
|
515
|
+
|
|
516
|
+
<details>
|
|
517
|
+
<summary><strong>Agent Routing</strong> — 26 specialists, auto-routed by intent</summary>
|
|
518
|
+
<img src="../../tools/video-assets/demo-agents.gif" alt="kbot agent routing" width="700">
|
|
519
|
+
</details>
|
|
520
|
+
|
|
521
|
+
<details>
|
|
522
|
+
<summary><strong>Self-Defense</strong> — HMAC integrity, injection detection, audit</summary>
|
|
523
|
+
<img src="../../tools/video-assets/demo-defense.gif" alt="kbot self-defense" width="700">
|
|
524
|
+
</details>
|
|
525
|
+
|
|
526
|
+
<details>
|
|
527
|
+
<summary><strong>Local AI</strong> — $0 inference, fully offline</summary>
|
|
528
|
+
<img src="../../tools/video-assets/demo-local-ai.gif" alt="kbot local AI" width="700">
|
|
529
|
+
</details>
|
|
530
|
+
|
|
507
531
|
## Links
|
|
508
532
|
|
|
509
533
|
- [kernel.chat](https://kernel.chat) — Web companion
|
|
534
|
+
- [The Kernel Stack](./KERNEL_STACK.md) — Architecture manifesto
|
|
510
535
|
- [npm](https://www.npmjs.com/package/@kernel.chat/kbot)
|
|
511
536
|
- [Docker Hub](https://hub.docker.com/r/isaacsight/kbot)
|
|
512
537
|
- [Discord](https://discord.gg/kdMauM9abG)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernel.chat/kbot",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.1",
|
|
4
4
|
"description": "The only AI agent that builds its own tools — and defends itself. Self-Defense System: HMAC memory integrity, prompt injection detection, knowledge sanitization, forge verification, anomaly detection, incident logging. Cybersecurity tools: dep_audit, secret_scan, ssl_check, headers_check, cve_lookup, port_scan, owasp_check. Machine-aware situated intelligence: full hardware profiling (CPU, GPU, RAM, display, battery, dev tools), resource-adaptive tool pipeline, memory-pressure throttling, GPU-accelerated model routing. Multi-channel cognitive engine: email agent, iMessage agent, consultation pipeline, Trader agent with paper trading & DeFi, 26 specialist agents, 345+ tools, 20 providers. Finance stack: 31 tools across market data, wallet & swaps, stocks, and sentiment. Synthesis Engine: closed-loop intelligence compounding. Runtime tool forging, Forge Registry, autopoietic health, immune self-audit. Cost-aware model routing, fallback chains, Bayesian skill routing. 11 local models (Llama 3.3, Qwen 3, DeepSeek R1, Codestral 22B). Embedded llama.cpp, MCP server, SDK. MIT.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|