@xshieldai/agent-kernel 2.0.2

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/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@xshieldai/agent-kernel",
3
+ "version": "2.0.2",
4
+ "description": "Agent Kernel (formerly KavachOS) — seccomp-bpf + Falco kernel enforcement for AI agents. Core kernel-enforcement primitive of the xShieldAI Posture Suite.",
5
+ "license": "AGPL-3.0",
6
+ "type": "module",
7
+ "author": "Capt. Anil Sharma <capt.anil.sharma@powerpbox.org>",
8
+ "homepage": "https://kavachos.xshieldai.com",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/rocketlang/aegis.git",
12
+ "directory": "packages/kavachos"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/rocketlang/aegis/issues"
16
+ },
17
+ "keywords": [
18
+ "kavachos",
19
+ "xshieldai",
20
+ "seccomp",
21
+ "falco",
22
+ "ai-agent",
23
+ "kernel-enforcement",
24
+ "ebpf",
25
+ "seccomp-bpf",
26
+ "agent-governance",
27
+ "maritime",
28
+ "pramana",
29
+ "kavach",
30
+ "bpf",
31
+ "ai-security"
32
+ ],
33
+ "bin": {
34
+ "kavachos": "./bin/kavachos"
35
+ },
36
+ "files": [
37
+ "bin/",
38
+ "dist/",
39
+ "README.md",
40
+ "LICENSE"
41
+ ],
42
+ "engines": {
43
+ "bun": ">=1.0.0"
44
+ },
45
+ "scripts": {
46
+ "build": "bun build ../../src/kavachos-cli.ts --target=bun --outfile=dist/kavachos.js && cp ../../src/kernel/cgroup-egress.py dist/cgroup-egress.py && cp ../../src/kernel/apply-seccomp.py dist/apply-seccomp.py",
47
+ "prepublishOnly": "bun run build"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public"
51
+ }
52
+ }