@dedesfr/prompter 0.8.21 → 0.8.22

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
@@ -1,5 +1,14 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.8.22] - 2026-05-08
4
+
5
+ ### 🔄 Changed
6
+ - **project-orchestrator Skill**: Added VPS Caddy existence check to deployment guidance
7
+ - During Step 9 (Deployment), now asks whether Caddy is already running on the VPS
8
+ - If Yes: skip Caddy install, just add domain block to existing Caddyfile and run `caddy reload`
9
+ - If No: include full Caddy install and setup in recommended next steps
10
+ - Updated final plan summary to reflect appropriate Caddy setup based on existing infrastructure
11
+
3
12
  ## [0.8.21] - 2026-05-08
4
13
 
5
14
  ### 🔄 Changed
package/dist/cli/index.js CHANGED
@@ -16,7 +16,7 @@ const program = new Command();
16
16
  program
17
17
  .name('prompter')
18
18
  .description('Enhance prompts directly in your AI coding workflow')
19
- .version('0.8.21');
19
+ .version('0.8.22');
20
20
  program
21
21
  .command('init')
22
22
  .description('Initialize Prompter in your project')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedesfr/prompter",
3
- "version": "0.8.21",
3
+ "version": "0.8.22",
4
4
  "description": "Enhance prompts directly in your AI coding workflow",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -323,7 +323,12 @@ project-b.com {
323
323
  }
324
324
  ```
325
325
 
326
- Include this setup in the final plan summary and recommended next steps.
326
+ During Step 9 (Deployment), ask whether Caddy is already running on the VPS:
327
+
328
+ - **Yes** -- skip installing Caddy. Just add a new block to the existing host Caddyfile for the new domain, then run `caddy reload`. Include only this step in the recommended next steps.
329
+ - **No** -- include the full Caddy install and Caddyfile setup in the recommended next steps.
330
+
331
+ Include the appropriate Caddy setup in the final plan summary and recommended next steps.
327
332
 
328
333
  ### Laravel + Docker Guidelines
329
334
 
package/src/cli/index.ts CHANGED
@@ -18,7 +18,7 @@ const program = new Command();
18
18
  program
19
19
  .name('prompter')
20
20
  .description('Enhance prompts directly in your AI coding workflow')
21
- .version('0.8.21');
21
+ .version('0.8.22');
22
22
 
23
23
  program
24
24
  .command('init')