@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
package/package.json
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@clawkeepers/cli",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "The clawos binary: install, cells, status, doctor, config apply, backups.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"clawos": "./dist/bin/clawos.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist",
|
|
13
|
+
"LICENSE",
|
|
14
|
+
"NOTICE",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"dependencies": {},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"tsup": "8.5.0",
|
|
20
|
+
"typescript": "5.9.2",
|
|
21
|
+
"vitest": "3.2.4",
|
|
22
|
+
"@types/node": "22.18.0",
|
|
23
|
+
"@clawkeepers/kernel": "0.1.0-beta.1",
|
|
24
|
+
"@clawkeepers/gatekeeper-fs": "0.1.0-beta.1",
|
|
25
|
+
"@clawkeepers/shared": "0.1.0-beta.1"
|
|
26
|
+
},
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/clawkeeper/openclaw-os.git",
|
|
31
|
+
"directory": "packages/clawos-cli"
|
|
32
|
+
},
|
|
33
|
+
"private": false,
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"exports": {
|
|
38
|
+
".": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"import": "./dist/index.js"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=22.22.3"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsup src/index.ts --format esm --dts --clean && node scripts/stage-templates.mjs && node scripts/stage-plugins.mjs",
|
|
48
|
+
"test": "vitest run",
|
|
49
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
50
|
+
}
|
|
51
|
+
}
|