@gatekeeper-os/cli 0.1.0-beta.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.
Files changed (54) hide show
  1. package/LICENSE +21 -0
  2. package/NOTICE +206 -0
  3. package/README.md +69 -0
  4. package/dist/bin/config-transaction.mjs +56 -0
  5. package/dist/bin/gateway-rpc.mjs +57 -0
  6. package/dist/bin/gkos.js +2 -0
  7. package/dist/index.d.ts +8 -0
  8. package/dist/index.js +6709 -0
  9. package/dist/templates/blueprints/LICENSE +21 -0
  10. package/dist/templates/blueprints/NOTICE +206 -0
  11. package/dist/templates/blueprints/assistant/AGENTS.md +7 -0
  12. package/dist/templates/blueprints/assistant/README.md +11 -0
  13. package/dist/templates/blueprints/assistant/SOUL.md +3 -0
  14. package/dist/templates/blueprints/assistant/blueprint.json +27 -0
  15. package/dist/templates/blueprints/blueprint.schema.json +148 -0
  16. package/dist/templates/blueprints/coder/AGENTS.md +7 -0
  17. package/dist/templates/blueprints/coder/README.md +11 -0
  18. package/dist/templates/blueprints/coder/SOUL.md +3 -0
  19. package/dist/templates/blueprints/coder/blueprint.json +30 -0
  20. package/dist/templates/blueprints/ops/AGENTS.md +7 -0
  21. package/dist/templates/blueprints/ops/README.md +11 -0
  22. package/dist/templates/blueprints/ops/SOUL.md +3 -0
  23. package/dist/templates/blueprints/ops/blueprint.json +27 -0
  24. package/dist/templates/blueprints/package.json +22 -0
  25. package/dist/templates/blueprints/researcher/AGENTS.md +7 -0
  26. package/dist/templates/blueprints/researcher/README.md +11 -0
  27. package/dist/templates/blueprints/researcher/SOUL.md +3 -0
  28. package/dist/templates/blueprints/researcher/blueprint.json +30 -0
  29. package/dist/templates/config.d/00-baseline.json5 +26 -0
  30. package/dist/templates/config.d/05-policy-runtime.json5 +18 -0
  31. package/dist/templates/config.d/10-plugins.json5 +4 -0
  32. package/dist/templates/config.d/20-sandbox.json5 +8 -0
  33. package/dist/templates/config.d/30-agents.json5 +4 -0
  34. package/dist/templates/config.d/90-local.json5 +2 -0
  35. package/dist/templates/gatekeepers.json +13 -0
  36. package/dist/templates/gkos.conf +10 -0
  37. package/dist/templates/gkos.lock.json +19 -0
  38. package/dist/templates/plugins/THIRD-PARTY-NOTICES +23 -0
  39. package/dist/templates/plugins/catalog.json +1 -0
  40. package/dist/templates/plugins/gkos-gatekeeper-fs/LICENSE +21 -0
  41. package/dist/templates/plugins/gkos-gatekeeper-fs/NOTICE +206 -0
  42. package/dist/templates/plugins/gkos-gatekeeper-fs/THIRD-PARTY-NOTICES +23 -0
  43. package/dist/templates/plugins/gkos-gatekeeper-fs/dist/index.js +9581 -0
  44. package/dist/templates/plugins/gkos-gatekeeper-fs/openclaw.plugin.json +30 -0
  45. package/dist/templates/plugins/gkos-gatekeeper-fs/package.json +1 -0
  46. package/dist/templates/plugins/gkos-kernel/LICENSE +21 -0
  47. package/dist/templates/plugins/gkos-kernel/NOTICE +206 -0
  48. package/dist/templates/plugins/gkos-kernel/THIRD-PARTY-NOTICES +23 -0
  49. package/dist/templates/plugins/gkos-kernel/config.schema.json +14 -0
  50. package/dist/templates/plugins/gkos-kernel/dist/index.js +9847 -0
  51. package/dist/templates/plugins/gkos-kernel/openclaw.plugin.json +137 -0
  52. package/dist/templates/plugins/gkos-kernel/package.json +1 -0
  53. package/dist/templates/plugins/install-policy.mjs +4734 -0
  54. package/package.json +51 -0
