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.
- package/dist/commands/plan.js +36 -5
- package/package.json +1 -1
package/dist/commands/plan.js
CHANGED
|
@@ -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
|
-
|
|
90
|
-
|
|
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
|
-
|
|
186
|
-
|
|
187
|
-
|
|
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
|