0xkobold 0.3.1 ā 0.3.2
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.2",
|
|
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",
|
|
@@ -10,6 +10,23 @@ import { existsSync } from "node:fs";
|
|
|
10
10
|
import { join } from "node:path";
|
|
11
11
|
import { homedir } from "node:os";
|
|
12
12
|
import { Database } from "bun:sqlite";
|
|
13
|
+
import { createInterface } from "node:readline";
|
|
14
|
+
// Simple prompt helper
|
|
15
|
+
async function ask(question, defaultValue = "") {
|
|
16
|
+
const rl = createInterface({
|
|
17
|
+
input: process.stdin,
|
|
18
|
+
output: process.stdout
|
|
19
|
+
});
|
|
20
|
+
return new Promise((resolve) => {
|
|
21
|
+
const prompt = defaultValue
|
|
22
|
+
? `${question} (${defaultValue}): `
|
|
23
|
+
: `${question}: `;
|
|
24
|
+
rl.question(prompt, (answer) => {
|
|
25
|
+
rl.close();
|
|
26
|
+
resolve(answer.trim() || defaultValue);
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
}
|
|
13
30
|
const GLOBAL_KOBOLD_DIR = join(homedir(), ".0xkobold");
|
|
14
31
|
const GLOBAL_DB_PATH = join(GLOBAL_KOBOLD_DIR, "kobold.db");
|
|
15
32
|
const GLOBAL_CONFIG_PATH = join(GLOBAL_KOBOLD_DIR, "config.json");
|
|
@@ -17,18 +34,21 @@ const GLOBAL_MEMORY_PATH = join(GLOBAL_KOBOLD_DIR, "MEMORY.md");
|
|
|
17
34
|
const LOCAL_KOBOLD_DIR = ".0xkobold";
|
|
18
35
|
const LOCAL_DB_PATH = join(LOCAL_KOBOLD_DIR, "workspace.db");
|
|
19
36
|
const LOCAL_MEMORY_PATH = join(LOCAL_KOBOLD_DIR, "MEMORY.md");
|
|
20
|
-
// 0xKobold Persona -
|
|
21
|
-
const
|
|
37
|
+
// 0xKobold Persona Template - Customizable
|
|
38
|
+
const KOBOLD_PERSONA_TEMPLATE = `# {{agentName}} Identity
|
|
22
39
|
|
|
23
40
|
## Name
|
|
24
|
-
|
|
41
|
+
{{agentName}}
|
|
25
42
|
|
|
26
43
|
## Role
|
|
27
|
-
|
|
44
|
+
{{agentRole}}
|
|
45
|
+
|
|
46
|
+
## Mission
|
|
47
|
+
{{agentMission}}
|
|
28
48
|
|
|
29
49
|
## Personality
|
|
30
50
|
- Helpful and direct
|
|
31
|
-
-
|
|
51
|
+
- {{personalityTrait}}
|
|
32
52
|
- Values clean code and efficiency
|
|
33
53
|
- Prefers working solutions over perfect ones
|
|
34
54
|
|
|
@@ -42,7 +62,7 @@ AI coding assistant with a focus on modern TypeScript/Bun development.
|
|
|
42
62
|
- Gateway server for remote access
|
|
43
63
|
|
|
44
64
|
## Default Behavior
|
|
45
|
-
- LLM: Ollama Cloud (
|
|
65
|
+
- LLM: Ollama Cloud ({{model}})
|
|
46
66
|
- Mode: build (unless investigating)
|
|
47
67
|
- Auto-compact on context overflow
|
|
48
68
|
- Proactive duplicate detection
|
|
@@ -53,13 +73,18 @@ AI coding assistant with a focus on modern TypeScript/Bun development.
|
|
|
53
73
|
- Code blocks with language tags
|
|
54
74
|
- Error handling with actionable fixes
|
|
55
75
|
`;
|
|
56
|
-
// User memory template
|
|
57
|
-
const MEMORY_TEMPLATE = `#
|
|
76
|
+
// User memory template with customization
|
|
77
|
+
const MEMORY_TEMPLATE = `# {{agentName}} Memory
|
|
58
78
|
|
|
59
79
|
## User Profile
|
|
60
|
-
- Name:
|
|
61
|
-
-
|
|
62
|
-
- Goals:
|
|
80
|
+
- Name: {{userName}}
|
|
81
|
+
- Background: {{userBackground}}
|
|
82
|
+
- Goals: {{userGoals}}
|
|
83
|
+
- Preferences: {{userPreferences}}
|
|
84
|
+
|
|
85
|
+
## Agent Context
|
|
86
|
+
- Created: {{timestamp}}
|
|
87
|
+
- Purpose: {{agentMission}}
|
|
63
88
|
|
|
64
89
|
## Conversations
|
|
65
90
|
|
|
@@ -128,11 +153,40 @@ const DEFAULT_CONFIG = {
|
|
|
128
153
|
}
|
|
129
154
|
};
|
|
130
155
|
export const initCommand = new Command("init")
|
|
131
|
-
.description("Initialize 0xKobold workspace with
|
|
156
|
+
.description("Initialize 0xKobold workspace with customizable identity")
|
|
132
157
|
.option("-f, --force", "Overwrite existing files")
|
|
158
|
+
.option("-q, --quick", "Skip interactive prompts")
|
|
133
159
|
.action(async (options) => {
|
|
134
160
|
try {
|
|
135
161
|
console.log("š² 0xKobold Initializing...\n");
|
|
162
|
+
// Interactive onboarding
|
|
163
|
+
let agentName = "Kobold";
|
|
164
|
+
let agentRole = "AI coding assistant with a focus on modern TypeScript/Bun development";
|
|
165
|
+
let agentMission = "Help you write clean, efficient code and automate development workflows";
|
|
166
|
+
let personalityTrait = "Slightly mischievous (it's in the name)";
|
|
167
|
+
let model = "kimi-k2.5:cloud";
|
|
168
|
+
let userName = "Developer";
|
|
169
|
+
let userBackground = "";
|
|
170
|
+
let userGoals = "";
|
|
171
|
+
let userPreferences = "";
|
|
172
|
+
if (!options.quick) {
|
|
173
|
+
console.log("š Let's set up your personalized agent!\n");
|
|
174
|
+
console.log("(Just press Enter to use defaults)\n");
|
|
175
|
+
// Agent identity
|
|
176
|
+
agentName = await ask("š¤ What should I call your agent", "Kobold");
|
|
177
|
+
agentRole = await ask("š Agent's role", "AI coding assistant");
|
|
178
|
+
agentMission = await ask("šÆ Agent's mission", "Help write clean code and automate workflows");
|
|
179
|
+
personalityTrait = await ask("⨠Personality trait", "Slightly mischievous");
|
|
180
|
+
const modelChoice = await ask("š§ Model (kimi-k2.5:cloud / qwen2.5-coder:cloud)", "kimi-k2.5:cloud");
|
|
181
|
+
model = modelChoice;
|
|
182
|
+
console.log("\nš¤ Now tell me about yourself...\n");
|
|
183
|
+
// User profile
|
|
184
|
+
userName = await ask("Your name", "Developer");
|
|
185
|
+
userBackground = await ask("Your background (optional)", "");
|
|
186
|
+
userGoals = await ask("Your goals (optional)", "");
|
|
187
|
+
userPreferences = await ask("Any preferences (optional)", "");
|
|
188
|
+
console.log("\n");
|
|
189
|
+
}
|
|
136
190
|
// Create global directory
|
|
137
191
|
if (!existsSync(GLOBAL_KOBOLD_DIR) || options.force) {
|
|
138
192
|
await mkdir(GLOBAL_KOBOLD_DIR, { recursive: true });
|
|
@@ -170,16 +224,49 @@ export const initCommand = new Command("init")
|
|
|
170
224
|
`);
|
|
171
225
|
db.close();
|
|
172
226
|
console.log("ā Database initialized");
|
|
173
|
-
// Create Kobold persona
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
227
|
+
// Create personalized Kobold persona
|
|
228
|
+
const personaContent = KOBOLD_PERSONA_TEMPLATE
|
|
229
|
+
.replace(/\{\{agentName\}\}/g, agentName)
|
|
230
|
+
.replace(/\{\{agentRole\}\}/g, agentRole)
|
|
231
|
+
.replace(/\{\{agentMission\}\}/g, agentMission)
|
|
232
|
+
.replace(/\{\{personalityTrait\}\}/g, personalityTrait)
|
|
233
|
+
.replace(/\{\{model\}\}/g, model);
|
|
234
|
+
await writeFile(join(GLOBAL_KOBOLD_DIR, "persona.md"), personaContent, "utf-8");
|
|
235
|
+
console.log(`ā ${agentName} persona created`);
|
|
236
|
+
// Create personalized memory template
|
|
237
|
+
const timestamp = new Date().toISOString();
|
|
238
|
+
const memoryContent = MEMORY_TEMPLATE
|
|
239
|
+
.replace(/\{\{agentName\}\}/g, agentName)
|
|
240
|
+
.replace(/\{\{userName\}\}/g, userName)
|
|
241
|
+
.replace(/\{\{userBackground\}\}/g, userBackground || "Not specified")
|
|
242
|
+
.replace(/\{\{userGoals\}\}/g, userGoals || "Not specified")
|
|
243
|
+
.replace(/\{\{userPreferences\}\}/g, userPreferences || "Not specified")
|
|
244
|
+
.replace(/\{\{timestamp\}\}/g, timestamp)
|
|
245
|
+
.replace(/\{\{agentMission\}\}/g, agentMission);
|
|
178
246
|
await writeFile(GLOBAL_MEMORY_PATH, memoryContent, "utf-8");
|
|
179
|
-
console.log("ā Memory
|
|
180
|
-
// Write config
|
|
181
|
-
|
|
182
|
-
|
|
247
|
+
console.log("ā Memory saved");
|
|
248
|
+
// Write config with personalized model
|
|
249
|
+
const config = {
|
|
250
|
+
...DEFAULT_CONFIG,
|
|
251
|
+
agent: {
|
|
252
|
+
...DEFAULT_CONFIG.agent,
|
|
253
|
+
name: agentName,
|
|
254
|
+
role: agentRole,
|
|
255
|
+
mission: agentMission
|
|
256
|
+
},
|
|
257
|
+
llm: {
|
|
258
|
+
...DEFAULT_CONFIG.llm,
|
|
259
|
+
providers: {
|
|
260
|
+
...DEFAULT_CONFIG.llm.providers,
|
|
261
|
+
"ollama-cloud": {
|
|
262
|
+
...DEFAULT_CONFIG.llm.providers["ollama-cloud"],
|
|
263
|
+
model
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
};
|
|
268
|
+
await writeFile(GLOBAL_CONFIG_PATH, JSON.stringify(config, null, 2), "utf-8");
|
|
269
|
+
console.log("ā Config created");
|
|
183
270
|
}
|
|
184
271
|
else {
|
|
185
272
|
console.log(`ā¹ļø Config exists: ${GLOBAL_KOBOLD_DIR}`);
|
|
@@ -208,19 +295,19 @@ export const initCommand = new Command("init")
|
|
|
208
295
|
console.log("ā Workspace DB initialized");
|
|
209
296
|
await writeFile(LOCAL_MEMORY_PATH, MEMORY_TEMPLATE, "utf-8");
|
|
210
297
|
}
|
|
211
|
-
console.log("\nš
|
|
298
|
+
console.log("\nš " + agentName + " is ready!");
|
|
212
299
|
console.log("\nš Locations:");
|
|
213
300
|
console.log(` Config: ${GLOBAL_CONFIG_PATH}`);
|
|
214
301
|
console.log(` Data: ${GLOBAL_DB_PATH}`);
|
|
215
302
|
console.log(` Persona: ${GLOBAL_KOBOLD_DIR}/persona.md`);
|
|
216
303
|
console.log(`\n\nš Quick Start:`);
|
|
217
|
-
console.log(
|
|
304
|
+
console.log(` 0xkobold chat # Chat with ${agentName}`);
|
|
218
305
|
console.log(" 0xkobold gateway start # Start web gateway");
|
|
219
306
|
console.log(" 0xkobold daemon # Start background daemon");
|
|
220
307
|
console.log("\nš§ To add API keys for paid models:");
|
|
221
308
|
console.log(" export CLOUD_API_KEY=your_key");
|
|
222
309
|
console.log(" # Or edit ~/.0xkobold/config.json");
|
|
223
|
-
console.log("\n
|
|
310
|
+
console.log("\nš” Tip: Add your projects with: 0xkobold projects add /path/to/project");
|
|
224
311
|
}
|
|
225
312
|
catch (error) {
|
|
226
313
|
console.error("ā Init failed:", error);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../../../src/cli/commands/init.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrC,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAClC,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;
|
|
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.2",
|
|
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",
|