AI-Native Workflow
Built for multi-agent collaboration. Product โ Tech Lead โ Dev โ QA โ DevOps. Agents work in harmony with mandatory human review points.
The AI-native framework that lets agents build production-ready apps for you. Stop writing boilerplate, start shipping features.

# One command = Fullstack app with auth, DB, testing
bun create velist my-app
cd my-app && bun dev// features/users/api.ts
export const usersApi = createProtectedApi('/users')
.get('/', async (ctx) => {
const users = await userService.getAll()
return ctx.inertia.render('users/Index', { users })
})
.post('/', async (ctx) => {
const user = await userService.create(ctx.body)
return ctx.inertia.redirect('/users')
})<!-- features/users/pages/Index.svelte -->
<script>
import AppLayout from '$shared/layouts/AppLayout.svelte'
let { user, users } = $props();
</script>
<AppLayout title="Users" {user} path="/users">
<div class="max-w-7xl mx-auto p-6">
<h1 class="text-2xl font-bold mb-4">Users</h1>
<div class="grid gap-4">
{#each users as u}
<div class="p-4 bg-white rounded-lg shadow">
{u.name}
</div>
{/each}
</div>
</div>
</AppLayout>Velist is the first framework built for AI agents. Not AI-assisted. AI-made.
| ๐ค Product | โ | ๐๏ธ Tech Lead | โ | ๐จโ๐ป Developer | โ | ๐งช QA | โ | ๐ DevOps |
|---|---|---|---|---|---|---|---|---|
| Writes PRD & Stories | Designs Architecture | Implements Features | Tests Everything | Deploys Production |
Every agent stops for your approval โ no black box, no surprises.
You type:
@workflow/agents/product.md
Build a task management app for teams.
Features: create tasks, assign members, set deadlines,
mark complete, filter by status/priority.AI does:
Result: Production-ready app. You wrote 0 lines of code. You just reviewed and approved.
Traditional fullstack development means configuring 10+ tools. With Velist, everything works out of the box:
| What You Need | Traditional Stack | Velist |
|---|---|---|
| Dev server | Configure Vite/Webpack | โ Built-in |
| Database | Setup Kysely + Drizzle | โ Built-in (SQLite) |
| Authentication | Integrate Auth.js | โ JWT + Session built-in |
| Google OAuth | Setup Google Console + Code | โ Built-in |
| 2FA / MFA | Build custom / Pay for service | โ Built-in TOTP |
| Real-time notifications | Setup WebSocket + Queue | โ WebSocket included |
| Toast notifications | Install library | โ Built-in |
| File Storage | Setup S3 SDK / SDK | โ Local + S3 abstraction built-in |
| API layer | Build REST API manually | โ Inertia.js (backend-rendered SPA) |
| Testing | Setup external test runner | โ bun:test + Playwright |
| Deployment | Configure Docker + CI/CD | โ Native VPS (PM2, 3-5s) + Docker (30-70s) |
Velist is the first framework designed specifically for AI agents:
Two-level testing approach as defined in QA Agent workflow:
| Type | Tool | Use For |
|---|---|---|
| Unit Tests | bun:test | Business logic, API routes, validation |
| E2E Tests | Playwright | Critical user flows, integration |
# Unit tests (fast, isolated)
bun run test
bun run test:watch
# E2E tests (critical flows only)
bun run test:e2eTest Priority:
Production-ready VPS deployment workflow:
โ
BUILD โ โ
DEPLOY โ โ
VERIFY โ โ
MONITORNative VPS deployment (default):
Docker optional - For teams that prefer containers (note: 30-70s build time vs 3-5s with PM2):
# Docker deployment (alternative)
docker-compose up -dDeployment Comparison:
| Method | Downtime | Pros | Cons |
|---|---|---|---|
| PM2 (Native) | 3-5s | Fastest deploy, easier debugging | Requires Bun on host |
| Docker | 30-70s | Isolated, portable, reproducible | Build time, more complex |
We don't hide our dependencies. Here's what Velist actually uses:
| Layer | Technology |
|---|---|
| Runtime | Bun (fast JS runtime) |
| Backend | Elysia (web framework) |
| Frontend | Svelte 5 (with runes) |
| Database | SQLite (bun:sqlite) |
| Query Builder | Kysely (type-safe SQL) |
| Migrations | Drizzle ORM (schema only) |
| SPA Bridge | Inertia.js 2 |
| Styling | Tailwind CSS v4 |
| Icons | Lucide Svelte |
| Testing | bun:test + Playwright |
| Image Processing | Sharp |
| File Storage | AWS SDK S3 (local + S3-compatible) |
Velist includes enterprise-grade features that usually require hours of setup:
| Feature | Implementation |
|---|---|
| Authentication | JWT-based with session management |
| Google OAuth | One-click sign-in, account linking |
| Two-Factor Authentication | TOTP with QR code setup, backup codes |
| Real-time Notifications | WebSocket-based with persistent storage |
| Toast Notifications | Simple API: toast.success('Done!') |
| File Storage | Local filesystem or S3-compatible (Wasabi, MinIO) |
| Database Backup | Auto-backup with WAL, single-file, optional S3 |
| Shared Utilities | CSV export, debounce, image processing, UUID v7 |
| Modern UI Components | Active navigation, clean inputs, dark mode |
Join developers who stopped configuring and started building.
Free. Open Source. Production Ready.