esprit-cli 0.7.4 → 0.7.6

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
@@ -11,7 +11,7 @@ Esprit is an autonomous security assessment tool that uses AI agents to perform
11
11
  ### Option 1: Install with curl
12
12
 
13
13
  ```bash
14
- curl -fsSL https://raw.githubusercontent.com/improdead/Esprit/main/scripts/install.sh | bash
14
+ curl -fsSL https://raw.githubusercontent.com/esprit-cli/Esprit/main/scripts/install.sh | bash
15
15
  ```
16
16
 
17
17
  ### Option 2: Homebrew
@@ -36,7 +36,7 @@ pip install esprit-cli
36
36
  ### Option 5: From Source
37
37
 
38
38
  ```bash
39
- git clone https://github.com/improdead/Esprit.git
39
+ git clone https://github.com/esprit-cli/Esprit.git
40
40
  cd Esprit
41
41
  pip install poetry
42
42
  poetry install
@@ -263,7 +263,7 @@ OpenCode notes:
263
263
  ## Development
264
264
 
265
265
  ```bash
266
- git clone https://github.com/improdead/Esprit.git
266
+ git clone https://github.com/esprit-cli/Esprit.git
267
267
  cd Esprit
268
268
  poetry install
269
269
 
@@ -298,5 +298,5 @@ MIT License - see [LICENSE](LICENSE) for details.
298
298
 
299
299
  ## Support
300
300
 
301
- - **Issues**: https://github.com/improdead/Esprit/issues
301
+ - **Issues**: https://github.com/esprit-cli/Esprit/issues
302
302
  - **Website**: https://esprit.dev
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "esprit-cli",
3
- "version": "0.7.4",
3
+ "version": "0.7.6",
4
4
  "description": "AI-powered penetration testing agent",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://esprit.dev",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/improdead/Esprit.git"
9
+ "url": "git+https://github.com/esprit-cli/Esprit.git"
10
10
  },
11
11
  "bugs": {
12
- "url": "https://github.com/improdead/Esprit/issues"
12
+ "url": "https://github.com/esprit-cli/Esprit/issues"
13
13
  },
14
14
  "bin": {
15
15
  "esprit": "bin/esprit.js"
@@ -19,7 +19,7 @@ param(
19
19
  $ErrorActionPreference = 'Stop'
20
20
 
21
21
  $APP = 'esprit'
22
- $REPO_URL = if ($env:ESPRIT_REPO_URL) { $env:ESPRIT_REPO_URL } else { 'https://github.com/improdead/Esprit.git' }
22
+ $REPO_URL = if ($env:ESPRIT_REPO_URL) { $env:ESPRIT_REPO_URL } else { 'https://github.com/esprit-cli/Esprit.git' }
23
23
  $REPO_REF = if ($env:ESPRIT_REPO_REF) { $env:ESPRIT_REPO_REF } else { 'main' }
24
24
  $INSTALL_ROOT = if ($env:ESPRIT_HOME) { $env:ESPRIT_HOME } else { Join-Path $env:USERPROFILE '.esprit' }
25
25
  $BIN_DIR = Join-Path $INSTALL_ROOT 'bin'
@@ -3,7 +3,7 @@
3
3
  set -euo pipefail
4
4
 
5
5
  APP="esprit"
6
- REPO_URL="${ESPRIT_REPO_URL:-https://github.com/improdead/Esprit.git}"
6
+ REPO_URL="${ESPRIT_REPO_URL:-https://github.com/esprit-cli/Esprit.git}"
7
7
  REPO_REF="${ESPRIT_REPO_REF:-main}"
8
8
  INSTALL_ROOT="${ESPRIT_HOME:-$HOME/.esprit}"
9
9
  BIN_DIR="$INSTALL_ROOT/bin"
@@ -55,7 +55,7 @@ verify_signature() {
55
55
  fi
56
56
 
57
57
  # Import the Esprit public key
58
- local key_url="https://raw.githubusercontent.com/improdead/Esprit/main/keys/esprit-release.pub"
58
+ local key_url="https://raw.githubusercontent.com/esprit-cli/Esprit/main/keys/esprit-release.pub"
59
59
  if curl -fsSL "$key_url" | gpg --import 2>/dev/null; then
60
60
  echo "✓ Esprit release key imported"
61
61
  else