We're halfway through Launch Week. Three announcements so far, more coming. Here's the recap.

CLI 4.0

A better workflow for both coding agents and humans.

The biggest change: you configure your environment once, and tb build and tb deploy just work. No more --cloud, --branch, or --local flags. Set dev_mode in your tinybird.config.json, and the CLI does the right thing.

tb init          # scaffold your project and dev env
tb build         # builds against your configured environment
tb deploy        # deploys to production

CLI 4.0 also adds full git and data branching support, SDK bridges for TypeScript and Python projects, and zero AI dependencies so coding agents can drive it without extra setup.

Read the full post: CLI 4.0: A better workflow for agents and humans

Python SDK

All your Tinybird resources defined as Python code, directly in your app.

Define Data Sources, Pipes, Endpoints, connections, Materialized Views, and Copy Pipes in Python with full type support. Your editor gives you autocomplete, your type checker catches schema mismatches, and your coding agent understands it without needing to learn a custom DSL.

from tinybird import datasource, types as t, engine

page_views = datasource(
    "page_views",
    schema={
        "timestamp": t.DateTime(),
        "session_id": t.String(),
        "pathname": t.String(),
    },
    engine=engine.MergeTree(sorting_key=["pathname", "timestamp"]),
)
uv add tinybird-python-sdk

Read the full post: Tinybird, now Python-native too

A redesigned UI

A faster, information-dense UI designed for developers and operators.

As coding agents handle more of the creation and iteration, humans need better tools to understand, observe, and operate production data. The new UI gives you a single overview page with live metrics, a persistent header to switch environments without losing context, and split-screen panels to inspect any resource without navigating away.

The sidebar went from 300px to 194px, fully collapsible to 12px with Cmd+B. Fewer sections, more space for your actual work.

Read the full post: A redesigned Tinybird UI for developers and operators

Follow Launch Week

More announcements coming this week. Follow along on LinkedIn, X, or join the Community Slack.

Explore the Launch Week

Still on Tinybird Classic? Migrate to Forward.