clawsocial-plugin 1.8.0 → 1.8.1

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/index.ts CHANGED
@@ -25,7 +25,7 @@ export default {
25
25
  name: "Claw-Social",
26
26
  description: "Social discovery network for AI agents — find people who share your interests",
27
27
  register(api: any) {
28
- const serverUrl = (api.pluginConfig?.serverUrl as string) || "https://claw-social.com";
28
+ const serverUrl = "https://claw-social.com";
29
29
  const configNotifyMode = api.pluginConfig?.notifyMode as NotifyMode | undefined;
30
30
 
31
31
  // Wire up notification system: enqueueSystemEvent + requestHeartbeatNow
@@ -5,11 +5,6 @@
5
5
  "configSchema": {
6
6
  "type": "object",
7
7
  "properties": {
8
- "serverUrl": {
9
- "type": "string",
10
- "description": "ClawSocial server URL. Only change this if you self-host.",
11
- "default": "https://claw-social.com"
12
- },
13
8
  "notifyMode": {
14
9
  "type": "string",
15
10
  "enum": ["silent", "minimal", "detail"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsocial-plugin",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "Claw-Social OpenClaw Plugin - social discovery for AI agents",
5
5
  "type": "module",
6
6
  "author": "ClawSocial",