Compare commits

...

3 Commits

Author SHA1 Message Date
Vincent Koc
78a0ffefff Docs: flatten stale docs redirects 2026-03-14 10:23:59 -07:00
Vincent Koc
61c8d67f50 Docs: fix landing page first-run flow 2026-03-14 10:23:36 -07:00
Vincent Koc
09532ed57b Docs: fix README quick start commands 2026-03-14 10:23:23 -07:00
3 changed files with 8 additions and 8 deletions

View File

@ -69,10 +69,10 @@ Full beginner guide (auth, pairing, channels): [Getting started](https://docs.op
```bash ```bash
openclaw onboard --install-daemon openclaw onboard --install-daemon
openclaw gateway --port 18789 --verbose openclaw gateway status
# Send a message # Send a message
openclaw message send --to +1234567890 --message "Hello from OpenClaw" openclaw message send --target +1234567890 --message "Hello from OpenClaw"
# Talk to the assistant (optionally deliver back to any connected channel: WhatsApp/Telegram/Slack/Discord/Google Chat/Signal/iMessage/BlueBubbles/IRC/Microsoft Teams/Matrix/Feishu/LINE/Mattermost/Nextcloud Talk/Nostr/Synology Chat/Tlon/Twitch/Zalo/Zalo Personal/WebChat) # Talk to the assistant (optionally deliver back to any connected channel: WhatsApp/Telegram/Slack/Discord/Google Chat/Signal/iMessage/BlueBubbles/IRC/Microsoft Teams/Matrix/Feishu/LINE/Mattermost/Nextcloud Talk/Nostr/Synology Chat/Tlon/Twitch/Zalo/Zalo Personal/WebChat)
openclaw agent --message "Ship checklist" --thinking high openclaw agent --message "Ship checklist" --thinking high

View File

@ -61,7 +61,7 @@
}, },
{ {
"source": "/cron", "source": "/cron",
"destination": "/cron-jobs" "destination": "/automation/cron-jobs"
}, },
{ {
"source": "/minimax", "source": "/minimax",
@ -509,11 +509,11 @@
}, },
{ {
"source": "/model", "source": "/model",
"destination": "/models" "destination": "/concepts/models"
}, },
{ {
"source": "/model/", "source": "/model/",
"destination": "/models" "destination": "/concepts/models"
}, },
{ {
"source": "/models", "source": "/models",

View File

@ -106,10 +106,10 @@ The Gateway is the single source of truth for sessions, routing, and channel con
openclaw onboard --install-daemon openclaw onboard --install-daemon
``` ```
</Step> </Step>
<Step title="Pair WhatsApp and start the Gateway"> <Step title="Check the Gateway and open the Control UI">
```bash ```bash
openclaw channels login openclaw gateway status
openclaw gateway --port 18789 openclaw dashboard
``` ```
</Step> </Step>
</Steps> </Steps>