@faviovazquez/deliberate 0.2.8 → 0.2.9

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.2.9] - 2026-04-04
9
+
10
+ ### Added
11
+ - `README.md`: Added local install path examples for `start-server.sh` / `stop-server.sh` under "Starting and stopping the server" — covers Claude Code global/local, Windsurf global/local, and Cursor local install paths.
12
+ - `SKILL.md`: Step 5 now always offers the visual companion before starting the deliberation, even when `--visual` was not passed. Mirrors the behavior already present in BRAINSTORM.md Phase 2. The offer is a standalone message; the user can accept (y) or decline (N/Enter).
13
+
8
14
  ## [0.2.8] - 2026-04-04
9
15
 
10
16
  ### Added
package/README.md CHANGED
@@ -492,20 +492,36 @@ If you say yes (or press Enter), it runs `scripts/stop-server.sh` to shut it dow
492
492
 
493
493
  If you ever need to manage the server manually:
494
494
 
495
+ **Claude Code — global install:**
495
496
  ```bash
496
- # Start the server (from your project root)
497
497
  bash ~/.claude/skills/deliberate/scripts/start-server.sh --project-dir .
498
-
499
- # Stop the server
500
498
  bash ~/.claude/skills/deliberate/scripts/stop-server.sh
501
499
  ```
502
500
 
503
- For Windsurf:
501
+ **Claude Code — local install:**
502
+ ```bash
503
+ bash .claude/skills/deliberate/scripts/start-server.sh --project-dir .
504
+ bash .claude/skills/deliberate/scripts/stop-server.sh
505
+ ```
506
+
507
+ **Windsurf — global install:**
504
508
  ```bash
505
509
  bash ~/.codeium/windsurf/skills/deliberate/scripts/start-server.sh --project-dir .
506
510
  bash ~/.codeium/windsurf/skills/deliberate/scripts/stop-server.sh
507
511
  ```
508
512
 
513
+ **Windsurf — local install:**
514
+ ```bash
515
+ bash .windsurf/skills/deliberate/scripts/start-server.sh --project-dir .
516
+ bash .windsurf/skills/deliberate/scripts/stop-server.sh
517
+ ```
518
+
519
+ **Cursor — local install:**
520
+ ```bash
521
+ bash .cursor/skills/deliberate/scripts/start-server.sh --project-dir .
522
+ bash .cursor/skills/deliberate/scripts/stop-server.sh
523
+ ```
524
+
509
525
  ---
510
526
 
511
527
  ## Platforms
package/SKILL.md CHANGED
@@ -207,12 +207,29 @@ Use the resolved model map from Step 0.5 (Claude Code) or the active context mod
207
207
  - `model_tier` in agent frontmatter is treated as metadata only — no model switching occurs
208
208
  - No model selection prompt is shown
209
209
 
210
- ### Step 5: Visual Companion (optional)
210
+ ### Step 5: Visual Companion Offer
211
211
 
212
- If `--visual` flag is set, or if the user has previously accepted the visual companion in this session:
213
- 1. Launch `scripts/start-server.sh --project-dir {project_root}`
212
+ If `--visual` flag is set, skip directly to launching the server (step 5c below).
213
+
214
+ Otherwise, **always offer the visual companion** before starting the deliberation:
215
+
216
+ ```
217
+ Would you like to follow the deliberation in real time in your browser?
218
+ The visual companion shows agent positions, agreement/disagreement maps,
219
+ and verdict formation as it happens. (Requires opening a local URL)
220
+
221
+ Open visual companion? (y/N)
222
+ ```
223
+
224
+ **This offer MUST be its own message.** Wait for the user's response before continuing.
225
+
226
+ - If **yes**: proceed to launch (5c)
227
+ - If **no** or Enter: proceed without visual companion
228
+
229
+ **5c — Launch:**
230
+ 1. Run `scripts/start-server.sh --project-dir {project_root}`
214
231
  2. Save `screen_dir` and `state_dir` from the response
215
- 3. Tell user to open the URL
232
+ 3. Tell the user to open the URL
216
233
  4. Visual companion will be updated after each round
217
234
 
218
235
  ### Step 6: Round 1 -- Independent Analysis
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faviovazquez/deliberate",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Multi-agent deliberation skill for AI coding assistants. Agreement is a bug.",
5
5
  "license": "MIT",
6
6
  "author": "Favio Vazquez",