beecork 1.3.2 → 1.3.3

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/dist/cli/setup.js +11 -2
  2. package/package.json +1 -1
package/dist/cli/setup.js CHANGED
@@ -142,6 +142,15 @@ export async function setupWizard(mode = 'quick') {
142
142
  const installServiceAnswer = await ask(rl, 'Install as background service? (y/n)', 'y');
143
143
  shouldInstallService = installServiceAnswer.toLowerCase() === 'y';
144
144
  }
145
+ // Offer full setup at end of quick mode
146
+ let showExtras = mode === 'full';
147
+ if (mode === 'quick') {
148
+ console.log('\n ✓ Telegram is ready!\n');
149
+ const wantMore = await ask(rl, 'Configure additional features? (Discord, WhatsApp, media, capabilities) (y/n)', 'n');
150
+ if (wantMore.toLowerCase() === 'y') {
151
+ showExtras = true;
152
+ }
153
+ }
145
154
  // Build config
146
155
  const config = {
147
156
  ...getConfig(),
@@ -177,7 +186,7 @@ export async function setupWizard(mode = 'quick') {
177
186
  },
178
187
  deployment: 'local',
179
188
  };
180
- if (mode === 'full') {
189
+ if (showExtras) {
181
190
  // Optional: Additional channels
182
191
  console.log('\nOptional: Add more channels\n');
183
192
  console.log('You can also connect via WhatsApp, Discord, or Webhooks.');
@@ -412,7 +421,7 @@ export async function setupWizard(mode = 'quick') {
412
421
  console.log(' beecork dashboard — open web control panel');
413
422
  console.log(' beecork quickstart — full getting-started checklist');
414
423
  console.log('');
415
- if (mode === 'quick') {
424
+ if (!showExtras) {
416
425
  console.log(' Add more features anytime:');
417
426
  console.log(' beecork enable email — manage your inbox');
418
427
  console.log(' beecork enable github — repos, PRs, issues');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beecork",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Claude Code always-on infrastructure — a phone number, a memory, and an alarm clock",
5
5
  "type": "module",
6
6
  "bin": {