learning-agent 0.1.0 → 0.2.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/CHANGELOG.md +21 -2
- package/README.md +34 -5
- package/dist/cli.js +758 -16
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +10 -19
package/dist/index.d.ts
CHANGED
|
@@ -64,8 +64,8 @@ declare const LessonSchema: z.ZodObject<{
|
|
|
64
64
|
deleted: z.ZodOptional<z.ZodBoolean>;
|
|
65
65
|
retrievalCount: z.ZodOptional<z.ZodNumber>;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
-
type: "quick" | "full";
|
|
68
67
|
id: string;
|
|
68
|
+
type: "quick" | "full";
|
|
69
69
|
trigger: string;
|
|
70
70
|
insight: string;
|
|
71
71
|
tags: string[];
|
|
@@ -87,8 +87,8 @@ declare const LessonSchema: z.ZodObject<{
|
|
|
87
87
|
deleted?: boolean | undefined;
|
|
88
88
|
retrievalCount?: number | undefined;
|
|
89
89
|
}, {
|
|
90
|
-
type: "quick" | "full";
|
|
91
90
|
id: string;
|
|
91
|
+
type: "quick" | "full";
|
|
92
92
|
trigger: string;
|
|
93
93
|
insight: string;
|
|
94
94
|
tags: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "learning-agent",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Repository-scoped learning system for Claude Code",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -27,16 +27,6 @@
|
|
|
27
27
|
"url": "https://github.com/Nathandela/learning_agent/issues"
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://github.com/Nathandela/learning_agent#readme",
|
|
30
|
-
"scripts": {
|
|
31
|
-
"build": "tsup",
|
|
32
|
-
"dev": "tsup --watch",
|
|
33
|
-
"test": "vitest run",
|
|
34
|
-
"test:watch": "vitest",
|
|
35
|
-
"test:all": "pnpm download-model && vitest run",
|
|
36
|
-
"lint": "tsc --noEmit",
|
|
37
|
-
"download-model": "node ./dist/cli.js download-model",
|
|
38
|
-
"prepublishOnly": "pnpm build"
|
|
39
|
-
},
|
|
40
30
|
"keywords": [
|
|
41
31
|
"claude",
|
|
42
32
|
"learning",
|
|
@@ -45,7 +35,6 @@
|
|
|
45
35
|
],
|
|
46
36
|
"author": "Nathan Delacrétaz",
|
|
47
37
|
"license": "MIT",
|
|
48
|
-
"packageManager": "pnpm@10.28.2",
|
|
49
38
|
"engines": {
|
|
50
39
|
"node": ">=20"
|
|
51
40
|
},
|
|
@@ -66,11 +55,13 @@
|
|
|
66
55
|
"node-llama-cpp": "^3.0.0",
|
|
67
56
|
"zod": "^3.22.0"
|
|
68
57
|
},
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "tsup",
|
|
60
|
+
"dev": "tsup --watch",
|
|
61
|
+
"test": "vitest run",
|
|
62
|
+
"test:watch": "vitest",
|
|
63
|
+
"test:all": "pnpm download-model && vitest run",
|
|
64
|
+
"lint": "tsc --noEmit",
|
|
65
|
+
"download-model": "node ./dist/cli.js download-model"
|
|
75
66
|
}
|
|
76
|
-
}
|
|
67
|
+
}
|