@hamp10/agentforge 0.2.19 → 0.2.20
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/bin/agentforge.js +6 -3
- package/package.json +1 -1
package/bin/agentforge.js
CHANGED
|
@@ -735,15 +735,18 @@ program
|
|
|
735
735
|
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
|
|
736
736
|
console.log('✅ Setup complete!');
|
|
737
737
|
console.log('');
|
|
738
|
-
console.log('
|
|
738
|
+
console.log(' Start your worker:');
|
|
739
739
|
console.log('');
|
|
740
740
|
console.log(' agentforge start');
|
|
741
741
|
console.log('');
|
|
742
|
-
console.log('
|
|
742
|
+
console.log(' Then open your dashboard:');
|
|
743
743
|
console.log('');
|
|
744
|
-
console.log('
|
|
744
|
+
console.log(' https://agentforgeai-production.up.railway.app/dashboard');
|
|
745
745
|
console.log('━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━');
|
|
746
746
|
console.log('');
|
|
747
|
+
|
|
748
|
+
// Open the dashboard in their browser so they land there immediately
|
|
749
|
+
try { execSync('open https://agentforgeai-production.up.railway.app/dashboard'); } catch {}
|
|
747
750
|
});
|
|
748
751
|
|
|
749
752
|
// ── Browser helpers ──────────────────────────────────────────────────────────
|