beecork 1.3.1 → 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.
- package/dist/cli/setup.js +11 -2
- package/dist/index.js +0 -0
- package/package.json +2 -2
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 (
|
|
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 (
|
|
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/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "beecork",
|
|
3
|
-
"version": "1.3.
|
|
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": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"node": ">=18"
|
|
11
11
|
},
|
|
12
12
|
"scripts": {
|
|
13
|
-
"build": "tsc -p tsconfig.build.json",
|
|
13
|
+
"build": "tsc -p tsconfig.build.json && node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
|
|
14
14
|
"dev": "tsx src/index.ts",
|
|
15
15
|
"dev:daemon": "tsx src/daemon.ts",
|
|
16
16
|
"test": "vitest",
|