This repository contains the public TypeScript packages used to build Vertesia clients, UI plugins, workflow definitions, tools, and supporting developer utilities.
It is a pnpm and Turbo monorepo. Most packages are published under the @vertesia/* npm scope.
| Package | Purpose |
|---|---|
@vertesia/common |
Shared API types, permissions, OAuth scope helpers, store types, and platform contracts. |
@vertesia/client |
Browser and Node.js client for the Vertesia APIs. |
@vertesia/ui |
React components, hooks, shell, layout, i18n, and shared UI features. |
@vertesia/cli |
Command-line tools for working with Vertesia projects and resources. |
@vertesia/workflow |
Workflow DSL and helpers for Vertesia workflow definitions. |
@vertesia/tools-sdk |
SDK helpers for building remote tools and tool servers. |
@vertesia/create-plugin |
CLI for creating Vertesia UI plugins and tool-server plugins. |
@vertesia/plugin-builder |
Vite integration for building Vertesia UI plugins. |
@vertesia/api-fetch-client |
Fetch-based foundation for generated and hand-written REST API clients. |
@vertesia/json |
JSON parsing, schema, and utility helpers. |
@vertesia/converters |
Image and content conversion helpers. |
@vertesia/build-tools |
Shared Rollup, Vite, and build-time utilities. |
Additional packages and templates live under packages/, libraries/, and templates/.
vertesia/llumiverseis included here as thellumiverse/git submodule. It provides normalized LLM driver interfaces and provider implementations.
- Node.js 24.x
- pnpm 11.8.0 through Corepack
pnpm install# Build all workspace packages
pnpm build
# Run Biome checks
pnpm check
# Run package tests
pnpm test
# Run the local CI sequence
pnpm ci:localInstall the client in a Node.js or browser project:
pnpm add @vertesia/clientCreate a client with an API key:
import { VertesiaClient } from '@vertesia/client';
const client = new VertesiaClient({
site: 'api.vertesia.io',
apikey: process.env.VERTESIA_API_KEY,
});
const projects = await client.projects.list();
console.log(projects);For uploads, Node.js stream helpers are available from the /node subpath:
import { NodeStreamSource } from '@vertesia/client/node';See packages/client for more client examples.
Install the Vertesia CLI globally:
pnpm add -g @vertesia/cliOpen the command help:
vertesia helpThe CLI can switch projects, inspect interactions and environments, run interactions, and search run history. See packages/cli and the CLI documentation.
Create a new Vertesia plugin project:
pnpm dlx @vertesia/create-plugin my-pluginThen follow the prompts to choose the plugin type and configure the generated project. The generated project is based on templates/plugin-template.
Apache-2.0. See LICENSE.