esprit-cli 0.7.4 → 0.7.5
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 +4 -4
- package/package.json +3 -3
- package/scripts/install.ps1 +1 -1
- package/scripts/install.sh +2 -2
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/
|
|
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/
|
|
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/
|
|
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/
|
|
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.
|
|
3
|
+
"version": "0.7.5",
|
|
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/
|
|
9
|
+
"url": "git+https://github.com/esprit-cli/Esprit.git"
|
|
10
10
|
},
|
|
11
11
|
"bugs": {
|
|
12
|
-
"url": "https://github.com/
|
|
12
|
+
"url": "https://github.com/esprit-cli/Esprit/issues"
|
|
13
13
|
},
|
|
14
14
|
"bin": {
|
|
15
15
|
"esprit": "bin/esprit.js"
|
package/scripts/install.ps1
CHANGED
|
@@ -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/
|
|
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'
|
package/scripts/install.sh
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
set -euo pipefail
|
|
4
4
|
|
|
5
5
|
APP="esprit"
|
|
6
|
-
REPO_URL="${ESPRIT_REPO_URL:-https://github.com/
|
|
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/
|
|
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
|