- All gsdDir/gsdRoot/gsdHome → sfDir/sfRootDir/sfHome - GSDWorkspace* → SFWorkspace* interfaces - bootstrapGsdProject → bootstrapProject - runGSDDoctor → runSFDoctor - GsdClient → SfClient, gsd-client.ts → sf-client.ts - .gsd/ → .sf/ in all tests, docs, docker, native, vscode - Auto-migration: headless detects .gsd/ → renames to .sf/ - Deleted gsd-phase-state.ts backward-compat re-export - Renamed bin/gsd-from-source → bin/sf-from-source - Updated mintlify docs, github workflows, docker configs
38 lines
1.3 KiB
Text
38 lines
1.3 KiB
Text
---
|
|
title: "Web interface"
|
|
description: "Browser-based project management with real-time progress and multi-project support."
|
|
---
|
|
|
|
SF includes a browser-based web interface for project management, real-time progress monitoring, and multi-project support.
|
|
|
|
## Quick start
|
|
|
|
```bash
|
|
sf --web
|
|
```
|
|
|
|
### CLI flags
|
|
|
|
```bash
|
|
sf --web --host 0.0.0.0 --port 8080 --allowed-origins "https://example.com"
|
|
```
|
|
|
|
| Flag | Default | Description |
|
|
|------|---------|-------------|
|
|
| `--host` | `localhost` | Bind address |
|
|
| `--port` | `3000` | Port |
|
|
| `--allowed-origins` | (none) | Comma-separated CORS origins |
|
|
|
|
## Features
|
|
|
|
- **Project management** — view milestones, slices, and tasks in a visual dashboard
|
|
- **Real-time progress** — server-sent events push status updates during auto-mode
|
|
- **Multi-project support** — manage multiple projects from a single tab via `?project=` URL parameter
|
|
- **Change project root** — switch directories from the web UI without restarting
|
|
- **Onboarding flow** — API key setup and provider configuration through the browser
|
|
- **Model selection** — switch models and providers from the web UI
|
|
|
|
## Platform notes
|
|
|
|
- **macOS/Linux** — full support
|
|
- **Windows** — web build is skipped due to Next.js webpack issues. The CLI remains fully functional.
|