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 +2 -0
- package/README.zh.md +2 -0
- package/index.ts +1 -1
- package/openclaw.plugin.json +2 -2
- package/package.json +1 -1
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
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) {
|
package/openclaw.plugin.json
CHANGED
|
@@ -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
|
}
|