diff --git a/docs/plans/2026-02-06-openclaw-feature-gap-analysis.md b/docs/plans/2026-02-06-openclaw-feature-gap-analysis.md index a1b7805..06e91dd 100644 --- a/docs/plans/2026-02-06-openclaw-feature-gap-analysis.md +++ b/docs/plans/2026-02-06-openclaw-feature-gap-analysis.md @@ -1,7 +1,7 @@ # Flynn vs OpenClaw — Feature Gap Analysis **Date:** 2026-02-06 -**Last updated:** 2026-02-09 (refreshed against OpenClaw v2026.2.6) +**Last updated:** 2026-02-10 (setup wizard implemented) **Purpose:** Comprehensive comparison of Flynn's current implementation against OpenClaw's feature set, to guide prioritisation of future work. ## Legend @@ -201,7 +201,7 @@ Flynn actually has MCP support that OpenClaw doesn't emphasise — OpenClaw reli | Tailscale Serve/Funnel | Full integration | Full (auto-start/stop tailscale serve, availability check, daemon lifecycle) | **MATCH** | | Remote gateway access | SSH tunnels + tailnet | Tailscale-only binding + Tailscale Serve | **MATCH** | | Health checks / doctor | 10+ checks | 10 checks | **MATCH** | -| `onboard` wizard | Full guided setup | -- | **MISSING** | +| `onboard` wizard | Full guided setup | Full (`flynn setup` + first-run auto-trigger) | **MATCH** | | Docker deployment | Full | Full (multi-stage Dockerfile, docker-compose.yml) | **MATCH** | | Nix deployment | Full | -- | **MISSING** | | Shell completion | Auto-detect + cached (v2026.2.3) | Full (bash/zsh/fish generation + --install flag) | **MATCH** | @@ -259,12 +259,12 @@ Flynn actually has MCP support that OpenClaw doesn't emphasise — OpenClaw reli | Automation | 4 | 4 | 0 | 0 | | Companion Apps | 6 | 0 | 0 | 6 | | Skills/Plugins | 5 | 4 | 0 | 1 | -| Gateway/Infra | 13 | 7 | 0 | 6 | +| Gateway/Infra | 13 | 8 | 0 | 5 | | Chat Commands | 6 | 6 | 0 | 0 | | Misc | 10 | 9 | 0 | 1 | -| **TOTAL** | **128** | **99 (77%)** | **0 (0%)** | **29 (23%)** | +| **TOTAL** | **128** | **100 (78%)** | **0 (0%)** | **28 (22%)** | -*Note: Match rate improved from 74% to 77% after implementing Tier 4 features (Gateway lock, shell completion, Tailscale Serve, DM pairing codes).* +*Note: Match rate improved from 77% to 78% after implementing setup wizard (`flynn setup` + first-run auto-trigger).* --- @@ -311,7 +311,7 @@ All five Tier 3 items implemented: Lane Queue (per-session FIFO in gateway), cre - MiniMax/Moonshot — regional providers - Synthetic provider — testing/mock - Elevated mode — sandbox escape hatch -- Onboard wizard — guided setup +- ~~Onboard wizard — guided setup~~ (DONE — `flynn setup` + first-run auto-trigger, 2026-02-10) - ClawHub/skill registry — community marketplace - QMD backend — experimental memory search - Presence tracking — online/offline status diff --git a/docs/plans/state.json b/docs/plans/state.json index 96c1912..e16b9a8 100644 --- a/docs/plans/state.json +++ b/docs/plans/state.json @@ -1,6 +1,6 @@ { "version": "1.0", - "updated_at": "2026-02-09", + "updated_at": "2026-02-10", "description": "Tracks the status of all Flynn plans and implementation phases", "plans": { @@ -895,6 +895,43 @@ } } }, + "setup-wizard": { + "file": "2026-02-10-setup-wizard-implementation.md", + "status": "completed", + "date": "2026-02-10", + "design": "2026-02-10-setup-wizard-design.md", + "summary": "Interactive setup wizard for Flynn. Two entry points: auto-trigger on first run (flynn start with no config) and explicit flynn setup command. Minimal-first flow (provider + channel) then menu-driven reconfiguration (6 sections: models, channels, memory, automation, security, gateway). Made telegram optional in config schema.", + "files_created": [ + "src/cli/setup.ts", + "src/cli/setup/prompts.ts", + "src/cli/setup/prompts.test.ts", + "src/cli/setup/config.ts", + "src/cli/setup/config.test.ts", + "src/cli/setup/summary.ts", + "src/cli/setup/providers.ts", + "src/cli/setup/providers.test.ts", + "src/cli/setup/channels.ts", + "src/cli/setup/channels.test.ts", + "src/cli/setup/memory.ts", + "src/cli/setup/automation.ts", + "src/cli/setup/security.ts", + "src/cli/setup/gateway.ts", + "src/cli/setup/orchestrator.ts", + "src/cli/setup/orchestrator.test.ts", + "src/cli/setup/sections.test.ts", + "src/cli/setup/integration.test.ts" + ], + "files_modified": [ + "src/config/schema.ts", + "src/cli/start.ts", + "src/cli/index.ts", + "src/cli/completion.ts", + "src/daemon/channels.ts", + "src/cli/tui.ts", + "src/cli/doctor.ts" + ], + "test_status": "31/31 passing" + }, "log-level-system": { "status": "completed", "date": "2026-02-09", @@ -933,7 +970,7 @@ }, "overall_progress": { - "total_test_count": 1120, + "total_test_count": 1151, "all_tests_passing": true, "p0_completion": "3/3 (100%)", "p1_completion": "4/4 (100%)", @@ -948,8 +985,8 @@ "tier2_completion": "4/4 (100%) — inbound webhooks, vector memory search, Dockerfile, heartbeat monitor", "tier3_completion": "5/5 (100%) — lane queue, credential redaction, web UI token dashboard, xAI (Grok) provider, Voyage AI embeddings", "tier4_completion": "4/4 (100%) — gateway lock, shell completion, Tailscale Serve/Funnel, DM pairing codes", - "feature_gap_scorecard": "99/128 match (77%), 0 partial (0%), 29 missing (23%)", + "feature_gap_scorecard": "100/128 match (78%), 0 partial (0%), 28 missing (22%)", "operator_dx_milestone": "Phase 3 (Live Ops Dashboard): 1/2 plans complete — metrics backend done, dashboard UI next", - "next_up": "GSD Milestone: Operator DX — Phase 3 Plan 02 (Dashboard UI consuming metrics RPC). All phases P0-P8 and Tiers 1-4 complete. Local model tool calling added. Log-level system added. Remaining gaps: Tier 4 channels (Signal, Matrix, Teams, Google Chat), Tier 5 deferred/niche items" + "next_up": "GSD Milestone: Operator DX — Phase 3 Plan 02 (Dashboard UI consuming metrics RPC). All phases P0-P8 and Tiers 1-4 complete. Setup wizard added. Remaining gaps: Tier 4 channels (Signal, Matrix, Teams, Google Chat), Tier 5 deferred/niche items" } }