claude-space 2.0.0 → 2.0.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/README.md CHANGED
@@ -42,7 +42,12 @@ Visualizing your agent's brain is just better! 🧠✨
42
42
  ## ⚡ Quick Start
43
43
 
44
44
  ```bash
45
- # Clone & run
45
+ # Install the app
46
+ npm install -g claude-space
47
+ claude-space
48
+ claude-space project .
49
+
50
+ # Or, Clone & run
46
51
  git clone https://github.com/FilipeBorges1993/ClaudeSpaceElectron.git
47
52
  cd claude-code-workspace
48
53
  npm install
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "claude-space",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "productName": "ClaudeSpace",
5
5
  "description": "A visual agent workflow builder for Claude - distributed via npm",
6
6
  "main": "./out/main/index.js",
7
7
  "author": "BorisCorp",
8
- "homepage": "https://github.com/BorisCorp/AgentBuilder",
8
+ "homepage": "https://github.com/FilipeBorges1993/ClaudeSpaceElectron",
9
9
  "bin": {
10
10
  "claude-space": "./bin/claude-space"
11
11
  },
@@ -26,6 +26,12 @@ if [ -d "dist-npm/mac-x64/ClaudeSpace.app" ]; then
26
26
  zip -r ../../releases/ClaudeSpace-darwin-x64.zip ClaudeSpace.app
27
27
  cd ../..
28
28
  echo "Created: releases/ClaudeSpace-darwin-x64.zip"
29
+ elif [ -d "dist-npm/mac/ClaudeSpace.app" ]; then
30
+ echo "Creating macOS (x64) archive..."
31
+ cd dist-npm/mac
32
+ zip -r ../../releases/ClaudeSpace-darwin-x64.zip ClaudeSpace.app
33
+ cd ../..
34
+ echo "Created: releases/ClaudeSpace-darwin-x64.zip"
29
35
  fi
30
36
 
31
37
  # Create Windows archive (if exists)
@@ -5,7 +5,7 @@ const fs = require('fs');
5
5
  const path = require('path');
6
6
  const { execSync } = require('child_process');
7
7
 
8
- const GITHUB_REPO = 'BorisCorp/AgentBuilder'; // Update if different
8
+ const GITHUB_REPO = 'FilipeBorges1993/ClaudeSpaceElectron'; // Update if different
9
9
  const APP_NAME = 'ClaudeSpace';
10
10
 
11
11
  function getPlatformInfo() {