@linkedclaw/openclaw-plugin 0.1.3 → 0.1.4

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,7 +2,7 @@
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.0",
5
+ "version": "0.1.4",
6
6
  "configSchema": {
7
7
  "type": "object",
8
8
  "additionalProperties": false,
@@ -14,13 +14,27 @@
14
14
  "agentName": { "type": "string" },
15
15
  "agentDescription": { "type": "string" },
16
16
  "capabilities": { "type": "array", "items": { "type": "string" } },
17
+ "capabilitiesMeta": {
18
+ "type": "object",
19
+ "additionalProperties": {
20
+ "type": "object",
21
+ "additionalProperties": false,
22
+ "required": ["description"],
23
+ "properties": {
24
+ "description": { "type": "string" },
25
+ "has_side_effects": { "type": "boolean" },
26
+ "schema_url": { "type": "string" },
27
+ "schema_digest": { "type": "string" }
28
+ }
29
+ }
30
+ },
17
31
  "slaTier": { "type": "string" },
18
32
  "autoStartProvider": { "type": "boolean", "default": true },
19
33
  "autoAcceptSessions": { "type": "boolean", "default": true },
20
- "autoAcceptBroadcasts": { "type": "boolean", "default": false },
34
+ "autoAcceptGigTasks": { "type": "boolean", "default": false },
21
35
  "invokeTimeoutMs": { "type": "number", "default": 30000 },
22
36
  "sessionTurnTimeoutMs": { "type": "number", "default": 60000 },
23
- "broadcastTimeoutMs": { "type": "number", "default": 300000 },
37
+ "gigTaskTimeoutMs": { "type": "number", "default": 300000 },
24
38
  "maxConcurrentRuns": { "type": "number", "default": 4 },
25
39
  "perRequesterLimit": { "type": "number", "default": 2 },
26
40
  "provider": { "type": "string" },
@@ -42,8 +56,12 @@
42
56
  "label": "Capabilities",
43
57
  "help": "List of capability tags this provider advertises, e.g. [\"coding\", \"review\"]."
44
58
  },
45
- "autoAcceptBroadcasts": {
46
- "label": "Auto-accept broadcasts",
59
+ "capabilitiesMeta": {
60
+ "label": "Capability metadata",
61
+ "help": "Per-capability descriptions and optional input schema metadata."
62
+ },
63
+ "autoAcceptGigTasks": {
64
+ "label": "Auto-accept gig tasks",
47
65
  "advanced": true
48
66
  },
49
67
  "maxConcurrentRuns": {
package/package.json CHANGED
@@ -1,15 +1,13 @@
1
1
  {
2
2
  "name": "@linkedclaw/openclaw-plugin",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "OpenClaw native plugin for LinkedClaw — 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": [
11
- "./dist/index.js"
12
- ]
10
+ "extensions": ["./dist/index.js"]
13
11
  },
14
12
  "files": [
15
13
  "dist",
@@ -32,9 +30,18 @@
32
30
  "publishConfig": {
33
31
  "access": "public"
34
32
  },
33
+ "scripts": {
34
+ "build": "tsup",
35
+ "dev": "tsup --watch",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "typecheck": "tsc --noEmit",
39
+ "clean": "rm -rf dist",
40
+ "prepublishOnly": "npm run clean && npm run build && npm run typecheck"
41
+ },
35
42
  "dependencies": {
36
- "@linkedclaw/provider": "^0.9.1",
37
- "@linkedclaw/provider-runtime": "^0.9.1"
43
+ "@linkedclaw/provider": "^0.9.2",
44
+ "@linkedclaw/provider-runtime": "^0.9.2"
38
45
  },
39
46
  "devDependencies": {
40
47
  "@types/node": "^22.10.0",
@@ -44,13 +51,5 @@
44
51
  },
45
52
  "engines": {
46
53
  "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
54
  }
56
- }
55
+ }