esprit-cli 0.7.1 → 0.7.2

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
@@ -38,11 +38,17 @@ poetry install
38
38
 
39
39
  ---
40
40
 
41
- ## Interactive Onboarding
41
+ ## First-Run Onboarding
42
42
 
43
- Run `esprit` with no arguments to open the launchpad onboarding UI.
43
+ On first use, Esprit opens a one-time onboarding wizard before any Docker checks.
44
44
 
45
- - Guided setup for provider, model, target, and scan mode
45
+ - Ghost-themed first-run setup flow
46
+ - Guided setup for theme, providers, and preferred model
47
+ - Skippable with reminder until completed
48
+
49
+ After onboarding, run `esprit` to open the interactive launchpad UI.
50
+
51
+ - Guided setup for target and scan mode
46
52
  - Unified theme across onboarding and scanning TUI
47
53
  - Local directory scan input with tab autocomplete
48
54
 
@@ -17,7 +17,8 @@ const result = spawnSync("bash", [installerPath], {
17
17
  stdio: "inherit",
18
18
  env: {
19
19
  ...process.env,
20
- ESPRIT_SKIP_DOCKER_WARM: process.env.ESPRIT_SKIP_DOCKER_WARM || "1",
20
+ // npm installs should be fast/predictable; sandbox image is pulled at first scan.
21
+ ESPRIT_SKIP_DOCKER_WARM: "1",
21
22
  },
22
23
  });
23
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esprit-cli",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "AI-powered penetration testing agent",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://esprit.dev",