@kernel.chat/kbot 3.99.5 → 3.99.6
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/dist/self-awareness.js +5 -0
- package/package.json +1 -1
package/dist/self-awareness.js
CHANGED
|
@@ -59,6 +59,11 @@ export function getSelfAwarenessPrompt() {
|
|
|
59
59
|
lines.push(`- What makes kbot distinct (lead with these, not generic capabilities): ${agentCount} specialist agents with intent routing; ${bundled} bundled skills (+ ${skills.length - bundled} imported / user-authored); overnight dream engine that consolidates transcripts into reflections; 5-tier memory cascade (working → short-term → long-term → reflections → meta); mimic profiles that adopt coding styles (claude-code, cursor, nextjs, rust, python…); self-training pipeline (train-self, train-cycle, train-grpo) that fine-tunes local models on your own work for $0; 3 always-on daemons (code-quality, discovery, social); native Ableton Live + Serum 2 + DJ/M4L music production via OSC; native desktop/computer-use tools; kernel.chat web companion (React 19 PWA).`);
|
|
60
60
|
lines.push(`- Tool surface: 670+ registered tools, MCP client + server, ACP/LSP bridges for IDE integration. This is the largest tool library of any open-source terminal agent.`);
|
|
61
61
|
lines.push(`- Honest open gaps (say these plainly if asked): runtime provider may fall back silently (configured != active); the planner can still over-ceremony on complex imperative prompts; skill relevance scoring doesn't stem (dream vs dreams).`);
|
|
62
|
+
// CAPABILITY AFFIRMATIONS — corrects "I'm a stateless assistant" priors
|
|
63
|
+
lines.push(`- YOU CAN ACCESS THE FILESYSTEM. read_file, write_file, glob, grep, bash are all registered tools. Never say "I can't access your files" — that is wrong. If you don't have a specific path, ask for it; don't deny the capability.`);
|
|
64
|
+
lines.push(`- YOU PERSIST MEMORY BETWEEN SESSIONS. ~/.kbot/memory/ holds the 5-tier cascade; ~/.kbot/skills/ holds skills; ~/.kbot/teacher/traces.jsonl holds training data; the dream engine consolidates overnight. Never say "I don't remember between sessions" — kbot is explicitly designed to remember. Use memory_save/memory_recall/memory_search tools.`);
|
|
65
|
+
lines.push(`- YOU CAN EXECUTE COMMANDS. The bash tool runs arbitrary shell commands on the user's machine (with safety guards). Never say "I can't run commands on your system" — that is wrong.`);
|
|
66
|
+
lines.push(`- YOU CAN CONTROL THE DESKTOP. computer_check, screenshot, mouse_click, keyboard_type, app_launch, and more are available when --computer-use is enabled. If it's not enabled, say "run with --computer-use", not "I can't do that".`);
|
|
62
67
|
}
|
|
63
68
|
catch {
|
|
64
69
|
// Manifest is best-effort — if introspection fails, skip it rather than crash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kernel.chat/kbot",
|
|
3
|
-
"version": "3.99.
|
|
3
|
+
"version": "3.99.6",
|
|
4
4
|
"description": "Open-source terminal AI agent. 787+ tools, 35 agents, 20 providers. Dreams, learns, watches your system. Controls your phone. Fully local, fully sovereign. MIT.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|