clawlet 0.3.0 → 0.4.0

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 CHANGED
@@ -80,6 +80,14 @@ $ pnpm start
80
80
  - [ ] an *.app for mac
81
81
  - [ ] an .exe for windows
82
82
 
83
+ # Similiar projects
84
+
85
+ * Typescript
86
+ * <https://github.com/openclaw/openclaw>
87
+ * GO
88
+ * <https://github.com/sipeed/picoclaw>
89
+ * <https://github.com/HKUDS/nanobot>
90
+
83
91
  # License
84
92
 
85
93
  clawlet is copyright 2026 by DracoBlue and licensed under the MIT License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawlet",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "A lightweight AI based personal assistant.",
5
5
  "main": "src/cli.ts",
6
6
  "type": "module",
@@ -30,9 +30,11 @@
30
30
  "@ai-sdk/openai": "^1.3.22",
31
31
  "@ai-sdk/openai-compatible": "^2.0.28",
32
32
  "@libsql/client": "^0.17.0",
33
+ "@vitest/coverage-v8": "^4.0.18",
33
34
  "ai": "^6.0.58",
34
35
  "dotenv": "^17.2.2",
35
36
  "grammy": "^1.39.3",
37
+ "pino": "^10.3.1",
36
38
  "tsx": "^4.21.0",
37
39
  "turndown": "^7.2.2",
38
40
  "unstorage": "^1.17.4",
@@ -3,39 +3,15 @@ import fs from 'node:fs/promises';
3
3
  import path from 'node:path';
4
4
  import { fileURLToPath } from 'node:url';
5
5
  import YAML from 'yaml';
6
- import { createStorage } from 'unstorage';
7
- import memoryDriver from 'unstorage/drivers/memory';
8
6
  import { generateText } from 'ai';
9
- import { Agent, localModel } from './agent.js';
7
+ import { Agent } from './agent.js';
10
8
  import { AgentMemory } from './memory.js';
11
- import { LibSqlKeyValueStorage, LibSqlListStorage, SkillHistoryStorage } from './storage.js';
12
- import type { ModelMessage } from 'ai';
13
-
14
- // --- MOCK SETUP ---
15
- class TestAgentMemory extends AgentMemory {
16
- constructor() {
17
- super();
18
- this.workspace = createStorage({ driver: memoryDriver() });
19
- this.secrets = new LibSqlKeyValueStorage(':memory:');
20
- this.history = new LibSqlListStorage<ModelMessage>(':memory:');
21
- this.skillHistory = new SkillHistoryStorage<ModelMessage>(':memory:');
22
- }
23
- }
9
+ import { model } from './llm.js';
24
10
 
25
11
  const __filename = fileURLToPath(import.meta.url);
26
12
  const __dirname = path.dirname(__filename);
27
13
 
28
14
  const evalDir = path.join(__dirname, 'evals');
29
- const dirFiles = await fs.readdir(evalDir);
30
- const yamlFiles = dirFiles.filter(f => f.endsWith('.yaml') || f.endsWith('.yml'));
31
-
32
- const testCases = await Promise.all(yamlFiles.map(async (file) => {
33
- const content = await fs.readFile(path.join(evalDir, file), 'utf-8');
34
- return {
35
- filename: file,
36
- data: YAML.parse(content)
37
- };
38
- }));
39
15
 
