Skip to content
View Market
  • Product
  • Resources
  • Customers
  • Pricing
  • Now
  • Contact
  • Docs
Sign in

The product development
system for teams and agents

Purpose-built for planning and building products. Designed for the AI era.

Issue tracking is deadlinear.app/next โ†’
View Market โŒ„
๐Ÿ”โœŽ
๐Ÿ“ฆ Inbox
โฆฟ My issues
โ‡„ Reviews
๐Ÿ’ก Pulse
Workspace โŒ„
โ–ณ Initiatives
โ—ป Projects
โ€ฆ More
Favorites โŒ„
Faster app launch
Agent tasks
UI Refresh
Faster app launch โ˜… โ€ฆ
02 / 145 โŒƒ โŒ„ENG-2703
๐Ÿ”—โœโš‘

Faster app launch

Render UI before vehicle_state sync when minimum required state is present,
instead of blocking on full refresh during iOS startup.

Activity

View Market created this issue via Slack on behalf of karri ยท 2min ago
Triage Intelligence added the label Performance and iOS ยท 2min ago
K
karri ยท 4 min ago
Right now we show a spinner forever, which makes it look like the car disappeared...
โฆฟ
In Progress
โ™ฏ
High
J
jori
๐Ÿค–
GitHub Copilot
Labels
๐Ÿค–
GitHub Copilot
โœ•

I'll start by exploring the repository structure to understand the codebase and then implement the necessary changes to render UI before vehicle_state sync

Bash: Check current directory and list repository contents.
View /home/runner/kinetic/kinetic-ios
Vercel
CURSOR
oscar
OpenAI
coinbase
Cash App
BOOM
ramp

A new species of product tool. Purpose-built for modern teams with AI workflows at its core, View Market sets a new standard for planning and building products.

FIG 0.2

Built for purpose

View Market is shaped by the practices and principles of world-class product teams.

FIG 0.3

Powered by AI agents

Designed for workflows shared by humans and agents. From drafting PRDs to pushing PRs.

FIG 0.4

Designed for speed

Reduces noise and restores momentum to help teams ship with high velocity and focus.

Loading product tour
Loading changelog
Loading customer stories
View Market

Product

  • Intake
  • Plan
  • Build
  • Diffs
  • Monitor
  • Pricing
  • Security

Features

  • Asks
  • Agents
  • Customer Requests
  • Insights
  • Mobile
  • Integrations
  • Changelog

Company

  • About
  • Customers
  • Careers
  • Blog
  • Method
  • Quality
  • Brand

Legal

  • Privacy Policy
  • Terms of Service
  • Disclaimer
  • Risk Disclosure
  • Cookies
  • Refund

Support

ViewMarket

Make product
operations self-driving

Turn conversations and customer feedback
into actionable issues that are routed,
labeled, and prioritized for the right team.

1.0Intake โ†’
โ—ฏ Todo 71
+ โ€ฆ
ENG-928
Remove UI inconsistencies
Bug Design
ENG-2088
TypeError: Cannot read properties
Bug
ENG-974
Upgrade to Claude Opus 4.5
AI
ENG-1352
Optimize load times
Performance
โฆฟ In Progress 3
+ โ€ฆ
ENG-1487
Remove contentData from GraphQL API
๐Ÿท 61039
MKI-1028
Launch page assets
Design
ENG-2187
Prevent duplicate ride requests on poor...
Bug๐Ÿท 62048
โœ“ Done 12
ENG-2051
Clean up dead code in dashboard
ENG-1912
Reduce latency on primary endpoints
ENG-1887
Refactor User context wrapper
# Thread in #feedback
โ€ฆ
lena 5:32 PM
Anyone else noticing the iOS app feels slow to open if you haven't used it in a bit?
didier 5:32 PM
Yea, we're still blocking initial render on a full vehicle_state sync every time...
andreas 5:32 PM
Feels like we could render sooner and load the rest in the background. Probably also worth tracking startup timing so we know how often this happens!
@ViewMarket create urgent issues and assign to me
+Aaโ˜บ@๐Ÿ“น๐ŸŽ™โœŽ
โžคโŒ„

