@feynmanzhang/open-party 0.1.7 → 0.1.8

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.
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "open-party",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Decentralized Agent communication network for Claude Code"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "0.1.7",
2
+ "version": "0.1.8",
3
3
  "git_commit": "c65e078",
4
- "build_timestamp": "2026-06-06T14:01:15.770Z",
4
+ "build_timestamp": "2026-06-06T14:27:14.143Z",
5
5
  "source_path": "src/client/claude-code/"
6
6
  }
@@ -21635,7 +21635,7 @@ function startHeartbeat() {
21635
21635
  }, HEARTBEAT_INTERVAL_MS);
21636
21636
  }
21637
21637
  var mcpServerInstance = new McpServer(
21638
- { name: "open-party", version: "0.1.7" },
21638
+ { name: "open-party", version: "0.1.8" },
21639
21639
  {
21640
21640
  capabilities: {
21641
21641
  experimental: { "claude/channel": {} }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "open-party",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "private": true
6
6
  }
package/dist/cli/index.js CHANGED
@@ -5018,8 +5018,14 @@ async function setupCommand() {
5018
5018
  console.log(`
5019
5019
  ${bold(cyan("Open Party Setup"))}
5020
5020
  `);
5021
- if (!buildPlugin()) {
5022
- process.exit(1);
5021
+ const existingPlugin = findPluginDistDir();
5022
+ if (!existingPlugin) {
5023
+ if (!buildPlugin()) {
5024
+ process.exit(1);
5025
+ }
5026
+ } else {
5027
+ console.log(`${green("Pre-built plugin found, skipping build.")}
5028
+ `);
5023
5029
  }
5024
5030
  if (!installToClaudeCode()) {
5025
5031
  process.exit(1);