-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 3.02 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
{
"name": "openclaw-dataops-guardian",
"version": "0.3.0",
"private": true,
"license": "MIT",
"type": "module",
"description": "Evidence-gated incident remediation for OpenClaw with Alertmanager, Prometheus, Lobster, and Kubernetes.",
"repository": {
"type": "git",
"url": "git+https://github.com/YingzuoLiu/openclaw-dataops-guardian.git"
},
"bugs": {
"url": "https://github.com/YingzuoLiu/openclaw-dataops-guardian/issues"
},
"homepage": "https://github.com/YingzuoLiu/openclaw-dataops-guardian#readme",
"engines": {
"node": "^22.22.2 || ^24.15.0 || >=26.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"build:runtime": "node scripts/build-runtime.mjs",
"test": "vitest run",
"check": "npm run build && npm test",
"container:build": "bash scripts/build-container-image.sh",
"container:proof": "bash scripts/run-container-image-proof.sh",
"release:source-proof": "bash scripts/run-source-ref-proof.sh",
"demo:fast": "bash scripts/run-final-fast-demo.sh",
"demo": "bash scripts/run-final-demo.sh",
"plugin:inspect": "openclaw plugins inspect dataops-guardian --runtime --json",
"policy:proof": "bash scripts/run-policy-registration-proof.sh",
"hooks:live-proof": "bash scripts/run-live-hook-invocation-proof.sh",
"eval:openrouter:plan": "node scripts/openrouter-ab-plan.mjs smoke",
"eval:openrouter:smoke": "bash scripts/run-openrouter-ab.sh smoke",
"eval:openrouter:formal": "bash scripts/run-openrouter-ab.sh formal",
"proof1:rpc": "node scripts/proof1-rpc.mjs",
"proof2:rpc": "node scripts/proof2-rpc.mjs",
"proof3:rpc": "node scripts/proof3-rpc.mjs",
"slice:rpc": "node scripts/vertical-slice-rpc.mjs",
"slice:proof": "bash scripts/run-vertical-slice-proof.sh",
"state:v3:rpc": "node scripts/incident-state-v3-rpc.mjs",
"state:v3:restart-proof": "bash scripts/run-incident-state-v3-restart-proof.sh",
"state:restart-reconciliation-proof": "bash scripts/run-restart-reconciliation-proof.sh",
"alertmanager:ingestion-proof": "npm run build && node scripts/alertmanager-ingestion-proof.mjs",
"alertmanager:http-bridge-proof": "bash scripts/run-alertmanager-http-bridge-proof.sh",
"kubernetes:kind-rollback-proof": "bash scripts/run-kind-deployment-rollback-proof.sh",
"recovery:kind-prometheus-proof": "bash scripts/run-kind-prometheus-recovery-proof.sh"
},
"dependencies": {
"@kubernetes/client-node": "1.4.0",
"@openclaw/lobster": "2026.6.34",
"typebox": "1.1.39"
},
"peerDependencies": {
"openclaw": ">=2026.6.34"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.0.0",
"openclaw": "2026.6.34",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.6.34",
"minGatewayVersion": "2026.6.34"
},
"build": {
"openclawVersion": "2026.6.34",
"pluginSdkVersion": "2026.6.34"
}
}
}