-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.77 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
{
"name": "zara-agent-opc",
"version": "1.2.0",
"type": "module",
"description": "Empathetic AI engineering partner with cognitive memory, multi-agent orchestration, and self-improving reflection loops. Built on Model Context Protocol.",
"author": {
"name": "Aldo Karendra",
"url": "https://github.com/aldok10"
},
"license": "MIT",
"homepage": "https://github.com/aldok10/zara-agent-opc",
"repository": {
"type": "git",
"url": "https://github.com/aldok10/zara-agent-opc.git"
},
"bugs": {
"url": "https://github.com/aldok10/zara-agent-opc/issues"
},
"bin": {
"zara-agent-opc": "./bin/cli.mjs"
},
"files": [
"bin/",
"tools/",
"knowledge/",
".opencode/",
"opencode.json",
"scripts/install.sh",
"scripts/install.ps1",
"AGENTS.md",
"ZARA_CONSTITUTION.md"
],
"keywords": [
"ai-agent",
"multi-agent-system",
"model-context-protocol",
"mcp",
"mcp-server",
"cognitive-memory",
"semantic-embeddings",
"self-improving-ai",
"developer-tools",
"agent-orchestration",
"opencode",
"ai-engineering",
"llm-agent",
"prompt-engineering",
"retrieval-augmented-generation"
],
"engines": {
"node": ">=22.14.0"
},
"dependencies": {
"@huggingface/transformers": "4.2.0"
},
"scripts": {
"test": "node --experimental-sqlite --test --test-concurrency=1 tests/*.test.mjs",
"syntax": "for f in $(find tools .opencode/plugin -name '*.mjs' -type f); do node --check \"$f\" 2>&1 || echo \"FAIL: $f\"; done && echo 'All syntax OK'",
"freshness": "node scripts/knowledge-freshness.mjs",
"postinstall": "node bin/postinstall.mjs"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.11"
},
"optionalDependencies": {
"chromadb": "^3.5.0"
}
}