@relaymessenger/openclaw-plugin 0.4.0-staging.5 → 0.4.1-staging.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.
package/README.md
CHANGED
|
@@ -161,8 +161,8 @@ durable ACK and idempotent REST reply.
|
|
|
161
161
|
|
|
162
162
|
`contracts/relay-v1.lock.json` records the compatibility boundary used by this
|
|
163
163
|
candidate: Relay Server commit
|
|
164
|
-
`
|
|
165
|
-
`
|
|
164
|
+
`24c577e9802e07d6c61718ebca12e84d79113727`, OpenAPI SHA-256
|
|
165
|
+
`cf83012c6b241e60323543adb7059b49954fbf3d59d4d1fd1817bbfa19d32cdd`,
|
|
166
166
|
public `ChatHandle.image_url` and `ChatHandle.about` fields with no legacy
|
|
167
167
|
aliases,
|
|
168
168
|
and the exact `@relaymessenger/sdk@0.3.0-staging.8` registry integrity, source
|
|
@@ -171,14 +171,14 @@ frames consumed by the plugin.
|
|
|
171
171
|
|
|
172
172
|
Public CI hashes the checked-in `contracts/relay-openapi.yaml` fixture and
|
|
173
173
|
requires the locked digest above. Set `RELAY_SERVER_SOURCE_DIR` to an exact
|
|
174
|
-
checkout of Server `
|
|
174
|
+
checkout of Server `24c577e9802e07d6c61718ebca12e84d79113727` to additionally prove
|
|
175
175
|
that the fixture bytes match the committed source before packaging. The public Relay-SDK monorepo does not require credentials for the
|
|
176
176
|
private Server source and does not overstate what npm metadata can attest.
|
|
177
177
|
|
|
178
|
-
`contracts/relay-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
the
|
|
184
|
-
|
|
178
|
+
`contracts/relay-v1.lock.json` records the exact `@relaymessenger/sdk`
|
|
179
|
+
version this plugin ships against and the sha512 npm stores as that tarball's
|
|
180
|
+
`dist.integrity`. Validation reads the packument, downloads the registry
|
|
181
|
+
tarball, hashes it against the lock, and checks the installed SDK's version and
|
|
182
|
+
types. Production publishes carry no npm attestation (Blacksmith runners), so
|
|
183
|
+
the tarball bytes are the receipt. These are artifact compatibility checks,
|
|
184
|
+
not a claim of a hosted Relay deployment test.
|
|
@@ -1,22 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"relayServer": {
|
|
3
3
|
"repository": "RelayMessenger/Relay-Server",
|
|
4
|
-
"commit": "
|
|
4
|
+
"commit": "24c577e9802e07d6c61718ebca12e84d79113727",
|
|
5
5
|
"openapiPath": "contracts/developer/openapi.yaml",
|
|
6
|
-
"sha256": "
|
|
6
|
+
"sha256": "cf83012c6b241e60323543adb7059b49954fbf3d59d4d1fd1817bbfa19d32cdd"
|
|
7
7
|
},
|
|
8
8
|
"relaySdk": {
|
|
9
9
|
"package": "@relaymessenger/sdk",
|
|
10
|
-
"version": "0.3.
|
|
11
|
-
"integrity": "sha512-
|
|
10
|
+
"version": "0.3.1-staging.0",
|
|
11
|
+
"integrity": "sha512-8yY4qSWSry6U5Qin0DDpZ0njIs4l3G2nFDy5UU96sZnusLPsa464+sgc2TXVS918INlfremD/W+ODtpqcK4oow==",
|
|
12
12
|
"operationsSha256": "e25d720257c2dc5286dda6bd3936395c7d7f333bd3bbdc996d45c13ad49eee9a",
|
|
13
|
-
"
|
|
14
|
-
"workspaceOpenapiSha256": "df402b9bebcce58be2f7fa2e0a193e68896d7d34a6e4581dc4e5446a7854ab84",
|
|
15
|
-
"source": {
|
|
16
|
-
"repository": "RelayMessenger/Relay-SDK",
|
|
17
|
-
"commit": "1bbcb486b4a91860ee3527ce95d015883e4cc1ae",
|
|
18
|
-
"carriedOpenapiSha256": "067370af16135965ece42796ca81c7141071c8ab8b7926a3a506b35111e10b9a"
|
|
19
|
-
},
|
|
13
|
+
"workspaceOpenapiSha256": "cf83012c6b241e60323543adb7059b49954fbf3d59d4d1fd1817bbfa19d32cdd",
|
|
20
14
|
"usedOperations": [
|
|
21
15
|
{
|
|
22
16
|
"method": "GET",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@relaymessenger/openclaw-plugin",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1-staging.0",
|
|
4
4
|
"description": "Native Relay channel plugin for OpenClaw",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"LICENSE",
|
|
16
16
|
"README.md",
|
|
17
17
|
"contracts/relay-v1.lock.json",
|
|
18
|
-
"contracts/relay-sdk-0.3.0-staging.8.registry.json",
|
|
19
18
|
"openclaw.plugin.json",
|
|
20
19
|
"index.ts",
|
|
21
20
|
"setup-entry.ts",
|
|
@@ -38,7 +37,7 @@
|
|
|
38
37
|
"prepack": "npm run build"
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
|
-
"@relaymessenger/sdk": "0.3.
|
|
40
|
+
"@relaymessenger/sdk": "0.3.1-staging.0"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
44
43
|
"@types/node": "^26.0.0",
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schema": "relay-sdk-registry-receipt/v1",
|
|
3
|
-
"source": {
|
|
4
|
-
"repository": "RelayMessenger/Relay-SDK",
|
|
5
|
-
"commit": "1bbcb486b4a91860ee3527ce95d015883e4cc1ae",
|
|
6
|
-
"packageJsonPath": "packages/sdk/package.json",
|
|
7
|
-
"packageJsonSha256": "f14819a908e4a8e52dd37b33bb4eca9dabc4557e2404861f639aa5b857c8a252",
|
|
8
|
-
"contractPath": "contracts/relay-v1-openapi.yaml",
|
|
9
|
-
"contractSha256": "067370af16135965ece42796ca81c7141071c8ab8b7926a3a506b35111e10b9a"
|
|
10
|
-
},
|
|
11
|
-
"registry": {
|
|
12
|
-
"packumentUrl": "https://registry.npmjs.org/@relaymessenger%2fsdk",
|
|
13
|
-
"package": "@relaymessenger/sdk",
|
|
14
|
-
"version": "0.3.0-staging.8",
|
|
15
|
-
"publishedAt": "2026-09-03T04:57:20.074Z",
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/RelayMessenger/Relay-SDK.git",
|
|
19
|
-
"directory": "packages/sdk"
|
|
20
|
-
},
|
|
21
|
-
"publishConfig": {
|
|
22
|
-
"access": "public",
|
|
23
|
-
"registry": "https://registry.npmjs.org/",
|
|
24
|
-
"tag": "staging"
|
|
25
|
-
},
|
|
26
|
-
"distTagsObserved": {
|
|
27
|
-
"latest": "0.3.0-staging.7",
|
|
28
|
-
"staging": "0.3.0-staging.8",
|
|
29
|
-
"mutable": true
|
|
30
|
-
},
|
|
31
|
-
"dist": {
|
|
32
|
-
"tarball": "https://registry.npmjs.org/@relaymessenger/sdk/-/sdk-0.3.0-staging.8.tgz",
|
|
33
|
-
"integrity": "sha512-Db1gn5iQ7ZNrGHPudE4gRW+3H1w4tCluAkGAvXAxyJMBBScySa622BaKpTilmNP7vRFxzoL4tM65n8So0QY/KA==",
|
|
34
|
-
"shasum": "0848b0ff709dfead87fc5e477f07e690508e0296",
|
|
35
|
-
"sha256": "a7662ffbbfce19dc67cee3e80e1f91f7730d5156efd199403f70bc73b2175059",
|
|
36
|
-
"bytes": 38558,
|
|
37
|
-
"fileCount": 37,
|
|
38
|
-
"unpackedSize": 175590,
|
|
39
|
-
"signatureMetadata": [
|
|
40
|
-
{
|
|
41
|
-
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
|
|
42
|
-
"sig": "MEUCIQCx3Ud82JPGoZfCpgz/SqV2Y8rvBI+PISIq2X0GRybNogIgdl6SKAgkEk0Y0kRsXVQBWn6ERoJhF1aOMl0V49EYPQo="
|
|
43
|
-
}
|
|
44
|
-
],
|
|
45
|
-
"attestations": {
|
|
46
|
-
"url": "https://registry.npmjs.org/-/npm/v1/attestations/@relaymessenger%2fsdk@0.3.0-staging.8",
|
|
47
|
-
"provenance": {
|
|
48
|
-
"predicateType": "https://slsa.dev/provenance/v1"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"installedArtifact": {
|
|
53
|
-
"packageJsonSha256": "f14819a908e4a8e52dd37b33bb4eca9dabc4557e2404861f639aa5b857c8a252",
|
|
54
|
-
"typesSha256": "ccde213c68bb0b4198268a59f16a438f0f168a947c19222397c002c2177239aa"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"provenanceBoundary": {
|
|
58
|
-
"registryGitHead": null,
|
|
59
|
-
"registryAttestations": {
|
|
60
|
-
"url": "https://registry.npmjs.org/-/npm/v1/attestations/@relaymessenger%2fsdk@0.3.0-staging.8",
|
|
61
|
-
"provenance": {
|
|
62
|
-
"predicateType": "https://slsa.dev/provenance/v1"
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"attestationEndpoint": "https://registry.npmjs.org/-/npm/v1/attestations/@relaymessenger%2fsdk@0.3.0-staging.8",
|
|
66
|
-
"attestationEndpointObservedStatus": 200,
|
|
67
|
-
"attestationJsonSha256": "6996f583f884a4302487cb3bc8d0d982266f2559275487426d108f03883947fc",
|
|
68
|
-
"slsa": {
|
|
69
|
-
"predicateType": "https://slsa.dev/provenance/v1",
|
|
70
|
-
"subject": {
|
|
71
|
-
"name": "pkg:npm/%40relaymessenger/sdk@0.3.0-staging.8",
|
|
72
|
-
"digest": {
|
|
73
|
-
"sha512": "0dbd609f9890ed936b1873ee744e20456fb71f5c38b4296e024180bd7031c8930105273249aeb6d8168aa538a598d3fbbd1171ce82f8b4ceb99fc4a8d1063f28"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
"workflow": {
|
|
77
|
-
"ref": "refs/heads/staging",
|
|
78
|
-
"repository": "https://github.com/RelayMessenger/Relay-SDK",
|
|
79
|
-
"path": ".github/workflows/publish-package-staging.yml"
|
|
80
|
-
},
|
|
81
|
-
"resolvedDependency": {
|
|
82
|
-
"uri": "git+https://github.com/RelayMessenger/Relay-SDK@refs/heads/staging",
|
|
83
|
-
"digest": {
|
|
84
|
-
"gitCommit": "1bbcb486b4a91860ee3527ce95d015883e4cc1ae"
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"builder": "https://github.com/actions/runner/github-hosted",
|
|
88
|
-
"invocationId": "https://github.com/RelayMessenger/Relay-SDK/actions/runs/33716843172/attempts/1"
|
|
89
|
-
},
|
|
90
|
-
"claim": "The exact registry tarball, npm signature, and SLSA provenance are recorded. The SLSA statement binds the published tarball digest to Relay-SDK staging commit 1bbcb486b4a91860ee3527ce95d015883e4cc1ae through the trusted staging publish workflow, and the package.json bytes match that commit."
|
|
91
|
-
}
|
|
92
|
-
}
|