forge-openclaw-plugin 0.2.3 → 0.2.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/README.md CHANGED
@@ -18,7 +18,7 @@ openclaw plugins install ./projects/forge
18
18
  openclaw gateway restart
19
19
  ```
20
20
 
21
- That repo-local path is the fallback only. The published package stays on the SDK `definePluginEntry` entrypoint and does not rename the plugin, routes, tools, or config keys.
21
+ That repo-local path is the fallback only. The published package stays on the SDK `definePluginEntry` entrypoint. The OpenClaw plugin id is `forge-openclaw-plugin`, while the product name stays `Forge` and the CLI namespace stays `forge`.
22
22
 
23
23
  ## Recommended usage
24
24
 
@@ -1,6 +1,6 @@
1
1
  import type { ForgePluginConfig } from "./api-client.js";
2
2
  import type { ForgePluginConfigSchema, ForgePluginRegistrationApi } from "./plugin-sdk-types.js";
3
- export declare const FORGE_PLUGIN_ID = "forge";
3
+ export declare const FORGE_PLUGIN_ID = "forge-openclaw-plugin";
4
4
  export declare const FORGE_PLUGIN_NAME = "Forge";
5
5
  export declare const FORGE_PLUGIN_DESCRIPTION = "Thin OpenClaw adapter for the live Forge /api/v1 collaboration API.";
6
6
  export declare function resolveForgePluginConfig(pluginConfig: unknown): ForgePluginConfig;
@@ -1,6 +1,6 @@
1
1
  import { registerForgePluginCli, registerForgePluginRoutes } from "./routes.js";
2
2
  import { registerForgePluginTools } from "./tools.js";
3
- export const FORGE_PLUGIN_ID = "forge";
3
+ export const FORGE_PLUGIN_ID = "forge-openclaw-plugin";
4
4
  export const FORGE_PLUGIN_NAME = "Forge";
5
5
  export const FORGE_PLUGIN_DESCRIPTION = "Thin OpenClaw adapter for the live Forge /api/v1 collaboration API.";
6
6
  function normalizeString(value, fallback) {
@@ -1,8 +1,8 @@
1
1
  {
2
- "id": "forge",
2
+ "id": "forge-openclaw-plugin",
3
3
  "name": "Forge",
4
4
  "description": "Thin OpenClaw adapter for the live Forge /api/v1 collaboration API.",
5
- "version": "0.2.3",
5
+ "version": "0.2.4",
6
6
  "skills": [
7
7
  "./skills"
8
8
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "forge-openclaw-plugin",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Thin OpenClaw adapter for the live Forge /api/v1 collaboration API.",
5
5
  "type": "module",
6
6
  "license": "MIT",