-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.17 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
{
"name": "agent-shared-context",
"version": "0.1.0",
"description": "Token-saving shared context DB for inter-agent collaboration — L1 index (50 tok/entry) → L2 graph → L3 md. Git-synced, 82% cheaper. Agents share context via git.",
"keywords": ["agent-shared-context", "agent-context", "inter-agent", "ai-agents", "claude-code", "token-optimization", "knowledge-base", "frontmatter", "git-based", "llm-memory", "multi-agent"],
"license": "MIT",
"type": "module",
"bin": {
"agent-shared-context": "./tools/agent-context-init.mjs",
"agent-context": "./tools/agent-context-init.mjs"
},
"files": ["agent-context/", "tools/", "templates/", "docs/", ".claude/skills/", "skills/", "REFERENCES.md", "AGENT.md"],
"engines": {
"node": ">=18"
},
"scripts": {
"check": "node tools/agent-context-index.mjs --check && node tools/agent-context-validate.mjs",
"index": "node tools/agent-context-index.mjs",
"init": "node tools/agent-context-init.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/tak2-08/agent-shared-context.git"
},
"homepage": "https://github.com/tak2-08/agent-shared-context#readme",
"author": "tak2-08"
}