Define the
product direction

Plan and navigate from idea to launch. Align
your team with product initiatives, strategic
roadmaps, and clear, up-to-date PRDs.

2.0Plan โ†’
FEBMARAPRMAYJUNJULAUGSEP
29162329162330613202741118251815222961320273101724317
โœฆ UI Refresh โœ“
โ—‡Core screens
โ—‡Polish
โ‡„ Split fares ใ€œ
โ—‡Internal
โ—‡Public Beta
โœด Autonomy status clarity ใ€œ
โ—‡Alpha
Initiatives
โ†Ÿ Core Product
99
โ—ผ Infra stability
28
+ Autonomous systems
16
๐Ÿ“ฑ Mobile apps
8
โ†Ÿ APAC Expansion
21
โ—‰ Japan Launch
12
โ˜ฐ Customer-driven priorities
9

Review PRs and
agent output

Understand code changes at a glance with
structural diffs for human and agent output.
Review, discuss, and merge โ€” all within View Market.

4.0Diffs (Coming soon) โ†’
๐Ÿ“„ kinetic-ios/src/screens/Home/HomeScreen.tsx
01 import React from 'react'
02 import{ View, ActivityIndicator } from 'react-native'
03 import { useVehicleState } from '@hooks/useVehicleState'
04 import{ Dashboard } from '@components/Dashboard'
05
06 export const HomeScreen= () => {
07 const { vehicleState, isFullySynced } = useVehicleState()
08
09 if (!isFullySynced) {
10 return<ActivityIndicator size="large"/>
11 }
12
13 return (
14 <View>
15 <Dashboard state={vehicleState} />
16 </View>
17 )
18 }
01 import React from 'react'
02 import{ View, ActivityIndicator } from 'react-native'
03 import{ useVehicleState, SyncStatus } from '@hooks/useVehicleState'
04 import{ Dashboard } from '@components/Dashboard'
05
06 export const HomeScreen= () => {
07 const { vehicleState, syncStatus} = useVehicleState()
08
09 if (syncStatus === SyncStatus.PENDING) {
10 return<ActivityIndicator size="large"/>
11 }
12
13 return (
14 <View>
15 <Dashboard state={vehicleState} syncStatus={syncStatus} />
16 </View>
17 )
18 }

Understand
progress at scale

Take the guesswork out of product development
with project updates, analytics, and dashboards
that surface what needs your attention.

5.0Monitor โ†’
18
16
14
12
10
8
6
4
2
0
Nov 2025
Cycle time by agent
Cursor
Codex
No Agent

Weekly Pulse for Mar 25

Projects

UI refresh

At riskBy romain ยท 1 day ago
  • iOS implementation is mostly complete, but Android updates are still work in progress
  • Risk of timeline slip if remaining design decisions aren't finalized soon

Tokyo launch

On trackBy julian ยท 3 hours ago
  • Localization efforts have been completed
  • Everything else on track for launch in early September

Changelog

Introducing View Market Agent

Try View Market Agent

MAR 23, 2026

UI refresh

Introducing a calmer, more consistent interface.

MAR 11, 2026

Deeplink to AI coding tools

Starting an issue used to mean manually creating a feature branch....

FEB 26, 2026

Advanced filters and share issues in ...

Refine your searches, views, and dashboards with advanced filters....

FEB 12, 2026
See all releases โ†’

โ€œYou just have to use it and
you will see, you will just
feel it.โ€

Gabriel Peal
OpenAI

โ€œOur speed is intense
and View Market helps us be
action biased.โ€

Nik Koblov
Head of Engineering, Ramp
View Market powers over 25,000 product teams. From ambitious startups to major enterprises.
Customer stories โ†’