@clawkeepers/cli 0.1.0-beta.1
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/LICENSE +21 -0
- package/NOTICE +206 -0
- package/README.md +52 -0
- package/dist/bin/clawos.js +2 -0
- package/dist/bin/config-transaction.mjs +56 -0
- package/dist/bin/gateway-rpc.mjs +57 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +6709 -0
- package/dist/templates/blueprints/LICENSE +21 -0
- package/dist/templates/blueprints/NOTICE +206 -0
- package/dist/templates/blueprints/assistant/AGENTS.md +7 -0
- package/dist/templates/blueprints/assistant/README.md +11 -0
- package/dist/templates/blueprints/assistant/SOUL.md +3 -0
- package/dist/templates/blueprints/assistant/blueprint.json +27 -0
- package/dist/templates/blueprints/blueprint.schema.json +148 -0
- package/dist/templates/blueprints/coder/AGENTS.md +7 -0
- package/dist/templates/blueprints/coder/README.md +11 -0
- package/dist/templates/blueprints/coder/SOUL.md +3 -0
- package/dist/templates/blueprints/coder/blueprint.json +30 -0
- package/dist/templates/blueprints/ops/AGENTS.md +7 -0
- package/dist/templates/blueprints/ops/README.md +11 -0
- package/dist/templates/blueprints/ops/SOUL.md +3 -0
- package/dist/templates/blueprints/ops/blueprint.json +27 -0
- package/dist/templates/blueprints/package.json +22 -0
- package/dist/templates/blueprints/researcher/AGENTS.md +7 -0
- package/dist/templates/blueprints/researcher/README.md +11 -0
- package/dist/templates/blueprints/researcher/SOUL.md +3 -0
- package/dist/templates/blueprints/researcher/blueprint.json +30 -0
- package/dist/templates/clawos.conf +10 -0
- package/dist/templates/clawos.lock.json +19 -0
- package/dist/templates/config.d/00-baseline.json5 +26 -0
- package/dist/templates/config.d/05-policy-runtime.json5 +18 -0
- package/dist/templates/config.d/10-plugins.json5 +4 -0
- package/dist/templates/config.d/20-sandbox.json5 +8 -0
- package/dist/templates/config.d/30-agents.json5 +4 -0
- package/dist/templates/config.d/90-local.json5 +2 -0
- package/dist/templates/gatekeepers.json +13 -0
- package/dist/templates/plugins/THIRD-PARTY-NOTICES +23 -0
- package/dist/templates/plugins/catalog.json +1 -0
- package/dist/templates/plugins/clawos-kernel/LICENSE +21 -0
- package/dist/templates/plugins/clawos-kernel/NOTICE +206 -0
- package/dist/templates/plugins/clawos-kernel/THIRD-PARTY-NOTICES +23 -0
- package/dist/templates/plugins/clawos-kernel/config.schema.json +14 -0
- package/dist/templates/plugins/clawos-kernel/dist/index.js +9847 -0
- package/dist/templates/plugins/clawos-kernel/openclaw.plugin.json +137 -0
- package/dist/templates/plugins/clawos-kernel/package.json +1 -0
- package/dist/templates/plugins/gatekeeper-fs/LICENSE +21 -0
- package/dist/templates/plugins/gatekeeper-fs/NOTICE +206 -0
- package/dist/templates/plugins/gatekeeper-fs/THIRD-PARTY-NOTICES +23 -0
- package/dist/templates/plugins/gatekeeper-fs/dist/index.js +9581 -0
- package/dist/templates/plugins/gatekeeper-fs/openclaw.plugin.json +30 -0
- package/dist/templates/plugins/gatekeeper-fs/package.json +1 -0
- package/dist/templates/plugins/install-policy.mjs +4734 -0
- package/package.json +51 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "gatekeeper-fs",
|
|
3
|
+
"name": "Filesystem Gatekeeper",
|
|
4
|
+
"description": "Mediates agent access to specific host directories.",
|
|
5
|
+
"contracts": {
|
|
6
|
+
"tools": []
|
|
7
|
+
},
|
|
8
|
+
"activation": {
|
|
9
|
+
"onStartup": true
|
|
10
|
+
},
|
|
11
|
+
"configSchema": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"additionalProperties": false,
|
|
14
|
+
"properties": {
|
|
15
|
+
"roots": {
|
|
16
|
+
"type": "array",
|
|
17
|
+
"items": {
|
|
18
|
+
"type": "string"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"clawos": {
|
|
24
|
+
"gatekeeper": {
|
|
25
|
+
"vendor": "fs",
|
|
26
|
+
"apiVersion": 1
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"version": "0.1.0-beta.1"
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"@clawkeepers/gatekeeper-fs","version":"0.1.0-beta.1","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"}}}
|