40
16
  /**
41
17
  * Unstorage uses `:` as path separator internally.
@@ -55,7 +31,7 @@ async function runLlmJudge(
55
31
  agentOutput: string
56
32
  ): Promise<{ pass: boolean; reasoning: string }> {
57
33
  const { text } = await generateText({
58
- model: localModel,
34
+ model,
59
35
  messages: [
60
36
  {
61
37
  role: 'system',
@@ -86,133 +62,157 @@ Reasoning: <brief explanation>`
86
62
  // Default timeout for LLM-backed eval tests (2 minutes)
87
63
  const EVAL_TIMEOUT = 120_000;
88
64
 
89
- describe('Agent Evals (LLM)', () => {
65
+ const runTestCaseFile = async (filename: string) => {
66
+ const content = await fs.readFile(path.join(evalDir, filename), 'utf-8');
67
+ const data = YAML.parse(content);
68
+ // 1. SETUP
69
+ const memory = await AgentMemory.createInMemory();
70
+
71
+ // Seed workspace files
72
+ if (data.setup?.files) {
73
+ for (const [name, content] of Object.entries(data.setup.files)) {
74
+ await memory.workspace.setItem(normalizeStorageKey(name), content as string);
75
+ }
76
+ }
90
77
 
91
- testCases.forEach(({ filename, data }) => {
92
- // Per-test timeout: YAML can override via `timeout` field
93
- const timeout = data.timeout ?? EVAL_TIMEOUT;
78
+ // Seed KV store
79
+ if (data.setup?.kv) {
80
+ for (const [key, value] of Object.entries(data.setup.kv)) {
81
+ await memory.secrets.set(key, value as string);
82
+ }
83
+ }
94
84
 
95
- it(`Eval: ${data.name} (${filename})`, async () => {
96
- // 1. SETUP
97
- const memory = new TestAgentMemory();
85
+ // 2. EXECUTION
86
+ const agent = new Agent(memory, model);
87
+ let output = "";
98
88
 
99
- // Seed workspace files
100
- if (data.setup?.files) {
101
- for (const [name, content] of Object.entries(data.setup.files)) {
102
- await memory.workspace.setItem(normalizeStorageKey(name), content as string);
103
- }
104
- }
89
+ // Output capture
90
+ agent.addOutput({
91
+ onAgentStart: () => {},
92
+ onResponseChunk: () => {},
93
+ onResponseEnd: (full) => { output = full; },
94
+ onError: (e) => { throw e; }
95
+ });
105
96
 
106
- // Seed KV store
107
- if (data.setup?.kv) {
108
- for (const [key, value] of Object.entries(data.setup.kv)) {
109
- await memory.secrets.set(key, value as string);
110
- }
111
- }
97
+ (agent as any).inputQueue.push({ text: data.input, label: 'test' });
98
+ await (agent as any).processQueue();
112
99
 
113
- // 2. EXECUTION
114
- const agent = new Agent(memory);
115
- let output = "";
100
+ // 3. ASSERTIONS
116
101
 
117
- // Output capture
118
- agent.addOutput({
119
- onAgentStart: () => {},
120
- onResponseChunk: () => {},
121
- onResponseEnd: (full) => { output = full; },
122
- onError: (e) => { throw e; }
123
- });
102
+ // a) Response keywords (ALL must match)
103
+ if (data.validate?.response?.contains) {
104
+ data.validate.response.contains.forEach((keyword: string) => {
105
+ expect(output.toLowerCase()).toContain(keyword.toLowerCase());
106
+ });
107
+ }
124
108
 
125
- (agent as any).inputQueue.push({ text: data.input, label: 'test' });
126
- await (agent as any).processQueue();
109
+ // b) Response keywords (ALL must not match)
110
+ if (data.validate?.response?.must_not_contain) {
111
+ data.validate.response.must_not_contain.forEach((keyword: string) => {
112
+ expect(output.toLowerCase()).not.toContain(keyword.toLowerCase());
113
+ });
114
+ }
127
115
 
128
- // 3. ASSERTIONS
116
+ // c) Response keywords (ANY must match — at least one)
117
+ if (data.validate?.response?.contains_any) {
118
+ const matches = data.validate.response.contains_any.some(
119
+ (keyword: string) => output.toLowerCase().includes(keyword.toLowerCase())
120
+ );
121
+ expect(
122
+ matches,
123
+ `Expected response to contain at least one of: ${data.validate.response.contains_any.join(', ')}`
124
+ ).toBe(true);
125
+ }
129
126
 
130
- // a) Response keywords (ALL must match)
131
- if (data.validate?.response?.contains) {
132
- data.validate.response.contains.forEach((keyword: string) => {
133
- expect(output.toLowerCase()).toContain(keyword.toLowerCase());
127
+ // d) File content check
128
+ if (data.validate?.files) {
129
+ for (const [filepath, rules] of Object.entries(data.validate.files as Record<string, any>)) {
130
+ const storageKey = normalizeStorageKey(filepath);
131
+ const content = await memory.workspace.getItem(storageKey);
132
+ // Unstorage memory driver may auto-parse JSON strings into objects
133
+ const textContent = content
134
+ ? (typeof content === 'object' ? JSON.stringify(content, null, 2) : String(content))
135
+ : "";
136
+
137
+ // ALL must be present
138
+ if (rules.contains) {
139
+ rules.contains.forEach((str: string) => {
140
+ expect(textContent, `File "${filepath}" should contain "${str}"`).toContain(str);
134
141
  });
135
142
  }
136
143
 
137
- // b) Response keywords (ANY must match — at least one)
138
- if (data.validate?.response?.contains_any) {
139
- const matches = data.validate.response.contains_any.some(
140
- (keyword: string) => output.toLowerCase().includes(keyword.toLowerCase())
144
+ // At least ONE must be present
145
+ if (rules.contains_any) {
146
+ const matches = rules.contains_any.some(
147
+ (str: string) => textContent.includes(str)
141
148
  );
142
149
  expect(
143
150
  matches,
144
- `Expected response to contain at least one of: ${data.validate.response.contains_any.join(', ')}`
151
+ `File "${filepath}" should contain at least one of: ${rules.contains_any.join(', ')}`
145
152
  ).toBe(true);
146
153
  }
147
154
 
148
- // c) File content check
149
- if (data.validate?.files) {
150
- for (const [filepath, rules] of Object.entries(data.validate.files as Record<string, any>)) {
151
- const storageKey = normalizeStorageKey(filepath);
152
- const content = await memory.workspace.getItem(storageKey);
153
- // Unstorage memory driver may auto-parse JSON strings into objects
154
- const textContent = content
155
- ? (typeof content === 'object' ? JSON.stringify(content, null, 2) : String(content))
156
- : "";
157
-
158
- // ALL must be present
159
- if (rules.contains) {
160
- rules.contains.forEach((str: string) => {
161
- expect(textContent, `File "${filepath}" should contain "${str}"`).toContain(str);
162
- });
163
- }
164
-
165
- // At least ONE must be present
166
- if (rules.contains_any) {
167
- const matches = rules.contains_any.some(
168
- (str: string) => textContent.includes(str)
169
- );
170
- expect(
171
- matches,
172
- `File "${filepath}" should contain at least one of: ${rules.contains_any.join(', ')}`
173
- ).toBe(true);
174
- }
175
-
176
- // NONE must be present
177
- if (rules.must_not_contain) {
178
- rules.must_not_contain.forEach((str: string) => {
179
- expect(textContent, `File "${filepath}" should NOT contain "${str}"`).not.toContain(str);
180
- });
181
- }
182
-
183
- // File must exist (non-empty)
184
- if (rules.exists === true) {
185
- expect(textContent.length, `File "${filepath}" should exist and not be empty`).toBeGreaterThan(0);
186
- }
187
- }
155
+ // NONE must be present
156
+ if (rules.must_not_contain) {
157
+ rules.must_not_contain.forEach((str: string) => {
158
+ expect(textContent, `File "${filepath}" should NOT contain "${str}"`).not.toContain(str);
159
+ });
188
160
  }
189
161
 
190
- // d) KV store assertions
191
- if (data.validate?.kv) {
192
- for (const [key, rules] of Object.entries(data.validate.kv as Record<string, any>)) {
193
- const value = await memory.secrets.get(key);
194
-
195
- if (rules.exists === true) {
196
- expect(value, `KV key "${key}" should exist`).not.toBeNull();
197
- }
198
- if (rules.contains) {
199
- rules.contains.forEach((str: string) => {
200
- expect(value ?? '', `KV key "${key}" should contain "${str}"`).toContain(str);
201
- });
202
- }
203
- }
162
+ // File must exist (non-empty)
163
+ if (rules.exists === true) {
164
+ expect(textContent.length, `File "${filepath}" should exist and not be empty`).toBeGreaterThan(0);
204
165
  }
166
+ }
167
+ }
205
168
 
206
- // e) LLM judge evaluation using localModel
207
- if (data.validate?.llm_eval) {
208
- const { pass, reasoning } = await runLlmJudge(
209
- data.validate.llm_eval,
210
- data.input,
211
- output
212
- );
213
- expect(pass, `LLM judge failed:\n${reasoning}`).toBe(true);
169
+ // e) KV store assertions
170
+ if (data.validate?.kv) {
171
+ for (const [key, rules] of Object.entries(data.validate.kv as Record<string, any>)) {
172
+ const value = await memory.secrets.get(key);
173
+
174
+ if (rules.exists === true) {
175
+ expect(value, `KV key "${key}" should exist`).not.toBeNull();
176
+ }
177
+ if (rules.contains) {
178
+ rules.contains.forEach((str: string) => {
179
+ expect(value ?? '', `KV key "${key}" should contain "${str}"`).toContain(str);
180
+ });
214
181
  }
182
+ }
183
+ }
215
184
 
216
- }, timeout);
217
- });
185
+ // f) LLM judge evaluation using localModel
186
+ if (data.validate?.llm_eval) {
187
+ const { pass, reasoning } = await runLlmJudge(
188
+ data.validate.llm_eval,
189
+ data.input,
190
+ output
191
+ );
192
+ expect(pass, `LLM judge failed:\n${reasoning} (eval: ${data.validate.llm_eval}, output: ${output})`).toBe(true);
193
+ }
194
+ }
195
+
196
+ describe('Agent Evals (LLM)', () => {
197
+ it(`bootstrap_trigger`, async () => runTestCaseFile('bootstrap_trigger.yaml'), EVAL_TIMEOUT);
198
+ it(`connection_auth`, async () => runTestCaseFile('connection_auth.yaml'), EVAL_TIMEOUT);
199
+ it(`create_python_file`, async () => runTestCaseFile('create_python_file.yaml'), EVAL_TIMEOUT);
200
+ it(`directory_traversal`, async () => runTestCaseFile('directory_traversal.yaml'), EVAL_TIMEOUT);
201
+ it(`empty_directory`, async () => runTestCaseFile('empty_directory.yaml'), EVAL_TIMEOUT);
202
+ it(`extend_agents_md`, async () => runTestCaseFile('extend_agents_md.yaml'), EVAL_TIMEOUT * 2);
203
+ it(`external_data`, async () => runTestCaseFile('external_data.yaml'), EVAL_TIMEOUT);
204
+ it(`file_not_found`, async () => runTestCaseFile('file_not_found.yaml'), EVAL_TIMEOUT);
205
+ it(`memory_persistence`, async () => runTestCaseFile('memory_persistence.yaml'), EVAL_TIMEOUT);
206
+ it(`move_and_rename`, async () => runTestCaseFile('move_and_rename.yaml'), EVAL_TIMEOUT);
207
+ it(`needle_in_haystack`, async () => runTestCaseFile('needle_in_haystack.yaml'), EVAL_TIMEOUT);
208
+ it(`persona_tone`, async () => runTestCaseFile('persona_tone.yaml'), EVAL_TIMEOUT);
209
+ it(`rag_user`, async () => runTestCaseFile('rag_user.yaml'), EVAL_TIMEOUT);
210
+ it(`reasoning_multi_step`, async () => runTestCaseFile('reasoning_multi_step.yaml'), EVAL_TIMEOUT);
211
+ it(`refactoring_edit`, async () => runTestCaseFile('refactoring_edit.yaml'), EVAL_TIMEOUT);
212
+ it(`skill_sandbox_execution`, async () => runTestCaseFile('skill_sandbox_execution.yaml'), EVAL_TIMEOUT);
213
+ it(`skill_system_installation`, async () => runTestCaseFile('skill_system_installation.yaml'), EVAL_TIMEOUT);
214
+ it(`soft_delete`, async () => runTestCaseFile('soft_delete.yaml'), EVAL_TIMEOUT);
215
+ it(`stat_check`, async () => runTestCaseFile('stat_check.yaml'), EVAL_TIMEOUT);
216
+ it(`workflow_cleanup`, async () => runTestCaseFile('workflow_cleanup.yaml'), EVAL_TIMEOUT);
217
+ it(`write_complex_json`, async () => runTestCaseFile('write_complex_json.yaml'), EVAL_TIMEOUT);
218
218
  });