@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.
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/src/manifest.test.ts +2 -2
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
package/src/manifest.test.ts
CHANGED
|
@@ -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);
|