@newbase-clawchat/openclaw-clawchat 2026.5.12-3 → 2026.5.12-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": "openclaw-clawchat",
3
3
  "kind": "channel",
4
4
  "channels": ["openclaw-clawchat"],
5
- "skills": ["skills"],
5
+ "skills": ["./skills"],
6
6
  "activation": {
7
7
  "onStartup": true,
8
8
  "onChannels": ["openclaw-clawchat"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@newbase-clawchat/openclaw-clawchat",
3
- "version": "2026.5.12-3",
3
+ "version": "2026.5.12-4",
4
4
  "description": "OpenClaw ClawChat channel plugin",
5
5
  "files": [
6
6
  "dist",
@@ -37,7 +37,7 @@ describe("openclaw-clawchat manifest", () => {
37
37
  it("keeps plugin id / channel id / package name aligned", () => {
38
38
  expect(pluginManifest.id).toBe("openclaw-clawchat");
39
39
  expect(pluginManifest.channels).toContain("openclaw-clawchat");
40
- expect(pluginManifest.skills).toEqual(["skills"]);
40
+ expect(pluginManifest.skills).toEqual(["./skills"]);
41
41
  expect(pluginManifest.channelConfigs?.["openclaw-clawchat"]?.label).toBe(
42
42
  "Clawling Chat",
43
43
  );
@@ -155,7 +155,7 @@ describe("openclaw-clawchat manifest", () => {
155
155
 
156
156
  it("publishes the repository-provided ClawChat skill", () => {
157
157
  const pkg = packageJson as PackageJsonWithOpenclaw;
158
- expect(pluginManifest.skills).toEqual(["skills"]);
158
+ expect(pluginManifest.skills).toEqual(["./skills"]);
159
159
  expect(pkg.files).toContain("skills");
160
160
 
161
161
  const skillUrl = new URL("../skills/clawchat/SKILL.md", import.meta.url);