create-propelkit 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +10 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-propelkit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Initialize a PropelKit SaaS project with AI PM",
5
5
  "bin": "./bin/cli.js",
6
6
  "main": "./src/index.js",
package/src/index.js CHANGED
@@ -110,6 +110,16 @@ async function main() {
110
110
 
111
111
  // Launch Claude Code
112
112
  messages.proLaunchingAIPM(projectDir);
113
+
114
+ // Give user time to read the instructions
115
+ await inquirer.prompt([
116
+ {
117
+ type: 'input',
118
+ name: 'continue',
119
+ message: chalk.dim('Press Enter to launch Claude Code...'),
120
+ }
121
+ ]);
122
+
113
123
  try {
114
124
  await launchClaude(projectDir);
115
125
  } catch (error) {