agent-journal 0.1.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/LICENSE +21 -0
- package/README.md +140 -0
- package/dist/index.js +1952 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-journal",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Persistent knowledge base & journal for coding agents.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Anees Iqbal <anees@usesimple.ai>",
|
|
8
|
+
"homepage": "https://github.com/steelbrain/agent-journal#readme",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/steelbrain/agent-journal.git"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/steelbrain/agent-journal/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"model-context-protocol",
|
|
19
|
+
"agent",
|
|
20
|
+
"memory",
|
|
21
|
+
"knowledge-base",
|
|
22
|
+
"journal",
|
|
23
|
+
"sqlite",
|
|
24
|
+
"embeddings",
|
|
25
|
+
"vector-search",
|
|
26
|
+
"fts5"
|
|
27
|
+
],
|
|
28
|
+
"bin": {
|
|
29
|
+
"agent-journal": "dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=20"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"build": "node scripts/build.mjs",
|
|
41
|
+
"dev": "tsx src/index.ts",
|
|
42
|
+
"format": "biome format --write .",
|
|
43
|
+
"format:check": "biome format .",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"typecheck": "tsc --noEmit",
|
|
46
|
+
"prepack": "npm run build"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@huggingface/transformers": "^4.2.0",
|
|
50
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
51
|
+
"better-sqlite3": "^12.11.1",
|
|
52
|
+
"sqlite-vec": "^0.1.0",
|
|
53
|
+
"ulid": "^3.0.2",
|
|
54
|
+
"zod": "^4.4.3"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@biomejs/biome": "^2.5.1",
|
|
58
|
+
"@types/better-sqlite3": "^7.6.0",
|
|
59
|
+
"@types/node": "^20.0.0",
|
|
60
|
+
"esbuild": "^0.28.1",
|
|
61
|
+
"tsx": "^4.0.0",
|
|
62
|
+
"typescript": "^6.0.3",
|
|
63
|
+
"vitest": "^4.1.9"
|
|
64
|
+
}
|
|
65
|
+
}
|