@linkedclaw/openclaw-plugin 0.1.3

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.
@@ -0,0 +1,58 @@
1
+ {
2
+ "id": "linkedclaw",
3
+ "name": "LinkedClaw",
4
+ "description": "LinkedClaw agent marketplace: expose this OpenClaw agent as a provider on the LinkedClaw relay.",
5
+ "version": "0.1.0",
6
+ "configSchema": {
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "cloudUrl": { "type": "string" },
11
+ "relayUrl": { "type": "string" },
12
+ "apiKey": { "type": "string" },
13
+ "agentId": { "type": "string" },
14
+ "agentName": { "type": "string" },
15
+ "agentDescription": { "type": "string" },
16
+ "capabilities": { "type": "array", "items": { "type": "string" } },
17
+ "slaTier": { "type": "string" },
18
+ "autoStartProvider": { "type": "boolean", "default": true },
19
+ "autoAcceptSessions": { "type": "boolean", "default": true },
20
+ "autoAcceptBroadcasts": { "type": "boolean", "default": false },
21
+ "invokeTimeoutMs": { "type": "number", "default": 30000 },
22
+ "sessionTurnTimeoutMs": { "type": "number", "default": 60000 },
23
+ "broadcastTimeoutMs": { "type": "number", "default": 300000 },
24
+ "maxConcurrentRuns": { "type": "number", "default": 4 },
25
+ "perRequesterLimit": { "type": "number", "default": 2 },
26
+ "provider": { "type": "string" },
27
+ "model": { "type": "string" }
28
+ }
29
+ },
30
+ "uiHints": {
31
+ "apiKey": {
32
+ "label": "LinkedClaw API key",
33
+ "placeholder": "lc_...",
34
+ "sensitive": true
35
+ },
36
+ "agentId": {
37
+ "label": "Agent ID",
38
+ "placeholder": "agt_...",
39
+ "help": "Run `linkedclaw provider register` first to obtain this."
40
+ },
41
+ "capabilities": {
42
+ "label": "Capabilities",
43
+ "help": "List of capability tags this provider advertises, e.g. [\"coding\", \"review\"]."
44
+ },
45
+ "autoAcceptBroadcasts": {
46
+ "label": "Auto-accept broadcasts",
47
+ "advanced": true
48
+ },
49
+ "maxConcurrentRuns": {
50
+ "label": "Max concurrent runs",
51
+ "advanced": true
52
+ },
53
+ "perRequesterLimit": {
54
+ "label": "Per-requester limit",
55
+ "advanced": true
56
+ }
57
+ }
58
+ }
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@linkedclaw/openclaw-plugin",
3
+ "version": "0.1.3",
4
+ "description": "OpenClaw native plugin for LinkedClaw — registers the provider WebSocket service",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "openclaw": {
10
+ "extensions": [
11
+ "./dist/index.js"
12
+ ]
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "openclaw.plugin.json",
17
+ "LICENSE",
18
+ "README.md"
19
+ ],
20
+ "keywords": [
21
+ "linkedclaw",
22
+ "openclaw",
23
+ "plugin",
24
+ "agent",
25
+ "marketplace"
26
+ ],
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/linkedclaw/linkedclaw.git",
30
+ "directory": "integrations/openclaw/linkedclaw-plugin"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "dependencies": {
36
+ "@linkedclaw/provider": "^0.9.1",
37
+ "@linkedclaw/provider-runtime": "^0.9.1"
38
+ },
39
+ "devDependencies": {
40
+ "@types/node": "^22.10.0",
41
+ "tsup": "^8.3.5",
42
+ "typescript": "^5.7.2",
43
+ "vitest": "^2.1.8"
44
+ },
45
+ "engines": {
46
+ "node": ">=20"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "tsup --watch",
51
+ "test": "vitest run",
52
+ "test:watch": "vitest",
53
+ "typecheck": "tsc --noEmit",
54
+ "clean": "rm -rf dist"
55
+ }
56
+ }