-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@mamdouh-aboammar/agent-kernel",
"version": "1.11.0",
"description": "Local-first governance kernel for AI coding agents \u2014 shared memory, rule distribution, approval inbox, episodic memory archive, MCP tools, and strict enforcement hooks.",
"type": "module",
"bin": {
"agent-kernel": "./bin/agent-kernel-router.mjs",
"ak": "./bin/agent-kernel-router.mjs",
"agent-kernel-search": "./bin/agent-kernel-search.mjs",
"agent-kernel-claude-context-hook": "./bin/agent-kernel-claude-context-hook.mjs",
"agent-kernel-safe-link": "./bin/agent-kernel-safe-link.mjs",
"agent-kernel-safe-git-hook": "./bin/agent-kernel-safe-git-hook.mjs",
"agent-kernel-agent-propose": "./bin/agent-kernel-agent-propose.mjs",
"agent-kernel-failure": "./bin/agent-kernel-failure.mjs",
"agent-kernel-failure-hook": "./bin/agent-kernel-failure-hook.mjs",
"agent-kernel-daemon": "./bin/agent-kernel-daemon.mjs",
"agent-kernel-runtime-doctor": "./bin/agent-kernel-runtime-doctor.mjs",
"agent-kernel-session": "./bin/agent-kernel-session.mjs",
"agent-kernel-context": "./bin/agent-kernel-context.mjs",
"agent-kernel-mode": "./bin/agent-kernel-mode.mjs",
"agent-kernel-agent-write": "./bin/agent-kernel-agent-write.mjs",
"agent-kernel-architecture": "./bin/agent-kernel-architecture.mjs",
"agent-kernel-architecture-hook": "./bin/agent-kernel-architecture-hook.mjs"
},
"files": [
"dist",
"docs",
"examples",
"skills",
"README.md",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md",
"SKILL.md",
"skills.sh.json",
"AGENTS.md",
".claude-plugin",
"bin"
],
"scripts": {
"build": "node scripts/build.mjs",
"dev": "node dist/cli.mjs",
"test": "node scripts/check-version.mjs && node test/smoke.mjs",
"typecheck": "tsc --noEmit",
"lint": "node scripts/lint.mjs && node scripts/lint-bins.mjs && node scripts/lint-modes.mjs && node scripts/check-version.mjs && node scripts/check-doc-links.mjs",
"docs:check": "node scripts/check-doc-links.mjs",
"size": "npm pack --dry-run --ignore-scripts",
"publish:dry": "npm publish --dry-run --access public --ignore-scripts",
"prepack": "node scripts/build.mjs",
"check-version": "node scripts/check-version.mjs"
},
"keywords": [
"agentic-coding",
"ai-agents",
"claude-code",
"codex",
"cursor",
"antigravity",
"AGENTS.md",
"MCP",
"guardrails",
"memory",
"governance",
"local-first",
"episodic-memory",
"failure-lessons",
"error-to-skill",
"agent-rules",
"skills-sh",
"architecture-conformance",
"architecture-guardrails",
"vibe-coding",
"minimax",
"mavis"
],
"author": {
"name": "Mamdouh Aboammar",
"email": "mamdouhfces1997@gmail.com",
"url": "https://github.com/imMamdouhaboammar"
},
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"homepage": "https://github.com/imMamdouhaboammar/agent-kernel#readme",
"bugs": {
"url": "https://github.com/imMamdouhaboammar/agent-kernel/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imMamdouhaboammar/agent-kernel.git"
},
"publishConfig": {
"access": "public",
"tag": "latest",
"provenance": true
},
"devDependencies": {
"typescript": "^5.9.0"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/imMamdouhaboammar"
}
}