Skyvern/skyvern-frontend
Aaron Perez 97da02c149
security: pin undici to ^7.28.0 in skyvern-frontend (fixes 2 HIGH alerts) (#6958)
Co-authored-by: claude[bot] <claude[bot]@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
2026-07-09 05:07:29 +00:00
..
public Frontend: unified /runs URL (#3912) 2025-11-05 09:48:55 -05:00
src fix(SKY-10708): thread loop value into cached-block agent fallback payload (#7221) 2026-07-08 20:02:20 -05:00
.env.example Improve local browser streaming devex (#6026) 2026-05-20 01:26:48 +00:00
.eslintrc Initialize frontend app (#112) 2024-03-20 11:09:47 -07:00
.npmrc chore(security): add .npmrc ignore-scripts to remaining npm workspaces (#5603) 2026-04-22 22:56:36 +00:00
.prettierignore Initialize frontend app (#112) 2024-03-20 11:09:47 -07:00
.prettierrc Add tailwind plugin for prettier (#592) 2024-07-11 21:29:47 +03:00
artifactServer.js Add request logging and error handling to artifact and frontend servers (#4829) 2026-02-22 04:15:35 +00:00
components.json Component library setup (#115) 2024-03-20 14:07:02 -07:00
index.html feat: Running tasks and steps UI (#165) 2024-04-07 21:52:59 +03:00
localServer.js Add request logging and error handling to artifact and frontend servers (#4829) 2026-02-22 04:15:35 +00:00
package-lock.json security: pin undici to ^7.28.0 in skyvern-frontend (fixes 2 HIGH alerts) (#6958) 2026-07-09 05:07:29 +00:00
package.json security: pin undici to ^7.28.0 in skyvern-frontend (fixes 2 HIGH alerts) (#6958) 2026-07-09 05:07:29 +00:00
postcss.config.js Component library setup (#115) 2024-03-20 14:07:02 -07:00
README.md Improve local setup and README (#291) 2024-05-09 20:21:13 +03:00
tailwind.config.js SKY-11575 Restore unified runs toolbar with gesture zoom and pulse feedback (#7136) 2026-07-06 16:28:36 -05:00
tsconfig.json fix(frontend): port vitest.setup.ts + wire setupFiles config (#6207) 2026-05-27 15:23:29 -04:00
tsconfig.node.json Initialize frontend app (#112) 2024-03-20 11:09:47 -07:00
vite.config.ts fix: prevent settings page crash for self-hosted Docker builds (#5163) 2026-03-19 22:39:36 +00:00
vitest.config.ts ci(SKY-11103): honor the native Vercel Deployment Check for the frontend gate (#6829) 2026-06-25 20:34:01 -05:00
vitest.setup.ts fix(SKY-11404): flush Radix focus-scope unmount timer in vitest teardown (#6795) 2026-06-24 16:20:23 -05:00

Skyvern Frontend

Quickstart

Populate env file

Copy example env file:

cp .env.example .env

Populate VITE_SKYVERN_API_KEY with your API key.

Then run:

npm install
npm start

This will build the app and serve from port 8080.

Development

npm run dev

This will start the development server with hot module replacement.

Build for production

npm run build

This will make a production build in the dist directory, ready to be served.

Preview the production build locally

npm run preview

or alternatively, use the serve package:

npx serve@latest dist