pmpt-cli 1.1.0 → 1.1.1

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.
@@ -86,8 +86,24 @@ export async function cmdPlan(path, options) {
86
86
  if (copied) {
87
87
  p.log.success('AI prompt copied to clipboard!');
88
88
  p.log.message('');
89
- p.log.step('Now open Claude, ChatGPT, or Codex and press Ctrl+V (Cmd+V on Mac)');
90
- p.log.message('Your product journey starts now!');
89
+ // Eye-catching next step banner
90
+ const banner = [
91
+ '',
92
+ '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓',
93
+ '┃ ┃',
94
+ '┃ 📋 NEXT STEP ┃',
95
+ '┃ ┃',
96
+ '┃ Open your AI coding tool and press: ┃',
97
+ '┃ ┃',
98
+ '┃ ⌘ + V (Mac) ┃',
99
+ '┃ Ctrl + V (Windows/Linux) ┃',
100
+ '┃ ┃',
101
+ '┃ Your product journey starts now! 🚀 ┃',
102
+ '┃ ┃',
103
+ '┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛',
104
+ '',
105
+ ];
106
+ console.log(banner.join('\n'));
91
107
  }
92
108
  else {
93
109
  p.log.warn('Could not copy to clipboard. Showing content instead:');
@@ -182,9 +198,24 @@ export async function cmdPlan(path, options) {
182
198
  p.log.message('');
183
199
  p.log.success('AI prompt copied to clipboard!');
184
200
  p.log.message('');
185
- p.log.step('Open Claude, ChatGPT, or Codex and press Ctrl+V (Cmd+V on Mac)');
186
- p.log.message('Your product journey starts now!');
187
- p.log.message('');
201
+ // Eye-catching next step banner
202
+ const banner = [
203
+ '',
204
+ '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓',
205
+ '┃ ┃',
206
+ '┃ 📋 NEXT STEP ┃',
207
+ '┃ ┃',
208
+ '┃ Open your AI coding tool and press: ┃',
209
+ '┃ ┃',
210
+ '┃ ⌘ + V (Mac) ┃',
211
+ '┃ Ctrl + V (Windows/Linux) ┃',
212
+ '┃ ┃',
213
+ '┃ Your product journey starts now! 🚀 ┃',
214
+ '┃ ┃',
215
+ '┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛',
216
+ '',
217
+ ];
218
+ console.log(banner.join('\n'));
188
219
  }
189
220
  else {
190
221
  // Fallback: show prompt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmpt-cli",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Record and share your AI-driven product development journey",
5
5
  "type": "module",
6
6
  "bin": {