marketing-agent-team 1.0.1 → 1.0.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/install.js +1 -10
- package/package.json +1 -1
package/install.js
CHANGED
|
@@ -257,16 +257,7 @@ async function main() {
|
|
|
257
257
|
log('Welcome to Marketing Agent Team!', 'green');
|
|
258
258
|
console.log('');
|
|
259
259
|
|
|
260
|
-
// Check
|
|
261
|
-
const isNpmInstall = process.env.npm_config_root !== undefined;
|
|
262
|
-
|
|
263
|
-
if (isNpmInstall) {
|
|
264
|
-
log('Detected npm install - skipping interactive setup', 'yellow');
|
|
265
|
-
log('Run "npx marketing-agent-team" after npm install completes', 'yellow');
|
|
266
|
-
process.exit(0);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
// Check BMAD
|
|
260
|
+
// Check BMAD (will auto-install if missing)
|
|
270
261
|
const hasBMAD = await checkBMAD();
|
|
271
262
|
if (!hasBMAD) {
|
|
272
263
|
process.exit(1);
|
package/package.json
CHANGED