@threads-weave/openclaw-agentic-weave 0.1.0

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,83 @@
1
+ {
2
+ "id": "openclaw-agentic-weave",
3
+ "name": "openclaw-agentic-weave",
4
+ "version": "0.1.2",
5
+ "description": "Connect OpenClaw to a local Threads Weave sidecar and delegated MCP tools.",
6
+ "skills": [
7
+ "skills"
8
+ ],
9
+ "configSchema": {
10
+ "type": "object",
11
+ "additionalProperties": false,
12
+ "properties": {
13
+ "nodeBin": {
14
+ "type": "string",
15
+ "description": "Optional Node.js executable used to launch the Threads Weave sidecar. Defaults to the current OpenClaw runtime."
16
+ },
17
+ "sidecarPath": {
18
+ "type": "string",
19
+ "description": "Optional absolute path, or package-relative path, to threads_weaving_sidecar.cjs. Omit to use the bundled sidecar."
20
+ },
21
+ "serverUrl": {
22
+ "type": "string",
23
+ "description": "Optional override for the Threads Weave server URL. If omitted, first-time pairing falls back to https://threads-weave.com."
24
+ },
25
+ "profile": {
26
+ "type": "string",
27
+ "default": "openclaw",
28
+ "description": "Sidecar profile name used for this plugin."
29
+ },
30
+ "configDir": {
31
+ "type": "string",
32
+ "description": "Optional isolated config directory for plugin-managed sidecar state."
33
+ },
34
+ "secretStorage": {
35
+ "type": "string",
36
+ "enum": [
37
+ "auto",
38
+ "keyring",
39
+ "dpapi",
40
+ "file"
41
+ ],
42
+ "default": "auto",
43
+ "description": "Secret storage backend passed through to the sidecar. Defaults to auto: prefer secure storage first, and during pair or renew fall back locally to file-backed persistence if secure storage is unavailable after a successful exchange."
44
+ },
45
+ "agentName": {
46
+ "type": "string",
47
+ "default": "OpenClaw",
48
+ "description": "Agent name reported during pair/renew and stdio startup."
49
+ },
50
+ "agentProvider": {
51
+ "type": "string",
52
+ "default": "openclaw",
53
+ "description": "Agent provider reported during pair/renew and stdio startup."
54
+ },
55
+ "deviceName": {
56
+ "type": "string",
57
+ "description": "Optional device name reported to the Threads Weave server."
58
+ },
59
+ "autoStart": {
60
+ "type": "boolean",
61
+ "default": false,
62
+ "description": "When true, try to boot the sidecar service on OpenClaw startup."
63
+ },
64
+ "persistSession": {
65
+ "type": "boolean",
66
+ "default": false,
67
+ "description": "Persist the remote MCP session id between plugin restarts."
68
+ },
69
+ "startupTimeoutMs": {
70
+ "type": "integer",
71
+ "minimum": 1000,
72
+ "default": 15000,
73
+ "description": "How long to wait for the sidecar stdio bridge to become ready."
74
+ },
75
+ "requestTimeoutMs": {
76
+ "type": "integer",
77
+ "minimum": 1000,
78
+ "default": 45000,
79
+ "description": "How long the plugin waits for a sidecar JSON-RPC response before failing the request locally."
80
+ }
81
+ }
82
+ }
83
+ }
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "@threads-weave/openclaw-agentic-weave",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "OpenClaw plugin for the Threads Weave sidecar",
6
+ "files": [
7
+ "README.md",
8
+ "index.js",
9
+ "openclaw.plugin.json",
10
+ "tool-definitions.json",
11
+ "skills/**/*",
12
+ "sidecar/**/*"
13
+ ],
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "openclaw": {
18
+ "extensions": [
19
+ "./index.js"
20
+ ]
21
+ }
22
+ }