@@ -0,0 +1,137 @@
1
+ {
2
+ "id": "gkos-kernel",
3
+ "name": "GatekeeperOS Kernel",
4
+ "description": "Capability model, gatekeeper registry, approval queue, and audit for GatekeeperOS.",
5
+ "contracts": {
6
+ "tools": [
7
+ "os_request_access",
8
+ "os_list_grants",
9
+ "gk_fs_dir_list",
10
+ "gk_fs_file_read",
11
+ "gk_fs_file_write",
12
+ "gk_mcp_demo_read_note",
13
+ "gk_mcp_demo_append_note"
14
+ ],
15
+ "trustedToolPolicies": [
16
+ "gkos-capability-policy"
17
+ ],
18
+ "gatewayMethodDispatch": [
19
+ "os.status",
20
+ "os.grants.list",
21
+ "os.grants.introduce",
22
+ "os.grants.revoke",
23
+ "os.approvals.list",
24
+ "os.approvals.apply",
25
+ "os.approvals.reject",
26
+ "os.approvals.revert",
27
+ "os.gatekeepers.list",
28
+ "os.gatekeepers.connect",
29
+ "os.audit.query",
30
+ "os.maintenance.set"
31
+ ]
32
+ },
33
+ "activation": {
34
+ "onStartup": true
35
+ },
36
+ "configSchema": {
37
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
38
+ "type": "object",
39
+ "additionalProperties": false,
40
+ "properties": {
41
+ "operators": {
42
+ "type": "array",
43
+ "items": {
44
+ "type": "object",
45
+ "required": [
46
+ "channel",
47
+ "senderId"
48
+ ],
49
+ "properties": {
50
+ "channel": {
51
+ "type": "string"
52
+ },
53
+ "senderId": {
54
+ "type": "string"
55
+ },
56
+ "name": {
57
+ "type": "string"
58
+ }
59
+ },
60
+ "additionalProperties": false
61
+ }
62
+ },
63
+ "autoApprove": {
64
+ "type": "array",
65
+ "items": {
66
+ "type": "string"
67
+ }
68
+ },
69
+ "install": {
70
+ "type": "object",
71
+ "properties": {
72
+ "allowSources": {
73
+ "type": "array",
74
+ "items": {
75
+ "type": "string"
76
+ }
77
+ },
78
+ "allowHashes": {
79
+ "type": "array",
80
+ "items": {
81
+ "type": "string"
82
+ }
83
+ }
84
+ },
85
+ "additionalProperties": false
86
+ },
87
+ "egress": {
88
+ "type": "object",
89
+ "properties": {
90
+ "denyPatterns": {
91
+ "type": "array",
92
+ "items": {
93
+ "type": "string"
94
+ }
95
+ }
96
+ },
97
+ "additionalProperties": false
98
+ },
99
+ "audit": {
100
+ "type": "object",
101
+ "properties": {
102
+ "llm": {
103
+ "type": "boolean"
104
+ }
105
+ },
106
+ "additionalProperties": false
107
+ },
108
+ "maintenance": {
109
+ "type": "boolean"
110
+ },
111
+ "notify": {
112
+ "type": "object",
113
+ "properties": {
114
+ "channel": {
115
+ "type": "string"
116
+ },
117
+ "target": {
118
+ "type": "string"
119
+ }
120
+ },
121
+ "additionalProperties": false
122
+ }
123
+ }
124
+ },
125
+ "gkos": {
126
+ "kernel": true,
127
+ "apiVersion": 1
128
+ },
129
+ "cliCommands": [
130
+ {
131
+ "name": "os",
132
+ "description": "GatekeeperOS kernel administration",
133
+ "hasSubcommands": true
134
+ }
135
+ ],
136
+ "version": "0.1.0-beta.2"
137
+ }
@@ -0,0 +1 @@
1
+ {"name":"@gatekeeper-os/kernel","version":"0.1.0-beta.2","type":"module","main":"./dist/index.js","license":"MIT","openclaw":{"extensions":["./dist/index.js"],"compat":{"pluginApi":">=2026.9.2 <2026.11.0","minGatewayVersion":"2026.9.2"},"build":{"openclawVersion":"2026.9.2","pluginSdkVersion":"2026.9.2"}}}