bloby-bot 0.27.1 → 0.27.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/README.md +3 -3
- package/bin/cli.js +1 -1
- package/cli/commands/tunnel.ts +1 -1
- package/package.json +1 -1
- package/supervisor/chat/OnboardWizard.tsx +2 -2
package/README.md
CHANGED
|
@@ -328,7 +328,7 @@ Supervisor User's machine
|
|
|
328
328
|
- Spawns: `cloudflared tunnel --url http://localhost:3000 --no-autoupdate`
|
|
329
329
|
- Extracts tunnel URL from stdout (regex match for `*.trycloudflare.com`)
|
|
330
330
|
- URL changes on every restart -- the relay provides the stable domain layer on top
|
|
331
|
-
- Optionally register with Bloby Relay for a permanent `
|
|
331
|
+
- Optionally register with Bloby Relay for a permanent `open.bloby.bot/username` or `bloby.bot/username` URL
|
|
332
332
|
|
|
333
333
|
#### Named Tunnel
|
|
334
334
|
|
|
@@ -389,7 +389,7 @@ Node.js/Express + http-proxy + MongoDB. Hosted on Railway. Only used when the us
|
|
|
389
389
|
| Tier | Subdomain | Path shortcut | Cost |
|
|
390
390
|
|---|---|---|---|
|
|
391
391
|
| Premium | `bruno.bloby.bot` | `bloby.bot/bruno` | $5/mo |
|
|
392
|
-
| Free | `bruno.
|
|
392
|
+
| Free | `bruno.open.bloby.bot` | `open.bloby.bot/bruno` | Free |
|
|
393
393
|
|
|
394
394
|
Same username can exist on both tiers independently. Compound unique index on `username + tier`.
|
|
395
395
|
|
|
@@ -445,7 +445,7 @@ The CLI is the user-facing entry point. Commands:
|
|
|
445
445
|
|
|
446
446
|
During init, the user is presented with an interactive arrow-key menu to choose their tunnel mode:
|
|
447
447
|
|
|
448
|
-
- **Quick Tunnel** (Easy and Fast) -- Random CloudFlare tunnel URL on every start/update. Optionally use Bloby Relay for a permanent `
|
|
448
|
+
- **Quick Tunnel** (Easy and Fast) -- Random CloudFlare tunnel URL on every start/update. Optionally use Bloby Relay for a permanent `open.bloby.bot/username` handle (free) or a premium `bloby.bot/username` handle ($5 one-time).
|
|
449
449
|
- **Named Tunnel** (Advanced) -- Persistent URL with your own domain. Requires a Cloudflare account + domain. Use a subdomain like `bot.yourdomain.com` or the root domain.
|
|
450
450
|
|
|
451
451
|
If Named Tunnel is selected, `bloby init` immediately runs the named tunnel setup flow inline (same as `bloby tunnel setup`).
|
package/bin/cli.js
CHANGED
|
@@ -277,7 +277,7 @@ function chooseTunnelMode() {
|
|
|
277
277
|
tagColor: c.green,
|
|
278
278
|
desc: [
|
|
279
279
|
'Random CloudFlare tunnel URL on every start/update',
|
|
280
|
-
`Optional: Use Bloby Relay Server and access your bot at ${c.reset}${c.pink}
|
|
280
|
+
`Optional: Use Bloby Relay Server and access your bot at ${c.reset}${c.pink}open.bloby.bot/YOURBOT${c.reset}${c.dim} (Free)`,
|
|
281
281
|
`Or use a premium handle like ${c.reset}${c.pink}bloby.bot/YOURBOT${c.reset}${c.dim} ($5 one-time fee)`,
|
|
282
282
|
],
|
|
283
283
|
},
|
package/cli/commands/tunnel.ts
CHANGED
|
@@ -80,7 +80,7 @@ export async function runTunnelSetup() {
|
|
|
80
80
|
{
|
|
81
81
|
value: 'quick',
|
|
82
82
|
label: `Quick Tunnel ${pc.green('[Easy and Fast]')}`,
|
|
83
|
-
hint: pc.dim('Random CloudFlare tunnel URL on every start/update\n Optional: Use Bloby Relay Server and access your bot at
|
|
83
|
+
hint: pc.dim('Random CloudFlare tunnel URL on every start/update\n Optional: Use Bloby Relay Server and access your bot at open.bloby.bot/YOURBOT'),
|
|
84
84
|
},
|
|
85
85
|
{
|
|
86
86
|
value: 'named',
|
package/package.json
CHANGED
|
@@ -69,7 +69,7 @@ const MODELS: Record<string, { id: string; label: string }[]> = {
|
|
|
69
69
|
// TOTAL_STEPS is dynamic — set inside the component based on isInitialSetup
|
|
70
70
|
|
|
71
71
|
const HANDLES = [
|
|
72
|
-
{ tier: 'at', prefix: '
|
|
72
|
+
{ tier: 'at', prefix: 'open.bloby.bot/', label: (n: string) => `open.bloby.bot/${n}`, badge: 'Free', badgeCls: 'bg-emerald-500/10 text-emerald-400 border-emerald-500/20', highlight: false },
|
|
73
73
|
{ tier: 'premium', prefix: 'bloby.bot/', label: (n: string) => `bloby.bot/${n}`, badge: '$5', badgeCls: 'bg-[#AF27E3]/15 text-[#AF27E3] border-[#AF27E3]/20', highlight: true },
|
|
74
74
|
] as const;
|
|
75
75
|
|
|
@@ -1119,7 +1119,7 @@ export default function OnboardWizard({ onComplete, isInitialSetup = false, onSa
|
|
|
1119
1119
|
</span>
|
|
1120
1120
|
</div>
|
|
1121
1121
|
<p className={`font-mono text-[13px] mt-1.5 ${freeSelected ? 'text-white/80' : 'text-white/40'}`}>
|
|
1122
|
-
|
|
1122
|
+
open.bloby.bot/{botName}
|
|
1123
1123
|
</p>
|
|
1124
1124
|
</button>
|
|
1125
1125
|
);
|