feat: add onboarding doc links

This commit is contained in:
Peter Steinberger
2026-01-07 01:19:31 +01:00
parent 19c95d0ff7
commit 62112d9978
7 changed files with 110 additions and 21 deletions

View File

@@ -42,7 +42,10 @@ export async function promptRemoteGatewayConfig(
if (!hasBonjourTool) {
await prompter.note(
"Bonjour discovery requires dns-sd (macOS) or avahi-browse (Linux).",
[
"Bonjour discovery requires dns-sd (macOS) or avahi-browse (Linux).",
"Docs: https://docs.clawd.bot/gateway/discovery",
].join("\n"),
"Discovery",
);
}
@@ -98,6 +101,7 @@ export async function promptRemoteGatewayConfig(
`ssh -N -L 18789:127.0.0.1:18789 <user>@${host}${
selectedBeacon.sshPort ? ` -p ${selectedBeacon.sshPort}` : ""
}`,
"Docs: https://docs.clawd.bot/gateway/remote",
].join("\n"),
"SSH tunnel",
);