@dedesfr/prompter 0.8.4 → 0.8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.8.5] - 2026-03-30
4
+
5
+ ### ✨ Added
6
+ - **project-orchestrator Skill**: Laravel + Docker guidelines
7
+ - New guidance for containerizing Laravel applications with Docker and Docker Compose
8
+ - Recommendation to use standard Docker setup instead of Laravel Sail for better control and production readiness
9
+ - Supervisor configuration for managing long-running processes (queue workers, schedulers) inside containers
10
+ - Instructions for `php artisan queue:work` and `php artisan schedule:work` process management
11
+ - Integration guidance for Docker deployments in final project plan summaries
12
+ - Process reliability recommendations for production Laravel deployments
13
+
3
14
  ## [0.8.4] - 2026-03-30
4
15
 
5
16
  ### 🔧 Fixed
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.4');
19
+ .version('0.8.5');
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.4",
3
+ "version": "0.8.5",
4
4
  "description": "Enhance prompts directly in your AI coding workflow",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -290,6 +290,16 @@ Quick context: Docker makes it easy to set up identical dev environments across
290
290
 
291
291
  If unsure: Recommend based on team size and deployment target (e.g., "For a solo project deploying to a single VPS, Docker is optional. For a team or cloud deployment, I'd recommend it.").
292
292
 
293
+ ### Laravel + Docker Guidelines
294
+
295
+ When the user chooses a Laravel stack (Bundle 3, 4, or 5) with Docker:
296
+
297
+ - **Use regular Docker and Docker Compose** -- do NOT use or recommend Laravel Sail. Set up a standard `Dockerfile` and `docker-compose.yml` with services for the app, database, and any other dependencies (e.g., Redis).
298
+ - **Use Supervisor** for managing background processes inside the container. Laravel workers like `php artisan queue:work` must run continuously -- Supervisor ensures they stay alive and restart on failure. Include a `supervisord.conf` that manages:
299
+ - `php artisan queue:work` (queue worker)
300
+ - Any other long-running processes the project needs (e.g., scheduler via `php artisan schedule:work`)
301
+ - Mention this in the final plan summary under the Docker row and in the recommended next steps.
302
+
293
303
  ---
294
304
 
295
305
  ## Step 9: Deployment & Hosting
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.4');
21
+ .version('0.8.5');
22
22
 
23
23
  program
24
24
  .command('init')