@dedesfr/prompter 0.8.1 → 0.8.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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## [0.8.2] - 2026-03-30
4
+
5
+ ### ✨ Added
6
+ - **project-orchestrator Skill**: Laravel + Filament stack bundle
7
+ - New "Laravel + Filament" tech stack option for admin panels and back-office CRUD applications
8
+ - Filament installation command in project scaffolding: `composer require filament/filament && php artisan filament:install --panels`
9
+ - Sub-choices for database selection (MySQL vs PostgreSQL) and Filament panel configuration
10
+ - Smart recommendations for admin-only vs user-facing panel deployments
11
+ - Guidance for combining Filament with additional public-facing frontends when needed
12
+
3
13
  ## [0.8.1] - 2026-03-30
4
14
 
5
15
  ### ✨ Added
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.1');
19
+ .version('0.8.2');
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.1",
3
+ "version": "0.8.2",
4
4
  "description": "Enhance prompts directly in your AI coding workflow",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -50,6 +50,7 @@ Use the `AskUserQuestion` tool for **every question** in the interview. This ren
50
50
  { "label": "React + Convex", "description": "React (Vite or Next.js) + Convex (real-time backend + built-in DB)" },
51
51
  { "label": "Laravel Classic", "description": "Laravel + Blade + Tailwind + PostgreSQL/MySQL" },
52
52
  { "label": "Laravel + React", "description": "Laravel + Inertia.js (React) + PostgreSQL/MySQL" },
53
+ { "label": "Laravel + Filament", "description": "Laravel + Filament (admin panel & CRUD) + Tailwind + PostgreSQL/MySQL" },
53
54
  { "label": "Unsure", "description": "I'll recommend based on your project needs" }
54
55
  ]
55
56
  }
@@ -101,6 +102,7 @@ Always use these exact commands when scaffolding projects. Include the correct c
101
102
  | Express | `npm install express --save` |
102
103
  | NestJS | `npm i -g @nestjs/cli && nest new {project_name}` |
103
104
  | Laravel 12 | `composer create-project laravel/laravel:^12.0 {project_name}` |
105
+ | Filament | `composer require filament/filament && php artisan filament:install --panels` |
104
106
  | React + Convex | `npm create convex@latest` |
105
107
 
106
108
  **Rules:**
@@ -108,6 +110,7 @@ Always use these exact commands when scaffolding projects. Include the correct c
108
110
  - For Bundle 1 (JS/TS Full-Stack): include the frontend command (React via Vite or Next.js) AND the backend command (Express or NestJS).
109
111
  - For Bundle 2 (React + Convex): include only `npm create convex@latest` -- it scaffolds both the React frontend and Convex backend in one step.
110
112
  - For Bundles 3 and 4 (Laravel): include only the Laravel command -- Blade, Inertia, and Tailwind are configured within the Laravel project.
113
+ - For Bundle 5 (Laravel + Filament): include the Laravel command first, then the Filament install command (`composer require filament/filament && php artisan filament:install --panels`).
111
114
  - Never invent or substitute alternative installation commands. Use these exactly as shown.
112
115
 
113
116
  ---
@@ -241,11 +244,12 @@ Let's pick your tech stack. Here are four proven bundles:
241
244
  2. **React + Convex**: React (Vite or Next.js) + Convex (real-time backend + built-in document DB, no SQL setup needed)
242
245
  3. **Laravel Classic**: Laravel + Blade + Tailwind CSS + MySQL or PostgreSQL
243
246
  4. **Laravel + React**: Laravel + Inertia.js (React) + MySQL or PostgreSQL
247
+ 5. **Laravel + Filament**: Laravel + Filament (admin panel & CRUD generator) + Tailwind CSS + MySQL or PostgreSQL
244
248
 
245
- Which bundle fits your project best? (Pick 1-4, or say "unsure")
249
+ Which bundle fits your project best? (Pick 1-5, or say "unsure")
246
250
  ```
247
251
 
248
- If unsure: Recommend based on what you've learned (e.g., "Since you need SEO and prefer a simpler setup, I'd go with Laravel Classic -- it's fast to build, great for server-rendered pages, and has excellent built-in tooling." Or "If you want real-time features out of the box with minimal backend setup, React + Convex is a great choice.").
252
+ If unsure: Recommend based on what you've learned (e.g., "Since you need SEO and prefer a simpler setup, I'd go with Laravel Classic -- it's fast to build, great for server-rendered pages, and has excellent built-in tooling." Or "If you want real-time features out of the box with minimal backend setup, React + Convex is a great choice." Or "If your app is primarily an admin panel, back-office tool, or data management system, Laravel + Filament gives you a complete CRUD interface with minimal custom frontend work.").
249
253
 
250
254
  ### Sub-Choices
251
255
 
@@ -266,6 +270,10 @@ After the user picks a bundle, ask ONLY the necessary sub-choices:
266
270
  **Bundle 4 sub-choices:**
267
271
  - MySQL vs PostgreSQL? (Same guidance as above)
268
272
 
273
+ **Bundle 5 sub-choices:**
274
+ - MySQL vs PostgreSQL? (Same guidance as above)
275
+ - Filament panels: Admin only, or also a user-facing app panel? (Recommend admin-only for MVP -- add a user-facing panel later if needed. If the user needs a public-facing frontend beyond Filament, suggest combining with Blade or consider Bundle 4 instead.)
276
+
269
277
  Provide a brief recommendation for each sub-choice based on the project's stated needs.
270
278
 
271
279
  ---
@@ -112,6 +112,7 @@
112
112
  # Express: npm install express --save
113
113
  # NestJS: npm i -g @nestjs/cli && nest new {project_name}
114
114
  # Laravel 12: composer create-project laravel/laravel:^12.0 {project_name}
115
+ # Filament: composer require filament/filament && php artisan filament:install --panels
115
116
  ```
116
117
  > Replace the above with only the command(s) matching the selected stack.
117
118
 
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.1');
21
+ .version('0.8.2');
22
22
 
23
23
  program
24
24
  .command('init')