refactor(setup): remove channel step from setup wizard

- Remove channel connection step from onboarding flow (6 steps -> 5 steps)
- Users can now start using ClawX immediately
- Channel configuration moved to Settings > Channels (future)
- Update architecture doc to reflect simplified setup flow
- Reduces onboarding friction for new users
This commit is contained in:
Haze
2026-02-06 01:48:34 +08:00
Unverified
parent 4431d2ba1d
commit 3fd62e112f
4 changed files with 92 additions and 162 deletions

View File

@@ -576,13 +576,13 @@ clawx/
│ │ │ ├── index.tsx
│ │ │ ├── GeneralSettings.tsx
│ │ │ ├── ProviderSettings.tsx
│ │ │ ├── ChannelsSettings.tsx # 通道连接配置 (从安装向导移出)
│ │ │ └── AdvancedSettings.tsx
│ │ └── Setup/ # 安装向导
│ │ └── Setup/ # 安装向导 (简化版,不含通道连接)
│ │ ├── index.tsx
│ │ ├── WelcomeStep.tsx
│ │ ├── RuntimeStep.tsx
│ │ ├── ProviderStep.tsx
│ │ ├── ChannelStep.tsx
│ │ └── SkillStep.tsx
│ │
│ ├── components/ # 通用组件
@@ -812,12 +812,8 @@ const steps: SetupStep[] = [
description: '配置您的 AI 服务提供商',
component: ProviderStep,
},
{
id: 'channel',
title: '连接消息应用',
description: '绑定 WhatsApp、Telegram 等',
component: ChannelStep,
},
// NOTE: Channel step removed - 通道连接移至 Settings > Channels 页面
// 用户可在完成初始设置后自行配置消息通道
{
id: 'skills',
title: '选择技能包',
@@ -4042,13 +4038,15 @@ ClawX 版本: X.Y.Z[-prerelease]
| Node.js 自动检测/安装 | P0 | ⬜ |
| openclaw npm 安装 | P0 | ⬜ |
| Provider 配置 (API Key) | P0 | ⬜ |
| 首个通道连接 (WhatsApp QR) | P1 | ⬜ |
| 错误处理与提示 | P1 | ⬜ |
> **注意**: 通道连接功能 (WhatsApp/Telegram 等) 已从安装向导移至 Settings > Channels 页面。
> 用户可在完成初始设置后,根据需要自行配置消息通道,降低首次使用门槛。
**交付物**:
- 完整安装向导流程
- 简化版安装向导流程 (不含通道连接)
- 支持 macOS (Apple Silicon + Intel)
- 可配置 Anthropic/OpenAI
- 可配置 Anthropic/OpenAI/OpenRouter
---