1---2name: roboflow-product-navigation3description: Use when explaining where Roboflow features live in the app.roboflow.com web app, mapping intents like upload, annotate, train, deploy to specific page URLs.4---56> **For agents — source-of-truth:** This skill is authored in [`roboflow/computer-vision-skills`](https://github.com/roboflow/computer-vision-skills) and shipped with the Roboflow plugin. If your client has loaded the plugin (you'll see `roboflow:<name>` skills in your available skills list), use those local skills — they're read fresh from disk every session. The same content served as MCP resources at `roboflow://skills/<name>/...` is a fallback for clients without the plugin and may lag this repo. **Don't call `ReadMcpResourceTool` for `roboflow://skills/...` URIs when a local `roboflow:<name>` skill is available.**78# Roboflow Web App Navigation910Base URL: `https://app.roboflow.com`1112## URL Hierarchy1314```15Workspace -> Project -> Version -> Model16/{workspace} -> /{workspace}/{project} -> /{workspace}/{project}/{version} -> trained model17```1819## Page Reference2021### Workspace Level2223| Page | URL Pattern | What's There |24|------|-------------|--------------|25| Workspace projects | `/{workspace}` | Project list, asset library tab, create new project |26| Home | `/{workspace}/home` | Dashboard, recent activity, quick actions |27| Asset Library | `/{workspace}?tab=asset-library` | Cross-project image library (tab on projects page) |28| Browse images | `/{workspace}/browse` | Browse all workspace images |29| Models | `/{workspace}/models` | All models in workspace |30| Workflows list | `/{workspace}/workflows` | All workflows in workspace, create/manage |31| Vision Events | `/{workspace}/vision-events` | Inference volume, class distribution, monitoring |32| Deployments | `/{workspace}/deployments` | Dedicated deployments, batch processing, edge devices (tabs) |33| Edge Devices | `/{workspace}/deployment-manager/devices` | Edge device management |3435#### Workspace Settings (`/{workspace}/settings/...`)3637| Page | URL Pattern | What's There |38|------|-------------|--------------|39| Plan & Billing | `/{workspace}/settings/plan` | Plan, credit usage, invoices, payment method |40| Usage | `/{workspace}/settings/usage` | API call history, credit consumption |41| Team members | `/{workspace}/settings/members` | Invite, remove, change roles (RBAC) |42| API keys | `/{workspace}/settings/api` | Workspace API keys |43| Annotation insights | `/{workspace}/settings/insights` | Annotator productivity, agreement metrics |44| Workflow blocks | `/{workspace}/settings/workflow-blocks` | Custom workflow block management |45| Project settings | `/{workspace}/settings/project-settings` | Workspace-wide project settings |46| Third-party keys | `/{workspace}/settings/thirdpartykeys` | External service API keys |47| Data sources | `/{workspace}/settings/datasources` | Bucket mirror / cloud import config |48| Audit logs | `/{workspace}/settings/audit-logs` | Workspace activity audit trail (Enterprise) |4950### Project Level5152| Page | URL Pattern | What's There |53|------|-------------|--------------|54| Project (auto-redirect) | `/{workspace}/{project}` | Redirects to most relevant sub-page based on state |55| Upload | `/{workspace}/{project}/upload` | Drag-and-drop images/videos, import from cloud (S3/GCS/Azure) |56| Annotate | `/{workspace}/{project}/annotate` | Annotation tool: bbox, polygon, mask, keypoints, AI labeling |57| Annotate batch | `/{workspace}/{project}/annotate/batch/{batchId}` | Annotate specific batch, create jobs, auto-label |58| Annotate job | `/{workspace}/{project}/annotate/job/{jobId}` | Work on specific annotation job |59| Images | `/{workspace}/{project}/images` | Grid view of all images, search, filter by tag/class/split |60| Browse | `/{workspace}/{project}/browse` | Dataset image browser |61| Explore | `/{workspace}/{project}/explore` | Visual dataset exploration |62| Dataset health | `/{workspace}/{project}/health` | Class balance, image sizes, annotation stats |63| Settings / Classes | `/{workspace}/{project}/settings` | Manage classes, project settings |64| Videos | `/{workspace}/{project}/videos` | Video management |65| Active Learning | `/{workspace}/{project}/active-learning` | Active learning configuration |66| Train | `/{workspace}/{project}/train` | Start training, model architecture selection |67| Deploy | `/{workspace}/{project}/deploy` | API snippet, SDK code, deployment options |68| Overview | `/{workspace}/{project}/overview` | Project overview (public projects) |6970### Version Level7172| Page | URL Pattern | What's There |73|------|-------------|--------------|74| Generate version | `/{workspace}/{project}/generate` | Train/test split, preprocessing, augmentation config |75| Version list / detail | `/{workspace}/{project}/versions` | All versions, version summary |76| Version detail | `/{workspace}/{project}/{version}` | Version summary, image counts per split |77| Training | `/{workspace}/{project}/{version}/train` | Start training on this version |78| Training results | `/{workspace}/{project}/{version}/train/results` | mAP, precision, recall, confusion matrix |79| Export | `/{workspace}/{project}/{version}/export` | Download in various formats (COCO, YOLO, VOC, etc.) |80| Version images | `/{workspace}/{project}/{version}/images` | Browse images in this version |8182### Workflows8384| Page | URL Pattern | What's There |85|------|-------------|--------------|86| Workflows list | `/{workspace}/workflows` | All workflows, create new |87| Workflow editor | `/{workspace}/workflows/{workflow-id}` | Visual block editor, JSON editor, preview, test |8889### Universe (separate domain)9091| Page | URL Pattern | What's There |92|------|-------------|--------------|93| Universe home | `universe.roboflow.com` | Search datasets/models, trending projects |94| Dataset page | `universe.roboflow.com/{user}/{project}` | Overview, images, classes, download, fork |95| Model page | `universe.roboflow.com/{user}/{project}/model` | Try model, API snippet, deploy |96| Dataset browse | `universe.roboflow.com/{user}/{project}/browse` | Explore images with annotations |9798### Other Pages99100| Page | URL Pattern | What's There |101|------|-------------|--------------|102| Account settings | `/settings/account` | Profile, email, password, API keys |103| Roboflow Rapid | `/{workspace}/rapid/{rapidDataId}` | Guided flow: upload, auto-label, train, deploy |104105## API Keys106107- Workspace API key: `/{workspace}/settings/api`108- Personal API key: `/settings/account` -> API Keys tab109- Both are needed for different SDK/API operations110111## Project Types112113When creating a project, choose one (cannot be changed later):114115| Type | Use Case |116|------|----------|117| Object Detection | Locate objects with bounding boxes |118| Instance Segmentation | Pixel-level object boundaries |119| Semantic Segmentation | Pixel-level class regions |120| Keypoint Detection | Object pose/skeleton |121| Single-Label Classification | One label per image |122| Multi-Label Classification | Multiple labels per image |123124## Related Pages125126- `roboflow://skills/roboflow-product-navigation/features-by-page` — intent-to-URL lookup table ("I want to do X → go here")