Skip to content

Commit 4deb63c

Browse files
authored
fix(crestodian): repair post-merge checks (#100223)
1 parent 05c9dcc commit 4deb63c

4 files changed

Lines changed: 13 additions & 13 deletions

File tree

apps/.i18n/native-source.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17867,23 +17867,23 @@
1786717867
},
1786817868
{
1786917869
"kind": "conditional-branch",
17870-
"line": 167,
17870+
"line": 168,
1787117871
"path": "apps/macos/Sources/OpenClaw/RemotePortTunnel.swift",
1787217872
"source": "ssh tunnel exited before listening",
1787317873
"surface": "apple",
1787417874
"id": "native.apple.6d7241b4b36686bb"
1787517875
},
1787617876
{
1787717877
"kind": "conditional-branch",
17878-
"line": 183,
17878+
"line": 184,
1787917879
"path": "apps/macos/Sources/OpenClaw/RemotePortTunnel.swift",
1788017880
"source": "ssh tunnel did not open local port \\(localPort)",
1788117881
"surface": "apple",
1788217882
"id": "native.apple.253f6eb372b87540"
1788317883
},
1788417884
{
1788517885
"kind": "conditional-branch",
17886-
"line": 183,
17886+
"line": 184,
1788717887
"path": "apps/macos/Sources/OpenClaw/RemotePortTunnel.swift",
1788817888
"source": "ssh tunnel failed: \\(stderr)",
1788917889
"surface": "apple",

docs/start/onboarding-overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ optional chat channels — they just differ in how you interact with the setup.
1212

1313
## Which path should I use?
1414

15-
| | CLI onboarding | macOS app onboarding |
16-
| -------------- | -------------------------------------- | ------------------------- |
17-
| **Platforms** | macOS, Linux, Windows (native or WSL2) | macOS only |
15+
| | CLI onboarding | macOS app onboarding |
16+
| -------------- | -------------------------------------- | --------------------------- |
17+
| **Platforms** | macOS, Linux, Windows (native or WSL2) | macOS only |
1818
| **Interface** | Terminal wizard | Guided UI + Crestodian chat |
19-
| **Best for** | Servers, headless, full control | Desktop Mac, visual setup |
20-
| **Automation** | `--non-interactive` for scripts | Manual only |
21-
| **Command** | `openclaw onboard` | Launch the app |
19+
| **Best for** | Servers, headless, full control | Desktop Mac, visual setup |
20+
| **Automation** | `--non-interactive` for scripts | Manual only |
21+
| **Command** | `openclaw onboard` | Launch the app |
2222

2323
Most users should start with **CLI onboarding** — it works everywhere and gives
2424
you the most control.

docs/start/onboarding.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ Where does the **Gateway** run?
7474
ambiguous transport failure, restart the setup conversation instead of
7575
replaying the previous turn.
7676

77-
Remote and Configure Later flows skip this local setup conversation.
77+
Remote and Configure Later flows skip this local setup conversation.
7878
</Step>
7979
<Step title="Permissions">
80+
8081
<Frame caption="Choose what permissions do you want to give OpenClaw">
8182
<img src="/assets/macos-onboarding/05-permissions.png" alt="" />
8283
</Frame>

src/crestodian/onboarding-welcome.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,10 @@ export async function buildOnboardingWelcome(params: {
3838
normalizeSecretInputString(auth?.token) !== undefined ||
3939
isSecretRef(auth?.password) ||
4040
normalizeSecretInputString(auth?.password) !== undefined;
41-
const hasAuthoredSetup = Boolean(
41+
const hasAuthoredSetup =
4242
(authoredConfig?.wizard && Object.keys(authoredConfig.wizard).length > 0) ||
4343
hasAuthMode ||
44-
hasAuthSecret,
45-
);
44+
hasAuthSecret;
4645
if (hasAuthoredSetup && overview.defaultModel) {
4746
const welcome = formatCrestodianOnboardingWelcome(overview);
4847
params.engine.noteAssistantMessage(welcome);

0 commit comments

Comments
 (0)