-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.79 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "cortex-memory",
"version": "3.0.1",
"description": "Claude's Cognitive Layer - Zero-cost dual-model memory with MCP Sampling, HyDE search, write gates, and bi-temporal knowledge",
"main": "index.cjs",
"type": "commonjs",
"scripts": {
"test": "node tests/test-core.cjs && node tests/test-hooks.cjs && node tests/test-lads.cjs && node tests/test-sqlite-store.cjs && node tests/test-hyde.cjs && node tests/test-cli-renderer.cjs && node tests/test-adapters.cjs && node tests/test-bitemporal.cjs && node tests/test-decay.cjs && node tests/test-write-gate.cjs && node tests/test-pre-compact.cjs && node tests/test-stop-hook.cjs && node tests/test-elicitation.cjs && node tests/test-sampling-adapter.cjs && node tests/test-markdown-tree-adapter.cjs && node tests/test-obsidian-vault.cjs",
"test:core": "node tests/test-core.cjs",
"test:sqlite": "node tests/test-sqlite-store.cjs",
"test:hooks": "node tests/test-hooks.cjs",
"test:lads": "node tests/test-lads.cjs",
"install-hooks": "node src/scripts/install-hooks.cjs",
"uninstall-hooks": "node src/scripts/uninstall-hooks.cjs",
"status": "node src/scripts/status.cjs",
"cortex": "node src/cortex/server.cjs",
"cli": "node bin/cortex.cjs",
"tui": "node bin/cortex-tui.cjs",
"install-tui": "npm install -g . && chmod +x ./bin/cortex-tui.cjs",
"backfill": "node src/scripts/backfill-vectors.cjs",
"backfill:dry": "node src/scripts/backfill-vectors.cjs --dry-run",
"backfill:force": "node src/scripts/backfill-vectors.cjs --force"
},
"keywords": [
"claude",
"claude-code",
"cortex",
"memory",
"persistent-memory",
"ai",
"llm",
"mcp",
"hooks",
"learning",
"cross-session",
"dual-model"
],
"author": "Roberto Gogoni",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/robertogogoni/cortex-claude.git"
},
"bugs": {
"url": "https://github.com/robertogogoni/cortex-claude/issues"
},
"homepage": "https://github.com/robertogogoni/cortex-claude#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.cjs",
"bin/**/*.cjs",
"src/**/*.cjs",
"README.md",
"LICENSE"
],
"bin": {
"cortex-memory": "./bin/cortex.cjs",
"cortex": "./src/scripts/cli.cjs",
"cortex-tui": "./bin/cortex-tui.cjs",
"cortex-backup": "./bin/cortex-backup.cjs",
"cortex-ingest": "./bin/cortex-ingest.cjs",
"cortex-api": "./src/cortex/api-server.cjs"
},
"directories": {
"test": "tests"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.71.2",
"@inquirer/prompts": "^8.4.1",
"@modelcontextprotocol/sdk": "^1.25.3",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^12.6.2",
"commander": "^13.1.0",
"hnswlib-node": "^3.0.0",
"sqlite-vec": "^0.1.7-alpha.2"
}
}