@linkedclaw/openclaw-plugin 0.1.8 → 0.1.10

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.
@@ -2,27 +2,74 @@
2
2
  "id": "linkedclaw",
3
3
  "name": "LinkedClaw",
4
4
  "description": "LinkedClaw agent marketplace: expose this OpenClaw agent as a provider on the LinkedClaw relay.",
5
- "version": "0.1.6",
5
+ "version": "0.1.10",
6
+ "activation": {
7
+ "onStartup": true
8
+ },
6
9
  "configSchema": {
7
10
  "type": "object",
8
11
  "additionalProperties": false,
9
12
  "properties": {
10
- "cloudUrl": { "type": "string" },
11
- "serviceUrl": { "type": "string" },
12
- "relayUrl": { "type": "string" },
13
- "apiKey": { "type": "string" },
14
- "agentId": { "type": "string" },
15
- "capabilities": { "type": "array", "items": { "type": "string" } },
16
- "slaTier": { "type": "string" },
17
- "autoStartProvider": { "type": "boolean", "default": true },
18
- "autoAcceptInvokes": { "type": "boolean", "default": true },
19
- "autoAcceptSessions": { "type": "boolean", "default": true },
20
- "autoAcceptGigTasks": { "type": "boolean", "default": false },
21
- "invokeTimeoutMs": { "type": "number", "default": 60000 },
22
- "sessionTurnTimeoutMs": { "type": "number", "default": 60000 },
23
- "gigTaskTimeoutMs": { "type": "number", "default": 300000 },
24
- "maxConcurrentRuns": { "type": "number", "default": 4 },
25
- "perRequesterLimit": { "type": "number", "default": 2 }
13
+ "cloudUrl": {
14
+ "type": "string"
15
+ },
16
+ "serviceUrl": {
17
+ "type": "string"
18
+ },
19
+ "relayUrl": {
20
+ "type": "string"
21
+ },
22
+ "apiKey": {
23
+ "type": "string"
24
+ },
25
+ "agentId": {
26
+ "type": "string"
27
+ },
28
+ "capabilities": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string"
32
+ }
33
+ },
34
+ "slaTier": {
35
+ "type": "string"
36
+ },
37
+ "autoStartProvider": {
38
+ "type": "boolean",
39
+ "default": true
40
+ },
41
+ "autoAcceptInvokes": {
42
+ "type": "boolean",
43
+ "default": true
44
+ },
45
+ "autoAcceptSessions": {
46
+ "type": "boolean",
47
+ "default": true
48
+ },
49
+ "autoAcceptGigTasks": {
50
+ "type": "boolean",
51
+ "default": false
52
+ },
53
+ "invokeTimeoutMs": {
54
+ "type": "number",
55
+ "default": 60000
56
+ },
57
+ "sessionTurnTimeoutMs": {
58
+ "type": "number",
59
+ "default": 60000
60
+ },
61
+ "gigTaskTimeoutMs": {
62
+ "type": "number",
63
+ "default": 300000
64
+ },
65
+ "maxConcurrentRuns": {
66
+ "type": "number",
67
+ "default": 4
68
+ },
69
+ "perRequesterLimit": {
70
+ "type": "number",
71
+ "default": 2
72
+ }
26
73
  }
27
74
  },
28
75
  "uiHints": {
package/package.json CHANGED
@@ -1,13 +1,15 @@
1
1
  {
2
2
  "name": "@linkedclaw/openclaw-plugin",
3
- "version": "0.1.8",
4
- "description": "OpenClaw native plugin for LinkedClaw registers the provider WebSocket service",
3
+ "version": "0.1.10",
4
+ "description": "OpenClaw native plugin for LinkedClaw \u2014 registers the provider WebSocket service",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
9
9
  "openclaw": {
10
- "extensions": ["./dist/index.js"]
10
+ "extensions": [
11
+ "./dist/index.js"
12
+ ]
11
13
  },
12
14
  "files": [
13
15
  "dist",
@@ -41,7 +43,7 @@
41
43
  },
42
44
  "dependencies": {
43
45
  "@linkedclaw/provider": "^0.9.2",
44
- "@linkedclaw/provider-runtime": "^0.9.2"
46
+ "@linkedclaw/provider-runtime": "^0.9.4"
45
47
  },
46
48
  "devDependencies": {
47
49
  "@types/node": "^22.10.0",