openclaw-sync-assistant 0.0.9 → 0.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/index.js CHANGED
@@ -31,12 +31,8 @@ module.exports = {
31
31
 
32
32
  // 如果未配置,则在安装/首次加载时触发引导向导
33
33
  if (!hasConfigured) {
34
- await this.runSetupWizard(context);
34
+ await module.exports.runSetupWizard(context);
35
35
  }
36
-
37
- // 根据模式启动后台服务的逻辑占位
38
- // if (config.syncMethod === 'p2p') startP2PService(context);
39
- // else if (config.syncMethod === 'github') startGitSyncService(context);
40
36
  },
41
37
 
42
38
  /**
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "openclaw-sync-assistant",
3
3
  "name": "openclaw-sync-assistant",
4
- "version": "0.0.9",
4
+ "version": "0.0.11",
5
5
  "description": "OpenClaw Sync Assistant Plugin",
6
6
  "commands": [
7
7
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-sync-assistant",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "An OpenClaw plugin for P2P file and data synchronization using Hyperswarm and Hyperdrive ecosystem.",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",