0xkobold 0.3.1 ā 0.3.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "0xkobold",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Your digital familiar - a personal AI assistant that learns and evolves (v0.3.0 - Multi-Channel, Security, Media Support)",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* 0xKobold Init Command
|
|
3
3
|
*
|
|
4
|
-
* Sets up the workspace with
|
|
4
|
+
* Sets up the workspace with existing persona system (v0.2.0).
|
|
5
|
+
* Integrates with IDENTITY.md, USER.md, SOUL.md, AGENT.md.
|
|
5
6
|
* No immediate API key required - works out of the box.
|
|
6
7
|
*/
|
|
7
8
|
import { Command } from "commander";
|
|
@@ -10,69 +11,29 @@ import { existsSync } from "node:fs";
|
|
|
10
11
|
import { join } from "node:path";
|
|
11
12
|
import { homedir } from "node:os";
|
|
12
13
|
import { Database } from "bun:sqlite";
|
|
14
|
+
import { createInterface } from "node:readline";
|
|
15
|
+
// Simple prompt helper
|
|
16
|
+
async function ask(question, defaultValue = "") {
|
|
17
|
+
const rl = createInterface({
|
|
18
|
+
input: process.stdin,
|
|
19
|
+
output: process.stdout
|
|
20
|
+
});
|
|
21
|
+
return new Promise((resolve) => {
|
|
22
|
+
const prompt = defaultValue
|
|
23
|
+
? `${question} (${defaultValue}): `
|
|
24
|
+
: `${question}: `;
|
|
25
|
+
rl.question(prompt, (answer) => {
|
|
26
|
+
rl.close();
|
|
27
|
+
resolve(answer.trim() || defaultValue);
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
}
|
|
13
31
|
const GLOBAL_KOBOLD_DIR = join(homedir(), ".0xkobold");
|
|
14
32
|
const GLOBAL_DB_PATH = join(GLOBAL_KOBOLD_DIR, "kobold.db");
|
|
15
33
|
const GLOBAL_CONFIG_PATH = join(GLOBAL_KOBOLD_DIR, "config.json");
|
|
16
|
-
|
|
34
|
+
// Local workspace
|
|
17
35
|
const LOCAL_KOBOLD_DIR = ".0xkobold";
|
|
18
36
|
const LOCAL_DB_PATH = join(LOCAL_KOBOLD_DIR, "workspace.db");
|
|
19
|
-
const LOCAL_MEMORY_PATH = join(LOCAL_KOBOLD_DIR, "MEMORY.md");
|
|
20
|
-
// 0xKobold Persona - Loaded into system prompt
|
|
21
|
-
const KOBOLD_PERSONA = `# 0xKobold Identity
|
|
22
|
-
|
|
23
|
-
## Name
|
|
24
|
-
0xKobold ("Kobold")
|
|
25
|
-
|
|
26
|
-
## Role
|
|
27
|
-
AI coding assistant with a focus on modern TypeScript/Bun development.
|
|
28
|
-
|
|
29
|
-
## Personality
|
|
30
|
-
- Helpful and direct
|
|
31
|
-
- Slightly mischievous (it's in the name)
|
|
32
|
-
- Values clean code and efficiency
|
|
33
|
-
- Prefers working solutions over perfect ones
|
|
34
|
-
|
|
35
|
-
## Capabilities
|
|
36
|
-
- File operations with safety checks
|
|
37
|
-
- Shell command execution (with blocks)
|
|
38
|
-
- Multi-channel communication (Telegram, Slack, WhatsApp)
|
|
39
|
-
- Docker sandboxing for safe execution
|
|
40
|
-
- Semantic memory with SQLite
|
|
41
|
-
- Agent spawning for parallel tasks
|
|
42
|
-
- Gateway server for remote access
|
|
43
|
-
|
|
44
|
-
## Default Behavior
|
|
45
|
-
- LLM: Ollama Cloud (Kimi K2.5)
|
|
46
|
-
- Mode: build (unless investigating)
|
|
47
|
-
- Auto-compact on context overflow
|
|
48
|
-
- Proactive duplicate detection
|
|
49
|
-
|
|
50
|
-
## Style
|
|
51
|
-
- Concise responses for simple tasks
|
|
52
|
-
- Detailed breakdowns for complex ones
|
|
53
|
-
- Code blocks with language tags
|
|
54
|
-
- Error handling with actionable fixes
|
|
55
|
-
`;
|
|
56
|
-
// User memory template
|
|
57
|
-
const MEMORY_TEMPLATE = `# 0xKobold Memory
|
|
58
|
-
|
|
59
|
-
## User Profile
|
|
60
|
-
- Name:
|
|
61
|
-
- Preferences:
|
|
62
|
-
- Goals:
|
|
63
|
-
|
|
64
|
-
## Conversations
|
|
65
|
-
|
|
66
|
-
### Session: {{timestamp}}
|
|
67
|
-
- Context: Initial setup
|
|
68
|
-
- Topics:
|
|
69
|
-
|
|
70
|
-
## Learned Patterns
|
|
71
|
-
|
|
72
|
-
## Active Tasks
|
|
73
|
-
|
|
74
|
-
## Notes
|
|
75
|
-
`;
|
|
76
37
|
// Default config - Ollama Cloud ready
|
|
77
38
|
const DEFAULT_CONFIG = {
|
|
78
39
|
version: "0.3.0",
|
|
@@ -128,11 +89,40 @@ const DEFAULT_CONFIG = {
|
|
|
128
89
|
}
|
|
129
90
|
};
|
|
130
91
|
export const initCommand = new Command("init")
|
|
131
|
-
.description("Initialize 0xKobold workspace with
|
|
92
|
+
.description("Initialize 0xKobold workspace with customizable identity")
|
|
132
93
|
.option("-f, --force", "Overwrite existing files")
|
|
94
|
+
.option("-q, --quick", "Skip interactive prompts")
|
|
133
95
|
.action(async (options) => {
|
|
134
96
|
try {
|
|
135
97
|
console.log("š² 0xKobold Initializing...\n");
|
|
98
|
+
// Interactive onboarding
|
|
99
|
+
let agentName = "Kobold";
|
|
100
|
+
let agentRole = "AI coding assistant with a focus on modern TypeScript/Bun development";
|
|
101
|
+
let agentMission = "Help you write clean, efficient code and automate development workflows";
|
|
102
|
+
let personalityTrait = "Slightly mischievous (it's in the name)";
|
|
103
|
+
let model = "kimi-k2.5:cloud";
|
|
104
|
+
let userName = "Developer";
|
|
105
|
+
let userBackground = "";
|
|
106
|
+
let userGoals = "";
|
|
107
|
+
let userPreferences = "";
|
|
108
|
+
if (!options.quick) {
|
|
109
|
+
console.log("š Let's set up your personalized agent!\n");
|
|
110
|
+
console.log("(Just press Enter to use defaults)\n");
|
|
111
|
+
// Agent identity
|
|
112
|
+
agentName = await ask("š¤ What should I call your agent", "Kobold");
|
|
113
|
+
agentRole = await ask("š Agent's role", "AI coding assistant");
|
|
114
|
+
agentMission = await ask("šÆ Agent's mission", "Help write clean code and automate workflows");
|
|
115
|
+
personalityTrait = await ask("⨠Personality trait", "Slightly mischievous");
|
|
116
|
+
const modelChoice = await ask("š§ Model (kimi-k2.5:cloud / qwen2.5-coder:cloud)", "kimi-k2.5:cloud");
|
|
117
|
+
model = modelChoice;
|
|
118
|
+
console.log("\nš¤ Now tell me about yourself...\n");
|
|
119
|
+
// User profile
|
|
120
|
+
userName = await ask("Your name", "Developer");
|
|
121
|
+
userBackground = await ask("Your background (optional)", "");
|
|
122
|
+
userGoals = await ask("Your goals (optional)", "");
|
|
123
|
+
userPreferences = await ask("Any preferences (optional)", "");
|
|
124
|
+
console.log("\n");
|
|
125
|
+
}
|
|
136
126
|
// Create global directory
|
|
137
127
|
if (!existsSync(GLOBAL_KOBOLD_DIR) || options.force) {
|
|
138
128
|
await mkdir(GLOBAL_KOBOLD_DIR, { recursive: true });
|
|
@@ -170,16 +160,154 @@ export const initCommand = new Command("init")
|
|
|
170
160
|
`);
|
|
171
161
|
db.close();
|
|
172
162
|
console.log("ā Database initialized");
|
|
173
|
-
// Create
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
163
|
+
// Create persona files (v0.2.0 system)
|
|
164
|
+
const timestamp = new Date().toISOString();
|
|
165
|
+
// IDENTITY.md - Agent identity
|
|
166
|
+
const identityContent = `# IDENTITY
|
|
167
|
+
|
|
168
|
+
**Name:** ${agentName}
|
|
169
|
+
**Emoji:** š
|
|
170
|
+
**Tagline:** ${agentMission}
|
|
171
|
+
**Role:** ${agentRole}
|
|
172
|
+
|
|
173
|
+
## Tone
|
|
174
|
+
- ${personalityTrait}
|
|
175
|
+
- Uses emojis occasionally š
|
|
176
|
+
- Celebrates wins with enthusiasm
|
|
177
|
+
- Gentle with mistakes
|
|
178
|
+
`;
|
|
179
|
+
await writeFile(join(GLOBAL_KOBOLD_DIR, "IDENTITY.md"), identityContent, "utf-8");
|
|
180
|
+
console.log(`ā IDENTITY.md created`);
|
|
181
|
+
// SOUL.md - Agent soul/personality
|
|
182
|
+
const soulContent = `# SOUL - Agent Personality
|
|
183
|
+
|
|
184
|
+
## Identity
|
|
185
|
+
**Name:** ${agentName}
|
|
186
|
+
**Role:** ${agentRole}
|
|
187
|
+
**Vibe:** ${personalityTrait}
|
|
188
|
+
|
|
189
|
+
## Tone
|
|
190
|
+
- Style: Clear and conversational
|
|
191
|
+
- Formality: Casual but respectful
|
|
192
|
+
- Humor: Light and appropriate
|
|
193
|
+
|
|
194
|
+
## Core Values
|
|
195
|
+
- Helpfulness: ${agentMission}
|
|
196
|
+
- Honesty: Be truthful about capabilities
|
|
197
|
+
- Learning: Improve from every interaction
|
|
198
|
+
|
|
199
|
+
## Guidelines
|
|
200
|
+
- Ask clarifying questions when needed
|
|
201
|
+
- Provide examples when helpful
|
|
202
|
+
- Admit when unsure or need more info
|
|
203
|
+
`;
|
|
204
|
+
await writeFile(join(GLOBAL_KOBOLD_DIR, "SOUL.md"), soulContent, "utf-8");
|
|
205
|
+
console.log(`ā SOUL.md created`);
|
|
206
|
+
// USER.md - User profile
|
|
207
|
+
const userContent = `# User Profile
|
|
208
|
+
|
|
209
|
+
## Identity
|
|
210
|
+
- **Name**: ${userName || "Developer"}
|
|
211
|
+
- **Role**: ${userBackground || "Not specified"}
|
|
212
|
+
- **Goals**: ${userGoals || "Not specified"}
|
|
213
|
+
- **Preferences**: ${userPreferences || "Not specified"}
|
|
214
|
+
|
|
215
|
+
## Working Style
|
|
216
|
+
- Collaborative and iterative
|
|
217
|
+
- Values clean, maintainable code
|
|
218
|
+
|
|
219
|
+
## Context
|
|
220
|
+
- Using 0xKobold with ${model}
|
|
221
|
+
- Setup: ${timestamp}
|
|
222
|
+
|
|
223
|
+
## Notes
|
|
224
|
+
Add any personal notes here...
|
|
225
|
+
`;
|
|
226
|
+
await writeFile(join(GLOBAL_KOBOLD_DIR, "USER.md"), userContent, "utf-8");
|
|
227
|
+
console.log(`ā USER.md created`);
|
|
228
|
+
// AGENT.md - Agent behavior config
|
|
229
|
+
const agentContent = `# Agent Configuration
|
|
230
|
+
|
|
231
|
+
## Default Behavior
|
|
232
|
+
- Model: ${model}
|
|
233
|
+
- Understand the problem before proposing solutions
|
|
234
|
+
- Ask clarifying questions when needed
|
|
235
|
+
- Provide options with trade-offs
|
|
236
|
+
- Write maintainable, readable code
|
|
237
|
+
|
|
238
|
+
## Code Standards
|
|
239
|
+
- Preferred: TypeScript/Bun
|
|
240
|
+
- Style: Clean, documented
|
|
241
|
+
- Testing: Include where appropriate
|
|
242
|
+
|
|
243
|
+
## Communication Style
|
|
244
|
+
- ${personalityTrait}
|
|
245
|
+
- Clear explanations with examples
|
|
246
|
+
- Honest about limitations
|
|
247
|
+
|
|
248
|
+
## Tool Usage
|
|
249
|
+
- Safe file operations
|
|
250
|
+
- Sandbox for risky commands
|
|
251
|
+
- Gateway for remote access
|
|
252
|
+
`;
|
|
253
|
+
await writeFile(join(GLOBAL_KOBOLD_DIR, "AGENT.md"), agentContent, "utf-8");
|
|
254
|
+
console.log(`ā AGENT.md created`);
|
|
255
|
+
// MEMORY.md - Long-term memory template
|
|
256
|
+
const memoryContent = `# Long-term Memory
|
|
257
|
+
|
|
258
|
+
## User Profile
|
|
259
|
+
- Name: ${userName || "Developer"}
|
|
260
|
+
- Background: ${userBackground || "Not specified"}
|
|
261
|
+
- Goals: ${userGoals || "Not specified"}
|
|
262
|
+
- Preferences: ${userPreferences || "Not specified"}
|
|
263
|
+
|
|
264
|
+
## Agent Context
|
|
265
|
+
- Name: ${agentName}
|
|
266
|
+
- Purpose: ${agentMission}
|
|
267
|
+
- Model: ${model}
|
|
268
|
+
- Created: ${timestamp}
|
|
269
|
+
|
|
270
|
+
## Conversations
|
|
271
|
+
|
|
272
|
+
### Session: ${timestamp}
|
|
273
|
+
- Context: Initial setup
|
|
274
|
+
- Topics:
|
|
275
|
+
|
|
276
|
+
## Learned Patterns
|
|
277
|
+
|
|
278
|
+
## Known Preferences
|
|
279
|
+
- Preferred model: ${model}
|
|
280
|
+
- Agent personality: ${personalityTrait}
|
|
281
|
+
|
|
282
|
+
## Recent Context
|
|
283
|
+
[Updated with current project state]
|
|
284
|
+
|
|
285
|
+
## Notes
|
|
286
|
+
`;
|
|
287
|
+
await writeFile(join(GLOBAL_KOBOLD_DIR, "MEMORY.md"), memoryContent, "utf-8");
|
|
288
|
+
console.log(`ā MEMORY.md created`);
|
|
289
|
+
// Write config with personalized model
|
|
290
|
+
const config = {
|
|
291
|
+
...DEFAULT_CONFIG,
|
|
292
|
+
agent: {
|
|
293
|
+
...DEFAULT_CONFIG.agent,
|
|
294
|
+
name: agentName,
|
|
295
|
+
role: agentRole,
|
|
296
|
+
mission: agentMission
|
|
297
|
+
},
|
|
298
|
+
llm: {
|
|
299
|
+
...DEFAULT_CONFIG.llm,
|
|
300
|
+
providers: {
|
|
301
|
+
...DEFAULT_CONFIG.llm.providers,
|
|
302
|
+
"ollama-cloud": {
|
|
303
|
+
...DEFAULT_CONFIG.llm.providers["ollama-cloud"],
|
|
304
|
+
model
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
};
|
|
309
|
+
await writeFile(GLOBAL_CONFIG_PATH, JSON.stringify(config, null, 2), "utf-8");
|
|
310
|
+
console.log("ā Config created");
|
|
183
311
|
}
|
|
184
312
|
else {
|
|
185
313
|
console.log(`ā¹ļø Config exists: ${GLOBAL_KOBOLD_DIR}`);
|
|
@@ -206,21 +334,32 @@ export const initCommand = new Command("init")
|
|
|
206
334
|
`);
|
|
207
335
|
localDb.close();
|
|
208
336
|
console.log("ā Workspace DB initialized");
|
|
209
|
-
|
|
337
|
+
// Simple local memory template
|
|
338
|
+
const localMemoryContent = `# Project Memory
|
|
339
|
+
|
|
340
|
+
## Context
|
|
341
|
+
Project-specific context goes here.
|
|
342
|
+
|
|
343
|
+
## Notes
|
|
344
|
+
`;
|
|
345
|
+
await writeFile(join(LOCAL_KOBOLD_DIR, "MEMORY.md"), localMemoryContent, "utf-8");
|
|
210
346
|
}
|
|
211
|
-
console.log("\nš
|
|
347
|
+
console.log("\nš " + agentName + " is ready!");
|
|
212
348
|
console.log("\nš Locations:");
|
|
213
349
|
console.log(` Config: ${GLOBAL_CONFIG_PATH}`);
|
|
214
350
|
console.log(` Data: ${GLOBAL_DB_PATH}`);
|
|
215
|
-
console.log(` Persona: ${GLOBAL_KOBOLD_DIR}/
|
|
351
|
+
console.log(` Persona: ${GLOBAL_KOBOLD_DIR}/IDENTITY.md, SOUL.md, USER.md, AGENT.md`);
|
|
216
352
|
console.log(`\n\nš Quick Start:`);
|
|
217
|
-
console.log(
|
|
353
|
+
console.log(` 0xkobold chat # Chat with ${agentName}`);
|
|
218
354
|
console.log(" 0xkobold gateway start # Start web gateway");
|
|
219
355
|
console.log(" 0xkobold daemon # Start background daemon");
|
|
356
|
+
console.log("\nš Manage persona:");
|
|
357
|
+
console.log(" 0xkobold persona list # List persona files");
|
|
358
|
+
console.log(" 0xkobold persona show # View all personas");
|
|
359
|
+
console.log(" 0xkobold persona edit IDENTITY.md # Customize identity");
|
|
220
360
|
console.log("\nš§ To add API keys for paid models:");
|
|
221
361
|
console.log(" export CLOUD_API_KEY=your_key");
|
|
222
362
|
console.log(" # Or edit ~/.0xkobold/config.json");
|
|
223
|
-
console.log("\nā¹ļø Default: Ollama Cloud (free models work without key)");
|
|
224
363
|
}
|
|
225
364
|
catch (error) {
|
|
226
365
|
console.error("ā Init failed:", error);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../../../src/cli/commands/init.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../../../src/cli/commands/init.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "0xkobold",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Your digital familiar - a personal AI assistant that learns and evolves (v0.3.0 - Multi-Channel, Security, Media Support)",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|