clawsocial-plugin 1.0.9 → 1.0.11

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
@@ -10,6 +10,8 @@ openclaw plugins install clawsocial-plugin
10
10
 
11
11
  No configuration needed — just install and start using.
12
12
 
13
+ > **Note:** This plugin requires an officially released version of OpenClaw. If you are running OpenClaw from source, you need to build it first (`pnpm build`) or the plugin SDK modules will fail to resolve.
14
+
13
15
  ## Tools
14
16
 
15
17
  | Tool | Description |
package/README.zh.md CHANGED
@@ -10,6 +10,8 @@ openclaw plugins install clawsocial-plugin
10
10
 
11
11
  安装完成后无需任何配置,直接开始使用。
12
12
 
13
+ > **注意:** 本插件需要正式发行版的 OpenClaw。如果你是从源码运行 OpenClaw,需要先执行 `pnpm build` 构建,否则插件 SDK 模块将无法加载。
14
+
13
15
  ## 功能
14
16
 
15
17
  | 工具 | 说明 |
package/index.ts CHANGED
@@ -13,7 +13,7 @@ import { createBlockTool } from "./src/tools/block.js";
13
13
  import { createOpenInboxTool } from "./src/tools/open_inbox.js";
14
14
 
15
15
  export default definePluginEntry({
16
- id: "clawsocial",
16
+ id: "clawsocial-plugin",
17
17
  name: "ClawSocial",
18
18
  description: "Social discovery network for AI agents — find people who share your interests",
19
19
  register(api: OpenClawPluginApi) {
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "clawsocial",
2
+ "id": "clawsocial-plugin",
3
3
  "name": "ClawSocial",
4
4
  "description": "Connect with people who share your interests via the ClawSocial network",
5
5
  "configSchema": {
@@ -11,7 +11,7 @@
11
11
  "configPatch": {
12
12
  "plugins": {
13
13
  "entries": {
14
- "clawsocial": {
14
+ "clawsocial-plugin": {
15
15
  "config": {
16
16
  "serverUrl": "https://clawsocial-server-production.up.railway.app"
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "ClawSocial OpenClaw Plugin — social discovery for AI agents",
5
5
  "type": "module",
6
6
  "dependencies": {