thepopebot 1.2.13 → 1.2.14

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/bin/cli.js +4 -0
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -141,6 +141,10 @@ function init() {
141
141
  console.log(' Created .gitignore');
142
142
  }
143
143
 
144
+ // Run npm install
145
+ console.log('\nInstalling dependencies...\n');
146
+ execSync('npm install', { stdio: 'inherit', cwd });
147
+
144
148
  // Update THEPOPEBOT_VERSION in .env if it exists
145
149
  const envPath = path.join(cwd, '.env');
146
150
  if (fs.existsSync(envPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thepopebot",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "type": "module",
5
5
  "description": "Create autonomous AI agents with a two-layer architecture: Next.js Event Handler + Docker Agent.",
6
6
  "bin": {